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.

54 lines
2.4 KiB

  1. <?xml version="1.0"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="view_pos_config_form">
  4. <field name="model">pos.config</field>
  5. <field name="inherit_id" ref="point_of_sale.pos_config_view_form" />
  6. <field name="priority" eval="30"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//h2[@name='order']/following-sibling::*[position()=1]" position="inside">
  9. <div class="col-xs-12 col-lg-6 o_setting_box" id="iface_tare_method">
  10. <div class="o_setting_right_pane">
  11. <label for="iface_tare_method" string="Tare Input Method"/>
  12. <div class="text-muted">
  13. Configure how to tare products to weight with a scale.
  14. </div>
  15. <div class="content-group">
  16. <div class="mt16">
  17. <field name="iface_tare_method" class="o_light_label"/>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. <div class="col-xs-12 col-lg-6 o_setting_box" id="iface_tare_method">
  23. <div class="o_setting_right_pane">
  24. <label for="iface_tare_uom_id" string="Tare UoM"/>
  25. <div class="text-muted">
  26. Unit of Measure of the tares.
  27. </div>
  28. <div class="content-group">
  29. <div class="mt16">
  30. <field name="iface_tare_uom_id" class="o_light_label"/>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="col-xs-12 col-lg-6 o_setting_box" id="iface_gross_weight_method">
  36. <div class="o_setting_right_pane">
  37. <label for="iface_gross_weight_method" string="Gross Weight Input Method"/>
  38. <div class="text-muted">
  39. Configure how to input Gross Weight.
  40. </div>
  41. <div class="content-group">
  42. <div class="mt16">
  43. <field name="iface_gross_weight_method" class="o_light_label"/>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </xpath>
  49. </field>
  50. </record>
  51. </odoo>