28 lines
959 B
XML
Executable File
28 lines
959 B
XML
Executable File
<odoo>
|
|
<record id="view_reason_wizard_form" model="ir.ui.view">
|
|
<field name="name">hold_cancel_reason_wizard.form</field>
|
|
<field name="model">hold_cancel_reason_wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Reason">
|
|
|
|
<group>
|
|
<field name="indent_status"/>
|
|
<field name="reason"/>
|
|
</group>
|
|
<footer>
|
|
<templates>
|
|
<table style="color: #000;background-color: #fff;">
|
|
<tr>
|
|
<td style="padding: 8px;" class="column"><b>Authorised Signatory</b></td>
|
|
<td> <button string="Approve" invisible="approval_image" class="btn-primary custom_btn" type="object" name="approved_by_sign_btn"></button>
|
|
</td>
|
|
<td><field name="approval_image" widget="image"/></td>
|
|
</tr>
|
|
</table>
|
|
</templates>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|