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.

30 lines
1.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="product_category_form_view" model="ir.ui.view">
  4. <field name="model">product.category</field>
  5. <field name="inherit_id" ref="product.product_category_form_view"/>
  6. <!-- Priority to avoid to break account and logistics fields-->
  7. <field name="priority">20</field>
  8. <field name="arch" type="xml">
  9. <field name="type" position="after">
  10. <field name="available_in_pos"/>
  11. </field>
  12. <xpath expr="//div[contains(@class,'oe_title')]" position="before">
  13. <field name="image_medium"
  14. widget="image"
  15. class="oe_avatar"
  16. options='{"size": [100, 100]}'/>
  17. </xpath>
  18. </field>
  19. </record>
  20. <record id="product_category_list_view" model="ir.ui.view">
  21. <field name="model">product.category</field>
  22. <field name="inherit_id" ref="product.product_category_list_view"/>
  23. <field name="arch" type="xml">
  24. <xpath expr="//field[@name='display_name']" position="after">
  25. <field name="available_in_pos" string="Available in POS"/>
  26. </xpath>
  27. </field>
  28. </record>
  29. </odoo>