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.
28 lines
1.3 KiB
28 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- New field to select subscription periods for product -->
|
|
<record id="product_template_only_form_view" model="ir.ui.view">
|
|
<field name="name">product.template.view.form.inherit.website.subscription.management</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id"
|
|
ref="subscription_package.product_template_only_form_view"/>
|
|
<field name="priority">25</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='subscription_plan_id']"
|
|
position="after">
|
|
<field name="subscription_recurrence_period_ids"
|
|
widget="many2many_tags"
|
|
required="is_subscription"
|
|
invisible="not is_subscription"/>
|
|
</xpath>
|
|
<xpath expr="//page[@name='subscription']" position="inside">
|
|
<button string="Update Discount on Variants"
|
|
class="btn btn-link"
|
|
required="is_subscription"
|
|
invisible="not is_subscription"
|
|
type="object"
|
|
name="action_open_attribute_values_discount"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|