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.
26 lines
1.1 KiB
26 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Extended product_product_form_view-->
|
|
<record id="product_normal_form_view" model="ir.ui.view">
|
|
<field name="name">
|
|
product.product.view.form.inherit.subscription.package
|
|
</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view"/>
|
|
<field name="priority">25</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='sales']" position="after">
|
|
<page name="subscription" string="Subscription">
|
|
<group>
|
|
<group name="subscription" string="Subscription">
|
|
<field name="is_subscription"/>
|
|
<field name="subscription_plan_id"
|
|
required="is_subscription == True"
|
|
invisible="is_subscription != True"/>
|
|
</group>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|