[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

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

View File

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