mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
21 lines
777 B
XML
21 lines
777 B
XML
<?xml version="1.0" ?>
|
|
<odoo>
|
|
<record id="product_template_form_view" model="ir.ui.view">
|
|
<field name="name">product.template.sub.form</field>
|
|
<field name="model">product.template</field>
|
|
<field name="priority" eval="8" />
|
|
<field name="inherit_id" ref="product.product_template_form_view" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='sales']" position="inside">
|
|
<group>
|
|
<field name="subscribable" />
|
|
<field
|
|
name="subscription_template_id"
|
|
attrs="{'invisible': [('subscribable', '=', False)]}"
|
|
/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|