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.
27 lines
1012 B
27 lines
1012 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="action_config_subscription_stop" model="ir.actions.act_window">
|
|
<field name="name">Subscription Stop Reason</field>
|
|
<field name="res_model">subscription.package.stop</field>
|
|
<field name="view_mode">tree</field>
|
|
</record>
|
|
|
|
<record id="subscription_close_reason_tree" model="ir.ui.view">
|
|
<field name="name">Subscription Stop Reason Tree</field>
|
|
<field name="model">subscription.package.stop</field>
|
|
<field name="arch" type="xml">
|
|
<tree editable="bottom">
|
|
<field name="sequence" widget="handle"/>
|
|
<field name="name" colspan="3"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem id="subscription_menu_close_reason"
|
|
name="Reason to Close"
|
|
parent="subscription_package.subscription_menu_config"
|
|
action="subscription_package.action_config_subscription_stop"
|
|
sequence="27"/>
|
|
|
|
</odoo>
|