From ec8ca4d0969d75ad504be2a94394e5a7f67ad6a5 Mon Sep 17 00:00:00 2001 From: Erick Tejada Date: Mon, 29 Jul 2024 15:06:12 -0400 Subject: [PATCH 1/5] [FIX] Odoo moved the partner_id field inside a div, thus breaking extension --- l10n_do_accounting/views/account_move_views.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n_do_accounting/views/account_move_views.xml b/l10n_do_accounting/views/account_move_views.xml index a41e0d49c..4d53aafdb 100644 --- a/l10n_do_accounting/views/account_move_views.xml +++ b/l10n_do_accounting/views/account_move_views.xml @@ -47,7 +47,7 @@ (not l10n_latam_use_documents and country_code == 'DO') or (not l10n_do_enable_first_sequence and not l10n_latam_manual_document_number and state == 'draft') or (not l10n_do_enable_first_sequence and l10n_latam_manual_document_number and state == 'draft') and (move_type in ('out_invoice', 'out_refund', 'in_refund') and country_code == 'DO') (state != 'draft' and country_code == 'DO') or (posted_before and country_code == 'DO') - + Date: Mon, 5 Aug 2024 16:50:20 -0400 Subject: [PATCH 2/5] [IMP] Properly extending move view with localization fields --- l10n_do_accounting/__manifest__.py | 2 +- l10n_do_accounting/views/account_move_views.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n_do_accounting/__manifest__.py b/l10n_do_accounting/__manifest__.py index 3aab77d33..539b25590 100644 --- a/l10n_do_accounting/__manifest__.py +++ b/l10n_do_accounting/__manifest__.py @@ -8,7 +8,7 @@ "category": "Localization", "license": "LGPL-3", "website": "https://github.com/odoo-dominicana", - "version": "17.0.1.0.2", + "version": "17.0.1.0.3", "countries": ["do"], # any module necessary for this one to work correctly "depends": ["l10n_latam_invoice_document", "l10n_do"], diff --git a/l10n_do_accounting/views/account_move_views.xml b/l10n_do_accounting/views/account_move_views.xml index 4d53aafdb..5d37f261f 100644 --- a/l10n_do_accounting/views/account_move_views.xml +++ b/l10n_do_accounting/views/account_move_views.xml @@ -47,7 +47,7 @@ (not l10n_latam_use_documents and country_code == 'DO') or (not l10n_do_enable_first_sequence and not l10n_latam_manual_document_number and state == 'draft') or (not l10n_do_enable_first_sequence and l10n_latam_manual_document_number and state == 'draft') and (move_type in ('out_invoice', 'out_refund', 'in_refund') and country_code == 'DO') (state != 'draft' and country_code == 'DO') or (posted_before and country_code == 'DO') - + Date: Tue, 3 Sep 2024 22:03:52 +0000 Subject: [PATCH 3/5] Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 50ab87bc2..fa2c3898a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -97,7 +97,7 @@ jobs: steps: - name: Download repository results - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: modules From 45d4f35b92033edf001064e4a7075a59da634c4c Mon Sep 17 00:00:00 2001 From: Erick Tejada Date: Thu, 5 Sep 2024 11:59:44 -0400 Subject: [PATCH 4/5] [IMP] the xpath expression is now more specific to fix the missing labels --- l10n_do_accounting/__manifest__.py | 2 +- l10n_do_accounting/views/account_move_views.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n_do_accounting/__manifest__.py b/l10n_do_accounting/__manifest__.py index 539b25590..a52a90956 100644 --- a/l10n_do_accounting/__manifest__.py +++ b/l10n_do_accounting/__manifest__.py @@ -8,7 +8,7 @@ "category": "Localization", "license": "LGPL-3", "website": "https://github.com/odoo-dominicana", - "version": "17.0.1.0.3", + "version": "17.0.1.0.4", "countries": ["do"], # any module necessary for this one to work correctly "depends": ["l10n_latam_invoice_document", "l10n_do"], diff --git a/l10n_do_accounting/views/account_move_views.xml b/l10n_do_accounting/views/account_move_views.xml index 5d37f261f..a84a1ce56 100644 --- a/l10n_do_accounting/views/account_move_views.xml +++ b/l10n_do_accounting/views/account_move_views.xml @@ -47,7 +47,7 @@ (not l10n_latam_use_documents and country_code == 'DO') or (not l10n_do_enable_first_sequence and not l10n_latam_manual_document_number and state == 'draft') or (not l10n_do_enable_first_sequence and l10n_latam_manual_document_number and state == 'draft') and (move_type in ('out_invoice', 'out_refund', 'in_refund') and country_code == 'DO') (state != 'draft' and country_code == 'DO') or (posted_before and country_code == 'DO') - + Date: Thu, 5 Sep 2024 12:34:40 -0400 Subject: [PATCH 5/5] [IMP] moving the NCF fields to be outside of the partner DIV (labels were not properly shown on V17) --- l10n_do_accounting/__manifest__.py | 2 +- l10n_do_accounting/views/account_move_views.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/l10n_do_accounting/__manifest__.py b/l10n_do_accounting/__manifest__.py index 539b25590..a52a90956 100644 --- a/l10n_do_accounting/__manifest__.py +++ b/l10n_do_accounting/__manifest__.py @@ -8,7 +8,7 @@ "category": "Localization", "license": "LGPL-3", "website": "https://github.com/odoo-dominicana", - "version": "17.0.1.0.3", + "version": "17.0.1.0.4", "countries": ["do"], # any module necessary for this one to work correctly "depends": ["l10n_latam_invoice_document", "l10n_do"], diff --git a/l10n_do_accounting/views/account_move_views.xml b/l10n_do_accounting/views/account_move_views.xml index a84a1ce56..02dc608a1 100644 --- a/l10n_do_accounting/views/account_move_views.xml +++ b/l10n_do_accounting/views/account_move_views.xml @@ -47,7 +47,7 @@ (not l10n_latam_use_documents and country_code == 'DO') or (not l10n_do_enable_first_sequence and not l10n_latam_manual_document_number and state == 'draft') or (not l10n_do_enable_first_sequence and l10n_latam_manual_document_number and state == 'draft') and (move_type in ('out_invoice', 'out_refund', 'in_refund') and country_code == 'DO') (state != 'draft' and country_code == 'DO') or (posted_before and country_code == 'DO') - +