mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
18 lines
897 B
XML
Executable File
18 lines
897 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="view_account_move_inherit_form" model="ir.ui.view">
|
|
<field name="name">view.account.move.inherit.form</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//button[@name='action_post']" position="after">
|
|
<button name="action_post" string="Post" class="oe_highlight" type="object" groups="account.group_account_manager" attrs="{'invisible': [('state', '!=', 'approval')]}"/>
|
|
|
|
<button name="button_cancel" string="Cancel Entry" type="object" groups="account.group_account_invoice" attrs="{'invisible' : ['|', ('id', '=', False), ('state', '!=', 'approval')]}"/>
|
|
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|