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.

36 lines
1.5 KiB

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