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.

18 lines
631 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <odoo>
  3. <record id="view_partner_form" model="ir.ui.view">
  4. <field name="model">res.partner</field>
  5. <field name="inherit_id" ref="base.view_partner_form"/>
  6. <field name="arch" type="xml">
  7. <group name="sale" position="inside">
  8. <field
  9. name="default_sale_discount"
  10. attrs="{'invisible': ['|', ('customer', '=', False), ('parent_id', '!=', False)]}"
  11. groups="sale.group_discount_per_so_line"
  12. />
  13. </group>
  14. </field>
  15. </record>
  16. </odoo>