add github workflow

This commit is contained in:
Jérémy Didderen
2025-03-13 22:04:30 +01:00
committed by Didderen Jérémy
parent 84ba72dab0
commit e56c3ea1e7
33 changed files with 742 additions and 553 deletions

View File

@@ -6,7 +6,7 @@
"version": "18.0.1.0.0",
"license": "LGPL-3",
"author": "Noviat",
"website": "https://www.noviat.com",
"website": "https://www.noviat.com/",
"category": "Accounting & Finance",
"depends": ["account_ebics", "account_batch_payment"],
"data": ["views/account_batch_payment_views.xml"],

View File

@@ -1,20 +1,18 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<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_button" position="after">
<button
<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_button" position="after">
<button
name="ebics_upload"
type="object"
invisible="not file_generation_enabled or state != 'sent'"
string="EBICS Upload"
/>
</button>
</field>
</button>
</field>
</record>
</odoo>