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" encoding="utf-8"?>
  2. <!-- Copyright (C) 2019 by Lambda IS <https://www.lambda-is.com> -->
  3. <odoo>
  4. <record id="view_pos_config_form" model="ir.ui.view">
  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="//div[@id='barcode_scanner']" position="after">
  9. <div class="col-xs-12 col-md-6 o_setting_box">
  10. <div class="o_setting_left_pane">
  11. <field name="require_cashier_login"/>
  12. </div>
  13. <div class="o_setting_right_pane">
  14. <label for="require_cashier_login" string="Cashier Login"/>
  15. <div class="text-muted">
  16. Require that the cashier is set (or scanned) before each new order.
  17. </div>
  18. </div>
  19. </div>
  20. </xpath>
  21. </field>
  22. </record>
  23. </odoo>