37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Add laundry context fields to pos.order form (Extra Info tab). -->
|
|
<record id="view_pos_order_form_laundry_context" model="ir.ui.view">
|
|
<field name="name">pos.order.form.laundry.context</field>
|
|
<field name="model">pos.order</field>
|
|
<field name="inherit_id" ref="point_of_sale.view_pos_pos_form"/>
|
|
<field name="arch" type="xml">
|
|
|
|
<xpath expr="//page[@name='extra']" position="inside">
|
|
<group string="Laundry — Type & Attributes"
|
|
name="laundry_context">
|
|
<group>
|
|
<field name="laundry_order_type_id"
|
|
options="{'no_create': True, 'no_open': True}"/>
|
|
<field name="laundry_is_delivery"/>
|
|
</group>
|
|
<group>
|
|
<field name="laundry_delivery_address"
|
|
invisible="not laundry_is_delivery"/>
|
|
<field name="laundry_delivery_scheduled_at"
|
|
invisible="not laundry_is_delivery"/>
|
|
</group>
|
|
<group colspan="2">
|
|
<field name="laundry_order_attribute_ids"
|
|
widget="many2many_tags"
|
|
options="{'no_create': True, 'color_field': 'color'}"/>
|
|
</group>
|
|
</group>
|
|
</xpath>
|
|
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|