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.

23 lines
998 B

  1. <?xml version="1.0"?>
  2. <odoo>
  3. <record id="pos_config_view_form" model="ir.ui.view">
  4. <field name="name">pos.config.form</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="//div[@id='pricelist_setting']" position="after">
  9. <div class="col-xs-12 col-md-6 o_setting_box" title="abc">
  10. <div class="o_setting_right_pane">
  11. <label for="loyalty_id" string="Loyalty Program (OCA)"/>
  12. <div class="text-muted">
  13. Loyalty program that will be available in this PoS
  14. </div>
  15. <div class="content-group mt16">
  16. <field name="loyalty_id"/>
  17. </div>
  18. </div>
  19. </div>
  20. </xpath>
  21. </field>
  22. </record>
  23. </odoo>