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.

23 lines
1.1 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="contract_template_form_view" model="ir.ui.view">
  4. <field name="name">Contract Template Variable Qty</field>
  5. <field name="model">contract.template</field>
  6. <field name="inherit_id" ref="contract.contract_template_form_view"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//field[@name='contract_line_ids']//field[@name='quantity']" position="before">
  9. <field name="qty_type"/>
  10. </xpath>
  11. <xpath expr="//field[@name='contract_line_ids']//field[@name='quantity']" position="after">
  12. <field name="qty_formula_id"
  13. attrs="{'required': [('qty_type', '=', 'variable')], 'invisible': [('qty_type', '!=', 'variable')]}"
  14. />
  15. </xpath>
  16. <xpath expr="//field[@name='contract_line_ids']//field[@name='quantity']" position="attributes">
  17. <attribute name="attrs">{'required': [('qty_type', '=', 'fixed')], 'invisible': [('qty_type', '!=', 'fixed')]}</attribute>
  18. </xpath>
  19. </field>
  20. </record>
  21. </odoo>