Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docsource/modules180-190.rst
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_anz_ubl_pint | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_ar | | |
| l10n_ar | Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_ar_pos | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down Expand Up @@ -386,7 +386,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_eu_oss | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_fi | | |
| l10n_fi | Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_fi_sale | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down Expand Up @@ -526,7 +526,7 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_latam_base | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_latam_check | | |
| l10n_latam_check | Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| l10n_latam_invoice_document | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
openupgrade.load_data(env, "l10n_ar", "19.0.3.7/noupdate_changes.xml")
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---Models in module 'l10n_ar'---
---Fields in module 'l10n_ar'---
---XML records in module 'l10n_ar'---
# DONE: noupdate_changes.xml loaded in post-migration (partner_afip AFIP->ARCA rebrand)
NEW ir.model.constraint: l10n_ar.constraint_l10n_ar_afip_responsibility_type_code_uniq
NEW ir.model.constraint: l10n_ar.constraint_l10n_ar_afip_responsibility_type_name_uniq
DEL ir.model.constraint: l10n_ar.constraint_l10n_ar_afip_responsibility_type_code
DEL ir.model.constraint: l10n_ar.constraint_l10n_ar_afip_responsibility_type_name
NEW ir.ui.view: l10n_ar.address_form_fields
DEL ir.ui.view: l10n_ar.product_uom_categ_form_view
# NOTHING TO DO: constraint rename + view add/del are handled automatically by the ORM
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
openupgrade.load_data(env, "l10n_fi", "19.0.13.0.2/noupdate_changes.xml")
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---Models in module 'l10n_fi'---
---Fields in module 'l10n_fi'---
l10n_fi / account.journal / invoice_reference_model (False): selection_keys added: [number] (most likely nothing to do)

# NOTHING TO DO: new selection key, no existing data to remap

---XML records in module 'l10n_fi'---
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
openupgrade.load_data(env, "l10n_latam_check", "19.0.1.0.0/noupdate_changes.xml")
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---Models in module 'l10n_latam_check'---
---Fields in module 'l10n_latam_check'---
---XML records in module 'l10n_latam_check'---
# NOTHING TO DO: NEW records are auto-created on update.
NEW ir.model.constraint: l10n_latam_check.constraint_l10n_latam_check_unique
NEW ir.ui.view: l10n_latam_check.report_payment_receipt_document
# DONE: noupdate_changes.xml es_419 translations on standard payment-method data loaded in post-migration.
Loading