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.
23 lines
869 B
23 lines
869 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
|
|
<record id="subscription_close_wizard_view" model="ir.ui.view">
|
|
<field name="name">subscription.close.wizard.view</field>
|
|
<field name="model">subscription.close.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Subscription Close Wizard">
|
|
<group class="oe_title">
|
|
<field name="close_reason"/>
|
|
<field name="closed_by"/>
|
|
<field name="close_date"/>
|
|
</group>
|
|
<footer>
|
|
<button name="button_submit" string="Submit" type="object" class="btn-primary"/>
|
|
<button string="Cancel" class="btn-secondary"
|
|
special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|