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.
21 lines
910 B
21 lines
910 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Adding import button in bank journal of accounting -->
|
|
<record id="account_journal_dashboard_kanban_view" model="ir.ui.view">
|
|
<field name="name">account.journal.view.kanban.inherit.import.bank.statement.odoo</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="//div[@id='dashboard_bank_cash_left']"
|
|
position="inside">
|
|
<t t-if="journal_type == 'bank'">
|
|
<a name="action_import_wizard" type="object"
|
|
class="oe_inline"
|
|
groups="account.group_account_invoice">Import
|
|
</a>
|
|
</t>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|