mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-23 20:52:04 +00:00
[MIG] account_ebics_batch_payment: Migration to 15.0
This commit is contained in:
parent
2f9f950558
commit
f3a0e73aea
@ -3,9 +3,10 @@
|
||||
|
||||
{
|
||||
"name": "Upload Batch Payment via EBICS",
|
||||
"version": "14.0.1.1.0",
|
||||
"version": "15.0.1.0.0",
|
||||
"license": "LGPL-3",
|
||||
"author": "Noviat",
|
||||
"website": "https://www.noviat.com",
|
||||
"category": "Accounting & Finance",
|
||||
"depends": ["account_ebics", "account_batch_payment"],
|
||||
"data": ["views/account_batch_payment_views.xml"],
|
||||
|
@ -34,7 +34,7 @@ class AccountBatchPayment(models.Model):
|
||||
}
|
||||
)
|
||||
|
||||
ebics_xfer = self.env["ebics.xfer"].with_context(ctx).create({})
|
||||
ebics_xfer = self.env["ebics.xfer"].with_context(**ctx).create({})
|
||||
ebics_xfer._onchange_ebics_config_id()
|
||||
ebics_xfer._onchange_upload_data()
|
||||
ebics_xfer._onchange_format_id()
|
||||
|
@ -1,6 +1,5 @@
|
||||
<?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>
|
||||
@ -9,14 +8,13 @@
|
||||
<field name="arch" type="xml">
|
||||
<button name="validate_batch_button" position="after">
|
||||
<button
|
||||
name="ebics_upload"
|
||||
type="object"
|
||||
attrs="{'invisible': ['|', ('file_generation_enabled', '=', False), ('state', '!=', 'sent')]}"
|
||||
string="EBICS Upload"
|
||||
/>
|
||||
name="ebics_upload"
|
||||
type="object"
|
||||
attrs="{'invisible': ['|', ('file_generation_enabled', '=', False), ('state', '!=', 'sent')]}"
|
||||
string="EBICS Upload"
|
||||
/>
|
||||
</button>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
|
Loading…
Reference in New Issue
Block a user