mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
15 lines
536 B
XML
15 lines
536 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="//field[@name='company_id']" position="after">
|
|
<field name="channel_available" />
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|