You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
<odoo>
|
|
<!-- Inherits the pos order form view -->
|
|
<record id="pos_order_view_form_inherits_order_lines" model="ir.ui.view">
|
|
<field name="name">pos.order.view.form.inherit.order.lines</field>
|
|
<field name="inherit_id" ref="point_of_sale.view_pos_pos_form"/>
|
|
<field name="model">pos.order</field>
|
|
<field name="arch" type="xml">
|
|
|
|
<xpath expr="//field[@name='fiscal_position_id']"
|
|
position="before">
|
|
<field name="laundry_order" invisible="1"/>
|
|
</xpath>
|
|
|
|
<xpath expr="//field[@name='fiscal_position_id']"
|
|
position="after">
|
|
<field name="orderline_washing_type" invisible="1"/>
|
|
</xpath>
|
|
|
|
<xpath expr="//field[@name='lines']/tree/field[@name='price_subtotal_incl']"
|
|
position="after">
|
|
<field name="washing_type_id"
|
|
attrs="{'column_invisible':
|
|
[('parent.orderline_washing_type','=', False)]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|