From 98bd12d61c261f61ceb96237278cd8747ae94df5 Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Sat, 30 May 2026 14:33:10 -0400 Subject: [PATCH 1/2] [MIG] l10n_ae/l10n_sa load report data + l10n_sa_edi workdoc + 2 noop l10n_ae/l10n_sa: load changed VAT-report noupdate data via load_data. l10n_sa_edi: add missing work-doc (pre-migration already on its own branch). l10n_anz_ubl_pint/l10n_in_sale: nothing to do (removed selection keys had no data to remap / computed field), validated vs Odoo 19 source. --- docsource/modules180-190.rst | 10 +- .../19.0.1.0/upgrade_analysis_work.txt | 5 + .../19.0.1.0/upgrade_analysis_work.txt | 7 + .../l10n_sa/19.0.2.2/post-migration.py | 6 + .../19.0.2.2/upgrade_analysis_work.txt | 244 ++++++++++++++++++ 5 files changed, 267 insertions(+), 5 deletions(-) create mode 100644 openupgrade_scripts/scripts/l10n_anz_ubl_pint/19.0.1.0/upgrade_analysis_work.txt create mode 100644 openupgrade_scripts/scripts/l10n_in_sale/19.0.1.0/upgrade_analysis_work.txt create mode 100644 openupgrade_scripts/scripts/l10n_sa/19.0.2.2/post-migration.py create mode 100644 openupgrade_scripts/scripts/l10n_sa/19.0.2.2/upgrade_analysis_work.txt diff --git a/docsource/modules180-190.rst b/docsource/modules180-190.rst index fd4b86e2175e..598db1ef58fb 100644 --- a/docsource/modules180-190.rst +++ b/docsource/modules180-190.rst @@ -248,11 +248,11 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_account_withholding_tax_pos | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ae | | | +| l10n_ae | Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | |new| l10n_ae_pos | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_anz_ubl_pint | | | +| l10n_anz_ubl_pint | Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_ar | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ @@ -470,7 +470,7 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_in_purchase_stock | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_in_sale | | | +| l10n_in_sale | Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_in_sale_stock | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ @@ -618,9 +618,9 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_rw | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_sa | | | +| l10n_sa | Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_sa_edi | | | +| l10n_sa_edi | Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_sa_edi_pos | |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+ diff --git a/openupgrade_scripts/scripts/l10n_anz_ubl_pint/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/l10n_anz_ubl_pint/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 000000000000..e1888ab86718 --- /dev/null +++ b/openupgrade_scripts/scripts/l10n_anz_ubl_pint/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,5 @@ +---Models in module 'l10n_anz_ubl_pint'--- +---Fields in module 'l10n_anz_ubl_pint'--- +l10n_anz_ubl_pint / res.partner / invoice_edi_format (False) : selection_keys removed: [pint_jp, pint_my, tw_ecpay, ubl_tr] +# NOTHING TO DO: those keys belong to sibling country modules (pint_jp/pint_my/tw_ecpay/ubl_tr), not this one; this module still owns only 'pint_anz' in 19.0 (unchanged). No res.partner data to remap. +---XML records in module 'l10n_anz_ubl_pint'--- diff --git a/openupgrade_scripts/scripts/l10n_in_sale/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/l10n_in_sale/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 000000000000..384f451e7d28 --- /dev/null +++ b/openupgrade_scripts/scripts/l10n_in_sale/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,7 @@ +---Models in module 'l10n_in_sale'--- +---Fields in module 'l10n_in_sale'--- +l10n_in_sale / sale.order / l10n_in_gst_treatment (selection): DEL selection_keys: ['composition', 'consumer', 'deemed_export', 'overseas', 'regular', 'special_economic_zone', 'uin_holders', 'unregistered'] +# NOTHING TO DO: field dropped from sale.order in 19.0; logic now reads partner.l10n_in_gst_treatment inline. Canonical data on res.partner unchanged; OU preserves the legacy column. +---XML records in module 'l10n_in_sale'--- +DEL ir.ui.view: l10n_in_sale.gst_report_saleorder_document_inherit +# NOTHING TO DO: obsolete inherited view, default-handled. diff --git a/openupgrade_scripts/scripts/l10n_sa/19.0.2.2/post-migration.py b/openupgrade_scripts/scripts/l10n_sa/19.0.2.2/post-migration.py new file mode 100644 index 000000000000..c995a7286560 --- /dev/null +++ b/openupgrade_scripts/scripts/l10n_sa/19.0.2.2/post-migration.py @@ -0,0 +1,6 @@ +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.load_data(env, "l10n_sa", "19.0.2.2/noupdate_changes.xml") diff --git a/openupgrade_scripts/scripts/l10n_sa/19.0.2.2/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/l10n_sa/19.0.2.2/upgrade_analysis_work.txt new file mode 100644 index 000000000000..e7ea2f3410a1 --- /dev/null +++ b/openupgrade_scripts/scripts/l10n_sa/19.0.2.2/upgrade_analysis_work.txt @@ -0,0 +1,244 @@ +---Models in module 'l10n_sa'--- +---Fields in module 'l10n_sa'--- +l10n_sa / account.move / l10n_sa_reason (selection) : NEW selection_keys: ['BR-KSA-17-reason-1', 'BR-KSA-17-reason-2', 'BR-KSA-17-reason-3', 'BR-KSA-17-reason-4', 'BR-KSA-17-reason-5'] +# NOTHING TO DO — additive selection keys; no removed keys, existing rows unaffected. +---XML records in module 'l10n_sa'--- +NEW account.report.column: l10n_sa.tax_report_vat_filing_amount +NEW account.report.column: l10n_sa.tax_report_vat_filing_vat_amount +NEW account.report.column: l10n_sa.tax_report_withholding_tax_base +NEW account.report.column: l10n_sa.tax_report_withholding_tax_tax +DEL account.report.column: l10n_sa.tax_report_vat_filing_balance +DEL account.report.column: l10n_sa.tax_report_withholding_tax_balance +NEW account.report.expression: l10n_sa.tax_report_line_corrections_from_previous_period_tax +NEW account.report.expression: l10n_sa.tax_report_line_exempt_purchase_base +NEW account.report.expression: l10n_sa.tax_report_line_exempt_sale_base +NEW account.report.expression: l10n_sa.tax_report_line_exports_base +NEW account.report.expression: l10n_sa.tax_report_line_imports_subject_to_vat_paid_at_customs_base +NEW account.report.expression: l10n_sa.tax_report_line_imports_subject_to_vat_paid_at_customs_tax +NEW account.report.expression: l10n_sa.tax_report_line_imports_subject_to_vat_reverse_charge_base +NEW account.report.expression: l10n_sa.tax_report_line_imports_subject_to_vat_reverse_charge_tax +NEW account.report.expression: l10n_sa.tax_report_line_net_vat_due_tax +NEW account.report.expression: l10n_sa.tax_report_line_ph_pe_fh_base +NEW account.report.expression: l10n_sa.tax_report_line_standard_rated_domestic_purchase_base +NEW account.report.expression: l10n_sa.tax_report_line_standard_rated_domestic_purchase_tax +NEW account.report.expression: l10n_sa.tax_report_line_standard_rated_sale_base +NEW account.report.expression: l10n_sa.tax_report_line_standard_rated_sale_tax +NEW account.report.expression: l10n_sa.tax_report_line_total_purchase_base +NEW account.report.expression: l10n_sa.tax_report_line_total_purchase_tax +NEW account.report.expression: l10n_sa.tax_report_line_total_sale_base +NEW account.report.expression: l10n_sa.tax_report_line_total_sale_tax +NEW account.report.expression: l10n_sa.tax_report_line_total_vat_due_for_current_period_tax +NEW account.report.expression: l10n_sa.tax_report_line_vat_credit_carried_forward_from_previous_period_tax +NEW account.report.expression: l10n_sa.tax_report_line_zero_rated_domestic_sale_base +NEW account.report.expression: l10n_sa.tax_report_line_zero_rated_purchase_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_at_af_mf_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_at_af_mf_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_at_af_mf_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_at_af_mf_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_at_af_mf_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_at_af_mf_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_dividends_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_dividends_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_dividends_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_dividends_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_dividends_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_dividends_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_interest_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_interest_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_interest_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_interest_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_interest_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_interest_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_management_fees_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_management_fees_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_management_fees_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_management_fees_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_management_fees_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_management_fees_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_other_payments_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_other_payments_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_other_payments_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_other_payments_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_other_payments_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_other_payments_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_rent_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_rent_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_rent_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_rent_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_rent_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_rent_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_royalties_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_royalties_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_royalties_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_royalties_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_royalties_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_royalties_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_d_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_d_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_g_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_g_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_tax +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_total_base +NEW account.report.expression: l10n_sa.tax_report_withholding_tax_line_total_tax +DEL account.report.expression: l10n_sa.tax_report_line_exempt_purchases_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_exempt_purchases_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_exempt_sales_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_exempt_sales_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_export_sales_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_export_sales_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_imports_subject_tp_reverse_charge_mechanism_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_imports_subject_tp_reverse_charge_mechanism_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_local_sales_subject_to_0_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_local_sales_subject_to_0_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_net_vat_due_formula +DEL account.report.expression: l10n_sa.tax_report_line_special_sales_to_locals_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_special_sales_to_locals_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_standard_rated_15_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_standard_rated_15_purchases_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_standard_rated_15_purchases_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_standard_rated_15_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_taxable_imports_15_paid_to_customs_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_taxable_imports_15_paid_to_customs_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_others_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_others_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_another_branch_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_another_branch_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_main_branch_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_main_branch_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_royalties_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_15_royalties_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_20_managerial_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_20_managerial_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_consulting_and_technical_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_consulting_and_technical_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_distributed_profits_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_distributed_profits_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_insurance_and_reinsurance_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_insurance_and_reinsurance_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_international_telecommunication_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_international_telecommunication_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_rental_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_rental_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_return_from_loans_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_return_from_loans_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_air_freight_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_air_freight_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_sea_freight_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_sea_freight_tax_tag +DEL account.report.expression: l10n_sa.tax_report_line_zero_rated_purchases_base_tag +DEL account.report.expression: l10n_sa.tax_report_line_zero_rated_purchases_tax_tag +NEW account.report.line: l10n_sa.tax_report_line_corrections_from_previous_period +NEW account.report.line: l10n_sa.tax_report_line_exempt_purchase +NEW account.report.line: l10n_sa.tax_report_line_exempt_sale +NEW account.report.line: l10n_sa.tax_report_line_exports +NEW account.report.line: l10n_sa.tax_report_line_imports_subject_to_vat_paid_at_customs +NEW account.report.line: l10n_sa.tax_report_line_imports_subject_to_vat_reverse_charge +NEW account.report.line: l10n_sa.tax_report_line_ph_pe_fh +NEW account.report.line: l10n_sa.tax_report_line_standard_rated_domestic_purchase +NEW account.report.line: l10n_sa.tax_report_line_standard_rated_sale +NEW account.report.line: l10n_sa.tax_report_line_total_purchase +NEW account.report.line: l10n_sa.tax_report_line_total_sale +NEW account.report.line: l10n_sa.tax_report_line_total_vat_due_for_current_period +NEW account.report.line: l10n_sa.tax_report_line_vat_credit_carried_forward_from_previous_period +NEW account.report.line: l10n_sa.tax_report_line_vat_on_purchase +NEW account.report.line: l10n_sa.tax_report_line_vat_on_sale +NEW account.report.line: l10n_sa.tax_report_line_zero_rated_domestic_sale +NEW account.report.line: l10n_sa.tax_report_line_zero_rated_purchase +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_at_af_mf +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_at_af_mf_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_at_af_mf_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_dividends +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_dividends_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_dividends_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_interest +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_interest_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_interest_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_management_fees +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_management_fees_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_management_fees_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_other_payments +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_other_payments_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_other_payments_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_rent +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_rent_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_rent_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_royalties +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_royalties_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_royalties_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_d +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_technical_and_consulting_services_g +NEW account.report.line: l10n_sa.tax_report_withholding_tax_line_total +DEL account.report.line: l10n_sa.tax_report_line_exempt_purchases_base +DEL account.report.line: l10n_sa.tax_report_line_exempt_purchases_tax +DEL account.report.line: l10n_sa.tax_report_line_exempt_sales_base +DEL account.report.line: l10n_sa.tax_report_line_exempt_sales_tax +DEL account.report.line: l10n_sa.tax_report_line_export_sales_base +DEL account.report.line: l10n_sa.tax_report_line_export_sales_tax +DEL account.report.line: l10n_sa.tax_report_line_imports_subject_tp_reverse_charge_mechanism_base +DEL account.report.line: l10n_sa.tax_report_line_imports_subject_tp_reverse_charge_mechanism_tax +DEL account.report.line: l10n_sa.tax_report_line_local_sales_subject_to_0_base +DEL account.report.line: l10n_sa.tax_report_line_local_sales_subject_to_0_tax +DEL account.report.line: l10n_sa.tax_report_line_net_purchases_base +DEL account.report.line: l10n_sa.tax_report_line_net_purchases_tax +DEL account.report.line: l10n_sa.tax_report_line_net_sales_base +DEL account.report.line: l10n_sa.tax_report_line_net_sales_tax +DEL account.report.line: l10n_sa.tax_report_line_net_vat_due_or_reclaimed_for_the_period +DEL account.report.line: l10n_sa.tax_report_line_special_sales_to_locals_base +DEL account.report.line: l10n_sa.tax_report_line_special_sales_to_locals_tax +DEL account.report.line: l10n_sa.tax_report_line_standard_rated_15_base +DEL account.report.line: l10n_sa.tax_report_line_standard_rated_15_purchases_base +DEL account.report.line: l10n_sa.tax_report_line_standard_rated_15_purchases_tax +DEL account.report.line: l10n_sa.tax_report_line_standard_rated_15_tax +DEL account.report.line: l10n_sa.tax_report_line_taxable_imports_15_paid_to_customs_base +DEL account.report.line: l10n_sa.tax_report_line_taxable_imports_15_paid_to_customs_tax +DEL account.report.line: l10n_sa.tax_report_line_total_value_of_due_tax_for_the_period +DEL account.report.line: l10n_sa.tax_report_line_total_value_of_recoverable_tax_for_the_period +DEL account.report.line: l10n_sa.tax_report_line_vat_all_expenses_base +DEL account.report.line: l10n_sa.tax_report_line_vat_all_expenses_tax +DEL account.report.line: l10n_sa.tax_report_line_vat_all_sales_base +DEL account.report.line: l10n_sa.tax_report_line_vat_all_sales_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_others_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_others_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_another_branch_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_another_branch_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_main_branch_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_paid_services_from_main_branch_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_royalties_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_15_royalties_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_20_managerial_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_20_managerial_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_consulting_and_technical_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_consulting_and_technical_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_distributed_profits_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_distributed_profits_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_insurance_and_reinsurance_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_insurance_and_reinsurance_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_international_telecommunication_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_international_telecommunication_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_rental_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_rental_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_return_from_loans_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_return_from_loans_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_air_freight_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_air_freight_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_sea_freight_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_5_tickets_or_sea_freight_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_on_purchased_services_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_on_purchased_services_tax +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_total_base +DEL account.report.line: l10n_sa.tax_report_line_withholding_tax_total_tax +DEL account.report.line: l10n_sa.tax_report_line_zero_rated_purchases_base +DEL account.report.line: l10n_sa.tax_report_line_zero_rated_purchases_tax +# NOTHING TO DO — tax-report line→expression restructure; account.report.* are noupdate=False definition records reloaded by the module on -u, not referenced by transactional data. +NEW ir.ui.view: l10n_sa.l10n_sa_document_tax_totals +NEW ir.ui.view: l10n_sa.l10n_sa_document_tax_totals_company_currency_template +NEW ir.ui.view: l10n_sa.l10n_sa_report_invoice_document +NEW ir.ui.view: l10n_sa.report_invoice +NEW ir.ui.view: l10n_sa.view_account_debit_note_inherit_l10n_sa +NEW ir.ui.view: l10n_sa.view_account_move_reversal_inherit_l10n_sa +NEW ir.ui.view: l10n_sa.view_move_form_inherit_l10n_sa +DEL ir.ui.view: l10n_sa.arabic_english_invoice +DEL ir.ui.view: l10n_sa.view_move_form +# NOTHING TO DO — view definitions reloaded by the module on update. From b25c6a5db5f31cf70473db442f9350bb8be45ce8 Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Thu, 11 Jun 2026 07:57:14 -0400 Subject: [PATCH 2/2] =?UTF-8?q?[FIX]=20docsource:=20drop=20l10n=5Fae/l10n?= =?UTF-8?q?=5Fsa=5Fedi=20stamps=20=E2=80=94=20owning=20branches=20mark=20t?= =?UTF-8?q?hem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The scripts live on 19.0-fix-l10n-tax-report-lines and 19.0-mig-l10n-sa-edi; stamping here splits the claim from the code (same-line contention in the aggregate, and a false claim if this branch is cherry-picked alone). --- docsource/modules180-190.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsource/modules180-190.rst b/docsource/modules180-190.rst index 598db1ef58fb..f8c8eba97d41 100644 --- a/docsource/modules180-190.rst +++ b/docsource/modules180-190.rst @@ -248,7 +248,7 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_account_withholding_tax_pos | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_ae | Done | | +| l10n_ae | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | |new| l10n_ae_pos | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ @@ -620,7 +620,7 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_sa | Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| l10n_sa_edi | Done | | +| l10n_sa_edi | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | l10n_sa_edi_pos | |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+