From dabc8373a65c9878513b74e3e58e671df3502713 Mon Sep 17 00:00:00 2001
From: Enric Tobella
Date: Fri, 29 Aug 2025 19:19:42 +0200
Subject: [PATCH 1/5] [ADD] edi_account_core_oca: Module that includes the
integration between edi and account without components
---
edi_account_core_oca/README.rst | 1 +
edi_account_core_oca/__init__.py | 2 +
edi_account_core_oca/__manifest__.py | 23 ++++
edi_account_core_oca/hooks.py | 10 ++
edi_account_core_oca/i18n/edi_account.pot | 30 +++++
edi_account_core_oca/i18n/edi_account_oca.pot | 107 +++++++++++++++++
edi_account_core_oca/i18n/fr.po | 113 ++++++++++++++++++
edi_account_core_oca/i18n/it.po | 110 +++++++++++++++++
edi_account_core_oca/models/__init__.py | 1 +
edi_account_core_oca/models/account_move.py | 9 ++
edi_account_core_oca/pyproject.toml | 3 +
edi_account_core_oca/readme/CONTRIBUTORS.md | 3 +
edi_account_core_oca/readme/DESCRIPTION.md | 2 +
.../static/description/icon.png | Bin 0 -> 5055 bytes
.../views/account_journal.xml | 15 +++
edi_account_core_oca/views/account_move.xml | 33 +++++
.../views/edi_exchange_record.xml | 29 +++++
edi_account_core_oca/views/res_partner.xml | 15 +++
18 files changed, 506 insertions(+)
create mode 100644 edi_account_core_oca/README.rst
create mode 100644 edi_account_core_oca/__init__.py
create mode 100644 edi_account_core_oca/__manifest__.py
create mode 100644 edi_account_core_oca/hooks.py
create mode 100644 edi_account_core_oca/i18n/edi_account.pot
create mode 100644 edi_account_core_oca/i18n/edi_account_oca.pot
create mode 100644 edi_account_core_oca/i18n/fr.po
create mode 100644 edi_account_core_oca/i18n/it.po
create mode 100644 edi_account_core_oca/models/__init__.py
create mode 100644 edi_account_core_oca/models/account_move.py
create mode 100644 edi_account_core_oca/pyproject.toml
create mode 100644 edi_account_core_oca/readme/CONTRIBUTORS.md
create mode 100644 edi_account_core_oca/readme/DESCRIPTION.md
create mode 100644 edi_account_core_oca/static/description/icon.png
create mode 100644 edi_account_core_oca/views/account_journal.xml
create mode 100644 edi_account_core_oca/views/account_move.xml
create mode 100644 edi_account_core_oca/views/edi_exchange_record.xml
create mode 100644 edi_account_core_oca/views/res_partner.xml
diff --git a/edi_account_core_oca/README.rst b/edi_account_core_oca/README.rst
new file mode 100644
index 000000000..85954498e
--- /dev/null
+++ b/edi_account_core_oca/README.rst
@@ -0,0 +1 @@
+TO BE GENERATED
\ No newline at end of file
diff --git a/edi_account_core_oca/__init__.py b/edi_account_core_oca/__init__.py
new file mode 100644
index 000000000..6d58305f5
--- /dev/null
+++ b/edi_account_core_oca/__init__.py
@@ -0,0 +1,2 @@
+from . import models
+from .hooks import pre_init_hook
diff --git a/edi_account_core_oca/__manifest__.py b/edi_account_core_oca/__manifest__.py
new file mode 100644
index 000000000..236321a65
--- /dev/null
+++ b/edi_account_core_oca/__manifest__.py
@@ -0,0 +1,23 @@
+# Copyright 2020 Dixmit
+# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
+
+{
+ "name": "Edi Account",
+ "summary": """
+ Define EDI Configuration for Account Moves""",
+ "version": "18.0.1.1.0",
+ "license": "LGPL-3",
+ "author": "Dixmit,Odoo Community Association (OCA)",
+ "maintainers": ["etobella"],
+ "development_status": "Beta",
+ "website": "https://github.com/OCA/edi-framework",
+ "depends": ["account", "edi_core_oca"],
+ "pre_init_hook": "pre_init_hook",
+ "data": [
+ "views/account_journal.xml",
+ "views/res_partner.xml",
+ "views/account_move.xml",
+ "views/edi_exchange_record.xml",
+ ],
+ "demo": [],
+}
diff --git a/edi_account_core_oca/hooks.py b/edi_account_core_oca/hooks.py
new file mode 100644
index 000000000..2eaa8aff8
--- /dev/null
+++ b/edi_account_core_oca/hooks.py
@@ -0,0 +1,10 @@
+def pre_init_hook(env):
+ # Update the module name in the database
+ # This should happen only if we migrate from edi_oca to edi_core_oca
+ env.cr.execute(
+ """
+ UPDATE ir_model_data
+ SET module = 'edi_account_core_oca'
+ WHERE module = 'edi_account_oca'
+ """
+ )
diff --git a/edi_account_core_oca/i18n/edi_account.pot b/edi_account_core_oca/i18n/edi_account.pot
new file mode 100644
index 000000000..938887ab6
--- /dev/null
+++ b/edi_account_core_oca/i18n/edi_account.pot
@@ -0,0 +1,30 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * edi_account
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 13.0\n"
+"Report-Msgid-Bugs-To: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: edi_account
+#: model_terms:ir.ui.view,arch_db:edi_account.account_move_form_view
+msgid "EDI "
+msgstr ""
+
+#. module: edi_account
+#: model_terms:ir.ui.view,arch_db:edi_account.view_account_journal_form
+#: model_terms:ir.ui.view,arch_db:edi_account.view_partner_form
+msgid "EDI Configuration"
+msgstr ""
+
+#. module: edi_account
+#: model:ir.model,name:edi_account.model_account_move
+msgid "Journal Entries"
+msgstr ""
diff --git a/edi_account_core_oca/i18n/edi_account_oca.pot b/edi_account_core_oca/i18n/edi_account_oca.pot
new file mode 100644
index 000000000..249173289
--- /dev/null
+++ b/edi_account_core_oca/i18n/edi_account_oca.pot
@@ -0,0 +1,107 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * edi_account_oca
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 18.0\n"
+"Report-Msgid-Bugs-To: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+msgid "EDI "
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.actions.act_window,name:edi_account_oca.act_open_edi_exchange_record_account_move_view
+msgid "Account Moves Exchange Record"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_disable_auto
+msgid "Disable auto"
+msgstr ""
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_account_journal_form
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_partner_form
+msgid "EDI Configuration"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_edi_endpoint_id
+msgid "EDI origin endpoint"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_type_id
+msgid "EDI origin exchange type"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_record_id
+msgid "EDI origin record"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_exchange_record_id
+msgid "EDI record that originated this document."
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_config
+msgid "Edi Config"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_has_form_config
+msgid "Edi Has Form Config"
+msgstr ""
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+msgid "Electronic Data Interchange"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_ids
+msgid "Exchange Record"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_count
+msgid "Exchange Record Count"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_root
+msgid "Exchange records"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model,name:edi_account_oca.model_account_move
+msgid "Journal Entry"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_exchange_record
+msgid "Moves"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_edi_endpoint_id
+msgid "Record generated via this endpoint"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__edi_disable_auto
+msgid "When marked, EDI automatic processing will be avoided"
+msgstr ""
diff --git a/edi_account_core_oca/i18n/fr.po b/edi_account_core_oca/i18n/fr.po
new file mode 100644
index 000000000..1a37c0649
--- /dev/null
+++ b/edi_account_core_oca/i18n/fr.po
@@ -0,0 +1,113 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * edi_account_oca
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 14.0\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: 2021-06-17 15:48+0000\n"
+"Last-Translator: Yves Le Doeuff \n"
+"Language-Team: none\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.3.2\n"
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+msgid "EDI "
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.actions.act_window,name:edi_account_oca.act_open_edi_exchange_record_account_move_view
+msgid "Account Moves Exchange Record"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_disable_auto
+msgid "Disable auto"
+msgstr ""
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_account_journal_form
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_partner_form
+msgid "EDI Configuration"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_edi_endpoint_id
+msgid "EDI origin endpoint"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_type_id
+msgid "EDI origin exchange type"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_record_id
+msgid "EDI origin record"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_exchange_record_id
+msgid "EDI record that originated this document."
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_config
+msgid "Edi Config"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_has_form_config
+msgid "Edi Has Form Config"
+msgstr ""
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+msgid "Electronic Data Interchange"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_ids
+msgid "Exchange Record"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_count
+msgid "Exchange Record Count"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_root
+msgid "Exchange records"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model,name:edi_account_oca.model_account_move
+msgid "Journal Entry"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_exchange_record
+msgid "Moves"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_edi_endpoint_id
+msgid "Record generated via this endpoint"
+msgstr ""
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__edi_disable_auto
+msgid "When marked, EDI automatic processing will be avoided"
+msgstr ""
+
+#~ msgid "Display Name"
+#~ msgstr "Nom affiché"
diff --git a/edi_account_core_oca/i18n/it.po b/edi_account_core_oca/i18n/it.po
new file mode 100644
index 000000000..97af3c1c2
--- /dev/null
+++ b/edi_account_core_oca/i18n/it.po
@@ -0,0 +1,110 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * edi_account_oca
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 16.0\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: 2025-03-18 11:50+0000\n"
+"Last-Translator: mymage \n"
+"Language-Team: none\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.10.2\n"
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+msgid "EDI "
+msgstr "EDI "
+
+#. module: edi_account_oca
+#: model:ir.actions.act_window,name:edi_account_oca.act_open_edi_exchange_record_account_move_view
+msgid "Account Moves Exchange Record"
+msgstr "Recod scambio movimenti conto"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_disable_auto
+msgid "Disable auto"
+msgstr "Disabilita automatico"
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_account_journal_form
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_partner_form
+msgid "EDI Configuration"
+msgstr "Configurazione EDI"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_edi_endpoint_id
+msgid "EDI origin endpoint"
+msgstr "Endpoint origine EDI"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_type_id
+msgid "EDI origin exchange type"
+msgstr "Tipo scambio origine EDI"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_record_id
+msgid "EDI origin record"
+msgstr "Record origine EDI"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_exchange_record_id
+msgid "EDI record that originated this document."
+msgstr "Record EDI che ha generato questo documento."
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_config
+msgid "Edi Config"
+msgstr "Configurazione EDI"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_has_form_config
+msgid "Edi Has Form Config"
+msgstr "EDI ha una maschera di configurazione"
+
+#. module: edi_account_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+msgid "Electronic Data Interchange"
+msgstr "Scambio Dati Elettronico"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_ids
+msgid "Exchange Record"
+msgstr "Record di scambio"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_count
+msgid "Exchange Record Count"
+msgstr "Conteggio record di scambio"
+
+#. module: edi_account_oca
+#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_root
+msgid "Exchange records"
+msgstr "Record di scambio"
+
+#. module: edi_account_oca
+#: model:ir.model,name:edi_account_oca.model_account_move
+msgid "Journal Entry"
+msgstr "Registrazione contabile"
+
+#. module: edi_account_oca
+#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_exchange_record
+msgid "Moves"
+msgstr "Movimenti"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_edi_endpoint_id
+msgid "Record generated via this endpoint"
+msgstr "Record generato attraverso questo endpoint"
+
+#. module: edi_account_oca
+#: model:ir.model.fields,help:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
+#: model:ir.model.fields,help:edi_account_oca.field_account_move__edi_disable_auto
+msgid "When marked, EDI automatic processing will be avoided"
+msgstr "Quando selezionata, l'elaborazione EDI automatica verrà evitata"
diff --git a/edi_account_core_oca/models/__init__.py b/edi_account_core_oca/models/__init__.py
new file mode 100644
index 000000000..9c0a42138
--- /dev/null
+++ b/edi_account_core_oca/models/__init__.py
@@ -0,0 +1 @@
+from . import account_move
diff --git a/edi_account_core_oca/models/account_move.py b/edi_account_core_oca/models/account_move.py
new file mode 100644
index 000000000..3d8fd3d55
--- /dev/null
+++ b/edi_account_core_oca/models/account_move.py
@@ -0,0 +1,9 @@
+# Copyright 2020 Dixmit
+# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
+
+from odoo import models
+
+
+class AccountMove(models.Model):
+ _name = "account.move"
+ _inherit = ["account.move", "edi.exchange.consumer.mixin"]
diff --git a/edi_account_core_oca/pyproject.toml b/edi_account_core_oca/pyproject.toml
new file mode 100644
index 000000000..4231d0ccc
--- /dev/null
+++ b/edi_account_core_oca/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["whool"]
+build-backend = "whool.buildapi"
diff --git a/edi_account_core_oca/readme/CONTRIBUTORS.md b/edi_account_core_oca/readme/CONTRIBUTORS.md
new file mode 100644
index 000000000..0f141e1e4
--- /dev/null
+++ b/edi_account_core_oca/readme/CONTRIBUTORS.md
@@ -0,0 +1,3 @@
+- Enric Tobella \<\>
+- \[APSL-Nagarro\]():
+ - Antoni Marroig \<\>
\ No newline at end of file
diff --git a/edi_account_core_oca/readme/DESCRIPTION.md b/edi_account_core_oca/readme/DESCRIPTION.md
new file mode 100644
index 000000000..c589ec6f0
--- /dev/null
+++ b/edi_account_core_oca/readme/DESCRIPTION.md
@@ -0,0 +1,2 @@
+This module intends to create a base to be extended by local edi rules
+for accounting.
diff --git a/edi_account_core_oca/static/description/icon.png b/edi_account_core_oca/static/description/icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..a79752645ce327baadb6aba260751a044a5e4a8a
GIT binary patch
literal 5055
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
literal 0
HcmV?d00001
diff --git a/edi_account_core_oca/views/account_journal.xml b/edi_account_core_oca/views/account_journal.xml
new file mode 100644
index 000000000..3deadee33
--- /dev/null
+++ b/edi_account_core_oca/views/account_journal.xml
@@ -0,0 +1,15 @@
+
+
+
+
+ account.journal.form (in edi_account)
+ account.journal
+
+
+
+
+
+
+
+
diff --git a/edi_account_core_oca/views/account_move.xml b/edi_account_core_oca/views/account_move.xml
new file mode 100644
index 000000000..baa6b221b
--- /dev/null
+++ b/edi_account_core_oca/views/account_move.xml
@@ -0,0 +1,33 @@
+
+
+
+
+ account.move.form (in edi_account)
+ account.move
+
+
+
+
+
+
+
+
+
+
+
+
+
+ EDI
+
+
+
+
+
+
diff --git a/edi_account_core_oca/views/edi_exchange_record.xml b/edi_account_core_oca/views/edi_exchange_record.xml
new file mode 100644
index 000000000..19e3e50c2
--- /dev/null
+++ b/edi_account_core_oca/views/edi_exchange_record.xml
@@ -0,0 +1,29 @@
+
+
+
+
+ Account Moves Exchange Record
+ ir.actions.act_window
+ edi.exchange.record
+ list,form
+ [('model', '=', 'account.move')]
+ {}
+
+
+
+
diff --git a/edi_account_core_oca/views/res_partner.xml b/edi_account_core_oca/views/res_partner.xml
new file mode 100644
index 000000000..ade9a00af
--- /dev/null
+++ b/edi_account_core_oca/views/res_partner.xml
@@ -0,0 +1,15 @@
+
+
+
+
+ res.partner.form (in edi_account)
+ res.partner
+
+
+
+
+
+
+
+
From 8864414952238589a88d3e8b5119081e60f4a6b4 Mon Sep 17 00:00:00 2001
From: oca-ci
Date: Mon, 29 Sep 2025 15:26:55 +0000
Subject: [PATCH 2/5] [UPD] Update edi_account_core_oca.pot
---
.../i18n/edi_account_core_oca.pot | 114 ++++++++++++++++++
edi_account_core_oca/i18n/fr.po | 85 +++++++------
edi_account_core_oca/i18n/it.po | 86 +++++++------
3 files changed, 207 insertions(+), 78 deletions(-)
create mode 100644 edi_account_core_oca/i18n/edi_account_core_oca.pot
diff --git a/edi_account_core_oca/i18n/edi_account_core_oca.pot b/edi_account_core_oca/i18n/edi_account_core_oca.pot
new file mode 100644
index 000000000..d79180ee9
--- /dev/null
+++ b/edi_account_core_oca/i18n/edi_account_core_oca.pot
@@ -0,0 +1,114 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * edi_account_core_oca
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 18.0\n"
+"Report-Msgid-Bugs-To: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.account_move_form_view
+msgid "EDI "
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.view_partner_form
+msgid "Account"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.actions.act_window,name:edi_account_core_oca.act_open_edi_exchange_record_account_move_view
+msgid "Account Moves Exchange Record"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_disable_auto
+msgid "Disable auto"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.view_account_journal_form
+msgid "EDI Configuration"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_edi_endpoint_id
+msgid "EDI origin endpoint"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_exchange_type_id
+msgid "EDI origin exchange type"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_exchange_record_id
+msgid "EDI origin record"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__origin_exchange_record_id
+msgid "EDI record that originated this document."
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_config
+msgid "Edi Config"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_has_form_config
+msgid "Edi Has Form Config"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.account_move_form_view
+msgid "Electronic Data Interchange"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_record_ids
+msgid "Exchange Record"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_record_count
+msgid "Exchange Record Count"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_related_record_ids
+msgid "Exchange Related Record"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.ui.menu,name:edi_account_core_oca.menu_account_edi_root
+msgid "Exchange records"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model,name:edi_account_core_oca.model_account_move
+msgid "Journal Entry"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.ui.menu,name:edi_account_core_oca.menu_account_edi_exchange_record
+msgid "Moves"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__origin_edi_endpoint_id
+msgid "Record generated via this endpoint"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__edi_disable_auto
+msgid "When marked, EDI automatic processing will be avoided"
+msgstr ""
diff --git a/edi_account_core_oca/i18n/fr.po b/edi_account_core_oca/i18n/fr.po
index 1a37c0649..3dbde2b23 100644
--- a/edi_account_core_oca/i18n/fr.po
+++ b/edi_account_core_oca/i18n/fr.po
@@ -16,96 +16,103 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3.2\n"
-#. module: edi_account_oca
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.account_move_form_view
msgid "EDI "
msgstr ""
-#. module: edi_account_oca
-#: model:ir.actions.act_window,name:edi_account_oca.act_open_edi_exchange_record_account_move_view
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.view_partner_form
+msgid "Account"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.actions.act_window,name:edi_account_core_oca.act_open_edi_exchange_record_account_move_view
msgid "Account Moves Exchange Record"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_disable_auto
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_disable_auto
msgid "Disable auto"
msgstr ""
-#. module: edi_account_oca
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_account_journal_form
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_partner_form
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.view_account_journal_form
msgid "EDI Configuration"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_edi_endpoint_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_edi_endpoint_id
msgid "EDI origin endpoint"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_type_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_exchange_type_id
msgid "EDI origin exchange type"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_record_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_exchange_record_id
msgid "EDI origin record"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_exchange_record_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__origin_exchange_record_id
msgid "EDI record that originated this document."
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_config
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_config
msgid "Edi Config"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_has_form_config
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_has_form_config
msgid "Edi Has Form Config"
msgstr ""
-#. module: edi_account_oca
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.account_move_form_view
msgid "Electronic Data Interchange"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_ids
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_record_ids
msgid "Exchange Record"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_count
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_record_count
msgid "Exchange Record Count"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_root
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_related_record_ids
+msgid "Exchange Related Record"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.ui.menu,name:edi_account_core_oca.menu_account_edi_root
msgid "Exchange records"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model,name:edi_account_oca.model_account_move
+#. module: edi_account_core_oca
+#: model:ir.model,name:edi_account_core_oca.model_account_move
msgid "Journal Entry"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_exchange_record
+#. module: edi_account_core_oca
+#: model:ir.ui.menu,name:edi_account_core_oca.menu_account_edi_exchange_record
msgid "Moves"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_edi_endpoint_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__origin_edi_endpoint_id
msgid "Record generated via this endpoint"
msgstr ""
-#. module: edi_account_oca
-#: model:ir.model.fields,help:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
-#: model:ir.model.fields,help:edi_account_oca.field_account_move__edi_disable_auto
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__edi_disable_auto
msgid "When marked, EDI automatic processing will be avoided"
msgstr ""
diff --git a/edi_account_core_oca/i18n/it.po b/edi_account_core_oca/i18n/it.po
index 97af3c1c2..bad21b6a5 100644
--- a/edi_account_core_oca/i18n/it.po
+++ b/edi_account_core_oca/i18n/it.po
@@ -16,95 +16,103 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10.2\n"
-#. module: edi_account_oca
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.account_move_form_view
msgid "EDI "
msgstr "EDI "
-#. module: edi_account_oca
-#: model:ir.actions.act_window,name:edi_account_oca.act_open_edi_exchange_record_account_move_view
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.view_partner_form
+msgid "Account"
+msgstr ""
+
+#. module: edi_account_core_oca
+#: model:ir.actions.act_window,name:edi_account_core_oca.act_open_edi_exchange_record_account_move_view
msgid "Account Moves Exchange Record"
msgstr "Recod scambio movimenti conto"
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_disable_auto
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_disable_auto
msgid "Disable auto"
msgstr "Disabilita automatico"
-#. module: edi_account_oca
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_account_journal_form
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.view_partner_form
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.view_account_journal_form
msgid "EDI Configuration"
msgstr "Configurazione EDI"
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_edi_endpoint_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_edi_endpoint_id
msgid "EDI origin endpoint"
msgstr "Endpoint origine EDI"
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_type_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_exchange_type_id
msgid "EDI origin exchange type"
msgstr "Tipo scambio origine EDI"
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__origin_exchange_record_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__origin_exchange_record_id
msgid "EDI origin record"
msgstr "Record origine EDI"
-#. module: edi_account_oca
-#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_exchange_record_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__origin_exchange_record_id
msgid "EDI record that originated this document."
msgstr "Record EDI che ha generato questo documento."
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_config
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_config
msgid "Edi Config"
msgstr "Configurazione EDI"
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__edi_has_form_config
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__edi_has_form_config
msgid "Edi Has Form Config"
msgstr "EDI ha una maschera di configurazione"
-#. module: edi_account_oca
-#: model_terms:ir.ui.view,arch_db:edi_account_oca.account_move_form_view
+#. module: edi_account_core_oca
+#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.account_move_form_view
msgid "Electronic Data Interchange"
msgstr "Scambio Dati Elettronico"
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_ids
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_record_ids
msgid "Exchange Record"
msgstr "Record di scambio"
-#. module: edi_account_oca
-#: model:ir.model.fields,field_description:edi_account_oca.field_account_move__exchange_record_count
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_record_count
msgid "Exchange Record Count"
msgstr "Conteggio record di scambio"
-#. module: edi_account_oca
-#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_root
+#. module: edi_account_core_oca
+#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_related_record_ids
+#, fuzzy
+msgid "Exchange Related Record"
+msgstr "Record di scambio"
+
+#. module: edi_account_core_oca
+#: model:ir.ui.menu,name:edi_account_core_oca.menu_account_edi_root
msgid "Exchange records"
msgstr "Record di scambio"
-#. module: edi_account_oca
-#: model:ir.model,name:edi_account_oca.model_account_move
+#. module: edi_account_core_oca
+#: model:ir.model,name:edi_account_core_oca.model_account_move
msgid "Journal Entry"
msgstr "Registrazione contabile"
-#. module: edi_account_oca
-#: model:ir.ui.menu,name:edi_account_oca.menu_account_edi_exchange_record
+#. module: edi_account_core_oca
+#: model:ir.ui.menu,name:edi_account_core_oca.menu_account_edi_exchange_record
msgid "Moves"
msgstr "Movimenti"
-#. module: edi_account_oca
-#: model:ir.model.fields,help:edi_account_oca.field_account_move__origin_edi_endpoint_id
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__origin_edi_endpoint_id
msgid "Record generated via this endpoint"
msgstr "Record generato attraverso questo endpoint"
-#. module: edi_account_oca
-#: model:ir.model.fields,help:edi_account_oca.field_account_bank_statement_line__edi_disable_auto
-#: model:ir.model.fields,help:edi_account_oca.field_account_move__edi_disable_auto
+#. module: edi_account_core_oca
+#: model:ir.model.fields,help:edi_account_core_oca.field_account_move__edi_disable_auto
msgid "When marked, EDI automatic processing will be avoided"
msgstr "Quando selezionata, l'elaborazione EDI automatica verrà evitata"
From 1e3de6269788de03861faebd9ac78576221b104d Mon Sep 17 00:00:00 2001
From: OCA-git-bot
Date: Mon, 29 Sep 2025 15:30:38 +0000
Subject: [PATCH 3/5] [BOT] post-merge updates
---
edi_account_core_oca/README.rst | 93 +++-
edi_account_core_oca/__manifest__.py | 2 +-
.../static/description/index.html | 436 ++++++++++++++++++
3 files changed, 529 insertions(+), 2 deletions(-)
create mode 100644 edi_account_core_oca/static/description/index.html
diff --git a/edi_account_core_oca/README.rst b/edi_account_core_oca/README.rst
index 85954498e..dc2af5be0 100644
--- a/edi_account_core_oca/README.rst
+++ b/edi_account_core_oca/README.rst
@@ -1 +1,92 @@
-TO BE GENERATED
\ No newline at end of file
+.. image:: https://odoo-community.org/readme-banner-image
+ :target: https://odoo-community.org/get-involved?utm_source=readme
+ :alt: Odoo Community Association
+
+===========
+Edi Account
+===========
+
+..
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ !! This file is generated by oca-gen-addon-readme !!
+ !! changes will be overwritten. !!
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ !! source digest: sha256:46ff1535b1af99f9193fd334da935f5928748273bc12a5f22ddcafa299964882
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
+ :target: https://odoo-community.org/page/development-status
+ :alt: Beta
+.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
+ :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
+ :alt: License: LGPL-3
+.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fedi--framework-lightgray.png?logo=github
+ :target: https://github.com/OCA/edi-framework/tree/18.0/edi_account_core_oca
+ :alt: OCA/edi-framework
+.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
+ :target: https://translation.odoo-community.org/projects/edi-framework-18-0/edi-framework-18-0-edi_account_core_oca
+ :alt: Translate me on Weblate
+.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/edi-framework&target_branch=18.0
+ :alt: Try me on Runboat
+
+|badge1| |badge2| |badge3| |badge4| |badge5|
+
+This module intends to create a base to be extended by local edi rules
+for accounting.
+
+**Table of contents**
+
+.. contents::
+ :local:
+
+Bug Tracker
+===========
+
+Bugs are tracked on `GitHub Issues `_.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us to smash it by providing a detailed and welcomed
+`feedback `_.
+
+Do not contact contributors directly about support or help with technical issues.
+
+Credits
+=======
+
+Authors
+-------
+
+* Dixmit
+
+Contributors
+------------
+
+- Enric Tobella
+- [APSL-Nagarro](https://apsl.tech):
+
+ - Antoni Marroig
+
+Maintainers
+-----------
+
+This module is maintained by the OCA.
+
+.. image:: https://odoo-community.org/logo.png
+ :alt: Odoo Community Association
+ :target: https://odoo-community.org
+
+OCA, or the Odoo Community Association, is a nonprofit organization whose
+mission is to support the collaborative development of Odoo features and
+promote its widespread use.
+
+.. |maintainer-etobella| image:: https://github.com/etobella.png?size=40px
+ :target: https://github.com/etobella
+ :alt: etobella
+
+Current `maintainer `__:
+
+|maintainer-etobella|
+
+This module is part of the `OCA/edi-framework `_ project on GitHub.
+
+You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/edi_account_core_oca/__manifest__.py b/edi_account_core_oca/__manifest__.py
index 236321a65..c1ef921fe 100644
--- a/edi_account_core_oca/__manifest__.py
+++ b/edi_account_core_oca/__manifest__.py
@@ -5,7 +5,7 @@
"name": "Edi Account",
"summary": """
Define EDI Configuration for Account Moves""",
- "version": "18.0.1.1.0",
+ "version": "18.0.1.1.1",
"license": "LGPL-3",
"author": "Dixmit,Odoo Community Association (OCA)",
"maintainers": ["etobella"],
diff --git a/edi_account_core_oca/static/description/index.html b/edi_account_core_oca/static/description/index.html
new file mode 100644
index 000000000..efad2c2b9
--- /dev/null
+++ b/edi_account_core_oca/static/description/index.html
@@ -0,0 +1,436 @@
+
+
+
+
+
+README.rst
+
+
+
+
+
+
+
+
+
+
+
Edi Account
+
+
+
This module intends to create a base to be extended by local edi rules
+for accounting.
+
Table of contents
+
+
+
+
Bugs are tracked on GitHub Issues .
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us to smash it by providing a detailed and welcomed
+feedback .
+
Do not contact contributors directly about support or help with technical issues.
+
+
+
+
+
+
+
+
This module is maintained by the OCA.
+
+
+
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
+mission is to support the collaborative development of Odoo features and
+promote its widespread use.
+
Current maintainer :
+
+
This module is part of the OCA/edi-framework project on GitHub.
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute .
+
+
+
+
+
+
From 63d13a74098f33efe58fe039c49053b625e757ab Mon Sep 17 00:00:00 2001
From: mymage
Date: Thu, 2 Oct 2025 19:19:45 +0000
Subject: [PATCH 4/5] Translated using Weblate (Italian)
Currently translated at 100.0% (20 of 20 strings)
Translation: edi-framework-18.0/edi-framework-18.0-edi_account_core_oca
Translate-URL: https://translation.odoo-community.org/projects/edi-framework-18-0/edi-framework-18-0-edi_account_core_oca/it/
---
edi_account_core_oca/i18n/it.po | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/edi_account_core_oca/i18n/it.po b/edi_account_core_oca/i18n/it.po
index bad21b6a5..e60d303f5 100644
--- a/edi_account_core_oca/i18n/it.po
+++ b/edi_account_core_oca/i18n/it.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2025-03-18 11:50+0000\n"
+"PO-Revision-Date: 2025-10-02 21:43+0000\n"
"Last-Translator: mymage \n"
"Language-Team: none\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.10.2\n"
+"X-Generator: Weblate 5.10.4\n"
#. module: edi_account_core_oca
#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.account_move_form_view
@@ -24,7 +24,7 @@ msgstr "EDI "
#. module: edi_account_core_oca
#: model_terms:ir.ui.view,arch_db:edi_account_core_oca.view_partner_form
msgid "Account"
-msgstr ""
+msgstr "Conto"
#. module: edi_account_core_oca
#: model:ir.actions.act_window,name:edi_account_core_oca.act_open_edi_exchange_record_account_move_view
@@ -88,9 +88,8 @@ msgstr "Conteggio record di scambio"
#. module: edi_account_core_oca
#: model:ir.model.fields,field_description:edi_account_core_oca.field_account_move__exchange_related_record_ids
-#, fuzzy
msgid "Exchange Related Record"
-msgstr "Record di scambio"
+msgstr "Record relativo allo scambio"
#. module: edi_account_core_oca
#: model:ir.ui.menu,name:edi_account_core_oca.menu_account_edi_root
From 71a7c924c301790001d556f409121dcbc27114af Mon Sep 17 00:00:00 2001
From: JasminSForgeFlow
Date: Mon, 23 Feb 2026 08:08:21 +0000
Subject: [PATCH 5/5] [MIG] edi_account_core_oca: Migration to 19.0
---
edi_account_core_oca/README.rst | 10 +++++-----
edi_account_core_oca/__manifest__.py | 2 +-
edi_account_core_oca/static/description/index.html | 6 +++---
edi_account_core_oca/views/account_journal.xml | 2 +-
4 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/edi_account_core_oca/README.rst b/edi_account_core_oca/README.rst
index dc2af5be0..35a815afa 100644
--- a/edi_account_core_oca/README.rst
+++ b/edi_account_core_oca/README.rst
@@ -21,13 +21,13 @@ Edi Account
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fedi--framework-lightgray.png?logo=github
- :target: https://github.com/OCA/edi-framework/tree/18.0/edi_account_core_oca
+ :target: https://github.com/OCA/edi-framework/tree/19.0/edi_account_core_oca
:alt: OCA/edi-framework
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
- :target: https://translation.odoo-community.org/projects/edi-framework-18-0/edi-framework-18-0-edi_account_core_oca
+ :target: https://translation.odoo-community.org/projects/edi-framework-19-0/edi-framework-19-0-edi_account_core_oca
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
- :target: https://runboat.odoo-community.org/builds?repo=OCA/edi-framework&target_branch=18.0
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/edi-framework&target_branch=19.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -46,7 +46,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues `_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -87,6 +87,6 @@ Current `maintainer `__:
|maintainer-etobella|
-This module is part of the `OCA/edi-framework `_ project on GitHub.
+This module is part of the `OCA/edi-framework `_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/edi_account_core_oca/__manifest__.py b/edi_account_core_oca/__manifest__.py
index c1ef921fe..10df21aa6 100644
--- a/edi_account_core_oca/__manifest__.py
+++ b/edi_account_core_oca/__manifest__.py
@@ -5,7 +5,7 @@
"name": "Edi Account",
"summary": """
Define EDI Configuration for Account Moves""",
- "version": "18.0.1.1.1",
+ "version": "19.0.1.0.0",
"license": "LGPL-3",
"author": "Dixmit,Odoo Community Association (OCA)",
"maintainers": ["etobella"],
diff --git a/edi_account_core_oca/static/description/index.html b/edi_account_core_oca/static/description/index.html
index efad2c2b9..99779e976 100644
--- a/edi_account_core_oca/static/description/index.html
+++ b/edi_account_core_oca/static/description/index.html
@@ -374,7 +374,7 @@ Edi Account
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:46ff1535b1af99f9193fd334da935f5928748273bc12a5f22ddcafa299964882
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-
+
This module intends to create a base to be extended by local edi rules
for accounting.
Table of contents
@@ -394,7 +394,7 @@
Bugs are tracked on GitHub Issues .
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
-feedback .
+feedback .
Do not contact contributors directly about support or help with technical issues.
diff --git a/edi_account_core_oca/views/account_journal.xml b/edi_account_core_oca/views/account_journal.xml
index 3deadee33..b77102630 100644
--- a/edi_account_core_oca/views/account_journal.xml
+++ b/edi_account_core_oca/views/account_journal.xml
@@ -7,7 +7,7 @@
account.journal
-
+