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.
15 lines
691 B
15 lines
691 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- To add new field in restaurant table -->
|
|
<record id="view_restaurant_table_form" model="ir.ui.view">
|
|
<field name="name">restaurant.table.view.form.inherit.table.reservation.on.website</field>
|
|
<field name="model">restaurant.table</field>
|
|
<field name="inherit_id" ref="pos_restaurant.view_restaurant_table_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='seats']" position="after">
|
|
<field name="is_show_field" invisible="1"/>
|
|
<field name="rate" invisible="is_show_field==False"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|