Files
tra_backend/MKS_Tradex_Backend_2/views/account_move_views.xml
2020-09-04 18:25:47 +00:00

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>