119
<record id="purchase_order_line_form_transport_inherit" model="ir.ui.view">
120
<field name="name">purchase.order.line.form.transport.inherit</field>
121
<field name="model">purchase.order.line</field>
122
<field name="type">form</field>
123
<field name="inherit_id" ref="purchase.purchase_order_line_form" />
124
<field name="arch" type="xml">
126
<!-- The field product_domain is True or False, so the result of the domain is [True, True] (only transport
127
products) or [True, False] (all products) -->
128
<xpath expr="/form/notebook//field[@name='product_id']" position="attributes">
129
<attribute name="domain">[parent.categ in ('transport', 'service') and ('type', '=', 'service_recep') or ('type', '!=', False), ('transport_ok', 'in', [True, parent.categ=='transport' and 't' or 'f'])]</attribute>