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
874 B
23 lines
874 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Reject Reason Wizard View-->
|
|
<record id="reject_reason_wizard_view_form" model="ir.ui.view">
|
|
<field name="name">reject.reason.view.form</field>
|
|
<field name="model">reject.reason</field>
|
|
<field name="type">form</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<field name="reason"/>
|
|
<field name="loan" invisible="1"/>
|
|
</group>
|
|
<footer>
|
|
<button name="action_reject_reason_txt" string="Reject"
|
|
type="object" class="oe_highlight"/>
|
|
<button string="Cancel" class="btn btn-default"
|
|
special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|