add github workflow

This commit is contained in:
Jérémy Didderen
2025-03-13 22:04:30 +01:00
committed by Luc De Meyer
parent 3d59cdb642
commit bf471b0f28
4 changed files with 96 additions and 89 deletions

View File

@@ -6,7 +6,7 @@
"version": "18.0.1.0.0",
"license": "AGPL-3",
"author": "Noviat",
"website": "https://www.noviat.com",
"website": "https://www.noviat.com/",
"category": "Accounting & Finance",
"summary": "EBICS Files automated import and processing",
"depends": ["account_ebics"],

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo noupdate="1">
<record id="ir_cron_ebics_batch_import" model="ir.cron">
<field name="name">EBICS Batch Import</field>
<field name="model_id" ref="model_ebics_batch_log" />
@@ -11,5 +10,4 @@
<field name="interval_type">days</field>
<field name="active" eval="False" />
</record>
</odoo>

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" ?>
<odoo>
<record id="ebics_batch_log_view_search" model="ir.ui.view">
<field name="name">ebics.batch.log.search</field>
<field name="model">ebics.batch.log</field>
@@ -12,7 +11,11 @@
</group>
<newline />
<group expand="0" string="Group By">
<filter name="group_by_state" string="State" context="{'group_by':'state'}" />
<filter
name="group_by_state"
string="State"
context="{'group_by':'state'}"
/>
</group>
</search>
</field>
@@ -72,7 +75,11 @@
icon="fa-pencil-square-o"
invisible="file_count == 0"
>
<field name="file_count" widget="statinfo" string="EBICS Files" />
<field
name="file_count"
widget="statinfo"
string="EBICS Files"
/>
</button>
</div>
<group colspan="4" col="4">
@@ -94,7 +101,12 @@
</group>
<group invisible="not note">
<separator colspan="4" />
<field name="note" nolabel="1" colspan="4" height="360" />
<field
name="note"
nolabel="1"
colspan="4"
height="360"
/>
</group>
</form>
</field>
@@ -113,5 +125,4 @@
<field name="view_id" ref="ebics_batch_log_view_list" />
<field name="search_view_id" ref="ebics_batch_log_view_search" />
</record>
</odoo>

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" ?>
<odoo>
<menuitem
id="ebics_batch_log_menu"
name="EBICS Batch Import Logs"
@@ -8,5 +7,4 @@
action="ebics_batch_log_action"
sequence="100"
/>
</odoo>