[12.0][ADD]account_ebics_batch_payment

This commit is contained in:
Luc De Meyer
2020-06-20 20:49:00 +02:00
parent b7c3dc316c
commit 0e0a32f2cd
7 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_batch_payment_form" model="ir.ui.view">
<field name="name">account.batch.payment.form</field>
<field name="model">account.batch.payment</field>
<field name="inherit_id" ref="account_batch_payment.view_batch_payment_form"/>
<field name="arch" type="xml">
<button name="validate_batch" position="after">
<button name="ebics_upload" type="object"
attrs="{'invisible': ['|', ('file_generation_enabled', '=', False), ('state', '!=', 'sent')]}"
string="EBICS Upload"/>
</button>
</field>
</record>
</data>
</odoo>