[WIP] account_exception: backup

H11044
This commit is contained in:
Jorge Che
2022-09-29 20:45:56 +00:00
parent 3fc96fc203
commit 9586c20f43
8 changed files with 178 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="action_invoice_test_tree" model="ir.actions.act_window">
<field name="name">Invoice Exception Rules</field>
<field name="res_model">exception.rule</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="base_exception.view_exception_rule_tree"/>
<field name="domain">[('model', '=', 'account.move')]</field>
<field name="context">{'active_test': False, 'default_model' : 'account.move'}</field>
</record>
<menuitem
action="action_invoice_test_tree"
id="menu_invoice_test"
sequence="10"
parent="account.menu_finance_configuration"
groups="base_exception.group_exception_rule_manager"
/>
<record id="view_move_form" model="ir.ui.view">
<field name="name">account.move.form.inherit.exception</field>
<field name="model">account.move</field>
<field name="inherit_id" ref="account.view_move_form"/>
<field name="arch" type="xml">
<sheet position="before">
<div class="alert alert-danger" role="alert" style="margin-bottom:0px;"
attrs="{'invisible': [('exceptions_summary','=',False)]}">
<p><strong>There are exceptions blocking the post of this Invoice:
</strong></p>
<field name="exceptions_summary"/>
<button name="action_ignore_exceptions" type="object" class="btn-danger"
string="Ignore Exceptions" help="Click here to be able to post this Invoice regardless of the exceptions."
groups="base_exception.group_exception_rule_manager"/>
</div>
</sheet>
<xpath expr="//field[@name='origin']/.." position="inside">
<field name="ignore_exception" states="done" />
</xpath>
</field>
</record>
<record id="view_move_tree" model="ir.ui.view">
<field name="name">saccount.move.tree.inherit.exception</field>
<field name="model">saccount.move</field>
<field name="inherit_id" ref="account.view_move_tree"/>
<field name="arch" type="xml">
<field name="state" position="after">
<field name="main_exception_id"/>
</field>
</field>
</record>
<record id="view_account_invoice_filter" model="ir.ui.view">
<field name="name">account.invoice.select.inherit.exception</field>
<field name="model">saccount.move</field>
<field name="inherit_id" ref="account.view_account_invoice_filter" />
<field name="arch" type="xml">
<filter name="late" position="after">
<separator orientation="vertical"/>
<filter icon="terp-emblem-important" name="tofix" string="Blocked by exceptions" domain="[('main_exception_id','!=',False)]"/>
</filter>
</field>
</record>
</odoo>