[MIG] account_ebics_batch_payment: Migration to 14.0

This commit is contained in:
Luc De Meyer
2022-08-04 20:09:13 +02:00
parent 6d5c8306fe
commit 2f9f950558
4 changed files with 22 additions and 23 deletions

View File

@@ -1,16 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<?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="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 name="validate_batch_button" position="after">
<button
name="ebics_upload"
type="object"
attrs="{'invisible': ['|', ('file_generation_enabled', '=', False), ('state', '!=', 'sent')]}"
string="EBICS Upload"
/>
</button>
</field>
</record>