Skip to content

Commit

Permalink
Merge PR #3638 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by antoniospneto
  • Loading branch information
OCA-git-bot committed Feb 23, 2025
2 parents b402b79 + 0d9cb48 commit fb115d8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_br_fiscal/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"maintainers": ["renatonlima"],
"website": "https://github.com/OCA/l10n-brazil",
"development_status": "Production/Stable",
"version": "16.0.2.14.0",
"version": "16.0.2.15.0",
"depends": [
"product",
"l10n_br_base",
Expand Down
19 changes: 19 additions & 0 deletions l10n_br_fiscal/migrations/16.0.2.15.0/pre-migration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2025 Engenere - Antônio S. P. Neto.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
xmlids_renames = [
(
"l10n_br_fiscal.ncm_70200090_ P",
"l10n_br_fiscal.ncm_70200090_P",
),
(
"l10n_br_fiscal.ncm_68159990_ P",
"l10n_br_fiscal.ncm_68159990_P",
),
]
openupgrade.rename_xmlids(env.cr, xmlids_renames)

0 comments on commit fb115d8

Please sign in to comment.