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.

25 lines
1.0 KiB

  1. <?xml version="1.0"?>
  2. <odoo>
  3. <record id="view_pos_config_form" model="ir.ui.view">
  4. <field name="name">pos.config.form.view.inherit</field>
  5. <field name="model">pos.config</field>
  6. <field name="inherit_id" ref="point_of_sale.pos_config_view_form"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//field[@name='restrict_price_control']/../.." position="after">
  9. <div class="col-xs-12 col-lg-6 o_setting_box" >
  10. <div class="o_setting_left_pane">
  11. <field name="require_product_quantity"/>
  12. </div>
  13. <div class="o_setting_right_pane">
  14. <label for="require_product_quantity"/>
  15. <div class="text-muted">
  16. Show pop-up when product quantity is set to 0 for one or more order lines when clicking on "Payment" button.
  17. </div>
  18. </div>
  19. </div>
  20. </xpath>
  21. </field>
  22. </record>
  23. </odoo>