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.
|
|
<?xml version="1.0" encoding="utf-8"?> <odoo>
<record id="restaurant_table_form" model="ir.ui.view"> <field name="name">Booking restaurant.table form</field> <field name="model">restaurant.table</field> <field name="inherit_id" ref="pos_restaurant.view_restaurant_table_form"/> <field name="arch" type="xml"> <field name="seats" position="after"> <field name="bookable" widget="boolean_toggle"/> </field> </field> </record>
<!-- <record id="restaurant_table_tree" model="ir.ui.view">
<field name="name">Booking restaurant.table tree</field> <field name="model">restaurant.table</field> <field name="arch" type="xml"> </field> </record> -->
<!-- <record id="restaurant_table_search" model="ir.ui.view">
<field name="name">Booking restaurant.table search</field> <field name="model">restaurant.table</field> <field name="arch" type="xml"> </field> </record> -->
</odoo>
|