diff --git a/README.md b/README.md index 9e7033cf7..cc3bb8706 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Available addons addon | version | maintainers | summary --- | --- | --- | --- [edi_component_oca](edi_component_oca/) | 19.0.1.1.0 | simahawk etobella | Allow to use Connector as a source in EDI -[edi_core_oca](edi_core_oca/) | 19.0.1.2.2 | simahawk etobella | Define backends, exchange types, exchange records, basic automation and views for handling EDI exchanges. +[edi_core_oca](edi_core_oca/) | 19.0.1.2.3 | simahawk etobella | Define backends, exchange types, exchange records, basic automation and views for handling EDI exchanges. [edi_endpoint_oca](edi_endpoint_oca/) | 19.0.1.1.1 | | Base module allowing configuration of custom endpoints for EDI framework. [edi_exchange_deduplicate_oca](edi_exchange_deduplicate_oca/) | 19.0.1.1.0 | simahawk etobella | Introduce a deduplication mechanism at the sending step [edi_notification_oca](edi_notification_oca/) | 19.0.1.0.0 | | Define notification activities on exchange records. diff --git a/edi_core_oca/README.rst b/edi_core_oca/README.rst index 6cd6e3259..39eba9137 100644 --- a/edi_core_oca/README.rst +++ b/edi_core_oca/README.rst @@ -11,7 +11,7 @@ EDI !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:4ec88c7d3c0a39f0bff2c564a723a84929b67b4af392298cbf7e5daf8e98bf3d + !! source digest: sha256:081c8a98336c6ce07c20c17946e18e6f889e7c2150e59b11669ec58319668819 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/edi_core_oca/__manifest__.py b/edi_core_oca/__manifest__.py index 811dfbe0b..413544521 100644 --- a/edi_core_oca/__manifest__.py +++ b/edi_core_oca/__manifest__.py @@ -9,7 +9,7 @@ Define backends, exchange types, exchange records, basic automation and views for handling EDI exchanges. """, - "version": "19.0.1.2.2", + "version": "19.0.1.2.3", "website": "https://github.com/OCA/edi-framework", "development_status": "Beta", "license": "LGPL-3", diff --git a/edi_core_oca/static/description/index.html b/edi_core_oca/static/description/index.html index c3e6af63d..d803a4fb1 100644 --- a/edi_core_oca/static/description/index.html +++ b/edi_core_oca/static/description/index.html @@ -372,7 +372,7 @@

EDI

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:4ec88c7d3c0a39f0bff2c564a723a84929b67b4af392298cbf7e5daf8e98bf3d +!! source digest: sha256:081c8a98336c6ce07c20c17946e18e6f889e7c2150e59b11669ec58319668819 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: LGPL-3 OCA/edi-framework Translate me on Weblate Try me on Runboat

Base EDI backend.

diff --git a/edi_core_oca/tests/test_backend_base.py b/edi_core_oca/tests/test_backend_base.py index 8e42f8203..2126f57e2 100644 --- a/edi_core_oca/tests/test_backend_base.py +++ b/edi_core_oca/tests/test_backend_base.py @@ -51,7 +51,7 @@ def test_create_record(self): expected = { "type_id": self.exchange_type_in.id, "edi_exchange_state": "new", - "exchange_filename": "EDI_EXC_TEST-test_csv_input-2020-10-21-100000.csv", + "exchange_filename": "EDI_EXC_TEST-test_csv_input-2020-10-21-10-00-00.csv", } self.assertRecordValues(record, [expected]) self.assertEqual(record.record, self.partner) diff --git a/edi_core_oca/tests/test_exchange_type.py b/edi_core_oca/tests/test_exchange_type.py index 2c1a11c28..4e083884a 100644 --- a/edi_core_oca/tests/test_exchange_type.py +++ b/edi_core_oca/tests/test_exchange_type.py @@ -111,11 +111,11 @@ def test_filename_pattern_settings(self): # Test with datetime in filename pattern self.exchange_type_out.exchange_file_ext = "csv" self.exchange_type_out.exchange_filename_pattern = "Test-File-{dt}" - self._test_exchange_filename("Test-File-2022-04-28-083724.csv") + self._test_exchange_filename("Test-File-2022-04-28-08-37-24.csv") # Add timezone on current user self.env.user.tz = "America/New_York" # New_York time is -4h - self._test_exchange_filename("Test-File-2022-04-28-043724.csv") + self._test_exchange_filename("Test-File-2022-04-28-04-37-24.csv") # Force date pattern on advanced settings self.exchange_type_out.advanced_settings_edit = """ @@ -130,7 +130,7 @@ def test_filename_pattern_settings(self): # Rome time is +2h force_tz: Europe/Rome """ - self._test_exchange_filename("Test-File-2022-04-28-103724.csv") + self._test_exchange_filename("Test-File-2022-04-28-10-37-24.csv") # Force date pattern and timezone on advanced settings self.exchange_type_out.advanced_settings_edit = """