Odoo modules related to point of sales
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.

29 lines
956 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="restaurant_table_form" model="ir.ui.view">
  4. <field name="name">Booking restaurant.table form</field>
  5. <field name="model">restaurant.table</field>
  6. <field name="inherit_id" ref="pos_restaurant.view_restaurant_table_form"/>
  7. <field name="arch" type="xml">
  8. <field name="seats" position="after">
  9. <field name="bookable" widget="boolean_toggle"/>
  10. </field>
  11. </field>
  12. </record>
  13. <!-- <record id="restaurant_table_tree" model="ir.ui.view">
  14. <field name="name">Booking restaurant.table tree</field>
  15. <field name="model">restaurant.table</field>
  16. <field name="arch" type="xml">
  17. </field>
  18. </record> -->
  19. <!-- <record id="restaurant_table_search" model="ir.ui.view">
  20. <field name="name">Booking restaurant.table search</field>
  21. <field name="model">restaurant.table</field>
  22. <field name="arch" type="xml">
  23. </field>
  24. </record> -->
  25. </odoo>