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.

20 lines
1.1 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="product_template_form_view" model="ir.ui.view">
  4. <field name="name">product.template.pack.form</field>
  5. <field name="model">product.template</field>
  6. <field name="inherit_id" ref="product.product_template_form_view"/>
  7. <field name="arch" type="xml">
  8. <header position="inside">
  9. <button string="Récupérer les infos Packs" type="object"
  10. name="get_info_parent_pack"
  11. attrs="{'invisible': [('pack_ok', '!=', True)]}"/>
  12. </header>
  13. <field name="list_price" position="after">
  14. <field name="list_price_ref_pack" string="Prix produit référent au kg" widget='monetary' options="{'currency_field': 'currency_id', 'field_digits': True}" attrs="{'invisible': [('pack_ok', '!=', True)]}"/>
  15. <field name="price_ref_pack_compute" string="Prix de vente TTC" widget='monetary' options="{'currency_field': 'currency_id', 'field_digits': True}" attrs="{'invisible': [('pack_ok', '!=', True)]}"/>
  16. </field>
  17. </field>
  18. </record>
  19. </odoo>