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.
 
 
 
 
 

22 lines
904 B

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<!-- Subscription close wizard form -->
<record id="subscription_close_form_view" model="ir.ui.view">
<field name="name">subscription.close.view.form</field>
<field name="model">subscription.close</field>
<field name="arch" type="xml">
<form string="Subscription Close Wizard">
<group class="oe_title">
<field name="close_reason_id"/>
<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>