Files
pms/hotel/views/inherited_product_template_views.xml
2018-11-07 14:21:25 +01:00

27 lines
977 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="product_template_view_form" model="ir.ui.view">
<field name="name">view.product.template.form.inherited</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view" />
<field name="arch" type="xml">
<xpath expr="//page[@name='sales']" position="before">
<page string="Hotel Service">
<group colspan="4">
<group>
<field name="is_hotel_service" />
<field name="daily_limit" />
</group>
<group>
<field name="per_day" />
<field name="per_person" />
</group>
</group>
</page>
</xpath>
</field>
</record>
</odoo>