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.
22 lines
975 B
22 lines
975 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--Inheriting Account Journal Kanban View-->
|
|
<record id="account_journal_dashboard_kanban_view" model="ir.ui.view">
|
|
<field name="name">account.journal.view.kanban.inherit.base.accounting.kit</field>
|
|
<field name="model">account.journal</field>
|
|
<field name="inherit_id" ref="account.account_journal_dashboard_kanban_view" />
|
|
<field name="arch" type="xml">
|
|
<xpath
|
|
expr="//kanban/templates//div[@id='dashboard_bank_cash_left']"
|
|
position="inside">
|
|
<t t-if="dashboard.number_to_reconcile > 0">
|
|
<button class="btn btn-primary"
|
|
type="object"
|
|
name="action_open_reconcile">
|
|
<t t-esc="dashboard.number_to_reconcile"/> to Reconcile
|
|
</button>
|
|
</t>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|