mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
16 lines
532 B
XML
16 lines
532 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="view_product_product_form_inherited" model="ir.ui.view">
|
|
<field name="name">view.product.product.form.inherited</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='active']" position="after">
|
|
<field name="is_room_type" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|