[IMP] account_ebics_payment_order: pre-commit auto fixes

This commit is contained in:
Luc De Meyer
2025-10-24 17:21:21 +02:00
parent 6c77f8a742
commit e00e6a73f6
3 changed files with 12 additions and 12 deletions

View File

@@ -20,6 +20,7 @@ addon | version | maintainers | summary
[account_ebics_batch_payment](account_ebics_batch_payment/) | 18.0.1.0.0 | | Upload Batch Payment via EBICS [account_ebics_batch_payment](account_ebics_batch_payment/) | 18.0.1.0.0 | | Upload Batch Payment via EBICS
[account_ebics_oca_statement_import](account_ebics_oca_statement_import/) | 18.0.1.0.0 | | Use OCA Bank Statement Import with account_ebics [account_ebics_oca_statement_import](account_ebics_oca_statement_import/) | 18.0.1.0.0 | | Use OCA Bank Statement Import with account_ebics
[account_ebics_oe](account_ebics_oe/) | 18.0.1.0.0 | | Deploy account_ebics module on Odoo Enterprise [account_ebics_oe](account_ebics_oe/) | 18.0.1.0.0 | | Deploy account_ebics module on Odoo Enterprise
[account_ebics_payment_order](account_ebics_payment_order/) | 17.0.1.1.0 | | Upload Payment Order via EBICS
[//]: # (end addons) [//]: # (end addons)

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<odoo> <odoo>
<record id="account_payment_mode_form" model="ir.ui.view"> <record id="account_payment_mode_form" model="ir.ui.view">
<field name="name">account.payment.mode.form</field> <field name="name">account.payment.mode.form</field>
<field name="model">account.payment.mode</field> <field name="model">account.payment.mode</field>
@@ -11,5 +10,4 @@
</field> </field>
</field> </field>
</record> </record>
</odoo> </odoo>

View File

@@ -1,21 +1,22 @@
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<odoo> <odoo>
<record id="account_payment_order_form" model="ir.ui.view"> <record id="account_payment_order_form" model="ir.ui.view">
<field name="name">account.payment.order.form</field> <field name="name">account.payment.order.form</field>
<field name="model">account.payment.order</field> <field name="model">account.payment.order</field>
<field name="inherit_id" ref="account_payment_order.account_payment_order_form" /> <field
<field name="arch" type="xml"> name="inherit_id"
<button name="open2generated" position="after"> ref="account_payment_order.account_payment_order_form"
<button />
<field name="arch" type="xml">
<button name="open2generated" position="after">
<button
name="ebics_upload" name="ebics_upload"
type="object" type="object"
invisible="state != 'generated'" invisible="state != 'generated'"
string="EBICS Upload" string="EBICS Upload"
class="oe_highlight" class="oe_highlight"
/> />
</button> </button>
</field> </field>
</record> </record>
</odoo> </odoo>