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.

28 lines
954 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2017 Grap, OCA
  3. License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
  4. <odoo>
  5. <record id="view_uom_category_form" model="ir.ui.view">
  6. <field name="model">uom.category</field>
  7. <field name="inherit_id" ref="uom.product_uom_categ_form_view"/>
  8. <field name="arch" type="xml">
  9. <field name="name" position="after">
  10. <field name="to_weigh" />
  11. <button name="action_recompute_to_weigh" string="Set 'to weigh' in each product of this category" type="object"/>
  12. </field>
  13. </field>
  14. </record>
  15. <record id="view_uom_category_tree" model="ir.ui.view">
  16. <field name="model">uom.category</field>
  17. <field name="arch" type="xml">
  18. <tree>
  19. <field name="name"/>
  20. <field name="to_weigh" />
  21. </tree>
  22. </field>
  23. </record>
  24. </odoo>