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.

38 lines
1.6 KiB

  1. <odoo>
  2. <data>
  3. <record model="ir.ui.view" id="beescoop_pos_inherit">
  4. <field name="name">bees.pos.config.form.view</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. <field name="iface_tax_included" position="after">
  9. <separator string="Bill Value" colspan="2" />
  10. <field name="bill_value" nolabel="1" colspan="2">
  11. <tree editable="bottom">
  12. <field name="name" />
  13. </tree>
  14. </field>
  15. </field>
  16. </field>
  17. </record>
  18. <record id="view_account_bnk_stmt_cashbox" model="ir.ui.view">
  19. <field name="name">account.bnk_stmt_cashbox.form</field>
  20. <field name="model">account.bank.statement.cashbox</field>
  21. <field name="inherit_id" ref="account.view_account_bnk_stmt_cashbox" />
  22. <field name="arch" type="xml">
  23. <field name="coin_value" position="attributes">
  24. <attribute name="readonly">1</attribute>
  25. </field>
  26. </field>
  27. </record>
  28. <template id="assets" inherit_id="point_of_sale.assets">
  29. <xpath expr="." position="inside">
  30. <script type="text/javascript"
  31. src="/beesdoo_pos/static/src/js/beesdoo.js"></script>
  32. <link rel='stylesheet' href="/beesdoo_pos/static/src/css/beesdoo.css" />
  33. </xpath>
  34. </template>
  35. </data>
  36. </odoo>