-
-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] l10n_it_accompanying_invoice: Migration to 16.0
Co-authored-by: Simone Rubino <simone.rubino@aion-tech.it> Co-authored-by: OdooNextev <odoo@nextev.it>
- Loading branch information
Showing
20 changed files
with
777 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from . import models | ||
# from .hooks import pre_absorb_old_module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,31 @@ | ||
# Copyright 2017 Lorenzo Battistini - Agile Business Group | ||
# Copyright 2020 Simone Vanin - Agile Business Group | ||
# Copyright 2023 Simone Rubino - Aion Tech | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "ITA - Fattura accompagnatoria", | ||
'summary': 'Stampa della fattura accompagnatoria', | ||
"version": "12.0.1.0.0", | ||
"version": "16.0.1.0.0", | ||
"category": "Accounting", | ||
"website": "https://github.com/OCA/l10n-italy" | ||
"/tree/12.0/l10n_it_accompanying_invoice", | ||
"/tree/16.0/l10n_it_accompanying_invoice", | ||
"author": "Agile Business Group, " | ||
"Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"application": False, | ||
"installable": True, | ||
"depends": [ | ||
"l10n_it_ddt", | ||
"l10n_it_delivery_note", | ||
], | ||
"data": [ | ||
"views/account.xml", | ||
"views/report_invoice.xml", | ||
], | ||
# "external_dependencies": { | ||
# "python": [ | ||
# "openupgradelib", | ||
# ], | ||
# }, | ||
# "pre_init_hook": "pre_absorb_old_module", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,219 @@ | ||
# Copyright 2023 Simone Rubino - Aion Tech | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from openupgradelib import openupgrade | ||
from openupgradelib.openupgrade import logged_query | ||
|
||
from odoo.tools import DotDict | ||
|
||
RENAMED_FIELDS = [ | ||
[ | ||
( | ||
"account.invoice", | ||
"note", | ||
), | ||
( | ||
"account.move", | ||
"delivery_note", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"date_done", | ||
), | ||
( | ||
"account.move", | ||
"delivery_transport_datetime", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"carriage_condition_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_transport_condition_id", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"goods_description_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_goods_appearance_id", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"transportation_reason_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_transport_reason_id", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"transportation_method_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_transport_method_id", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"carrier_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_carrier_id", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"parcels", | ||
), | ||
( | ||
"account.move", | ||
"delivery_packages", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"weight", | ||
), | ||
( | ||
"account.move", | ||
"delivery_net_weight", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"gross_weight", | ||
), | ||
( | ||
"account.move", | ||
"delivery_gross_weight", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"volume", | ||
), | ||
( | ||
"account.move", | ||
"delivery_volume", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"weight_manual_uom_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_net_weight_uom_id", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"gross_weight_uom_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_gross_weight_uom_id", | ||
), | ||
], | ||
[ | ||
( | ||
"account.invoice", | ||
"volume_uom_id", | ||
), | ||
( | ||
"account.move", | ||
"delivery_volume_uom_id", | ||
), | ||
], | ||
] | ||
|
||
RENAMED_XMLIDS = [ | ||
( | ||
"invoice_form_view_uom", | ||
"view_move_form", | ||
), | ||
( | ||
"invoice_form_view_uom", | ||
"shipping_invoice_report", | ||
), | ||
( | ||
"invoice_form_view_uom", | ||
"shipping_invoice_template", | ||
), | ||
( | ||
"invoice_form_view_uom", | ||
"report_shipping_invoice", | ||
), | ||
] | ||
|
||
|
||
def remove_models(cr, model_spec): | ||
for name in model_spec: | ||
logged_query( | ||
cr, | ||
"DELETE FROM ir_model WHERE model = %s", | ||
(name,), | ||
) | ||
|
||
|
||
def migrate_old_module(cr): | ||
field_spec = [] | ||
for renamed_field in RENAMED_FIELDS: | ||
(old_model, old_field), (new_model, new_field) = renamed_field | ||
field_spec.append( | ||
( | ||
old_model, | ||
old_model.replace(".", "_"), | ||
old_field, | ||
new_field, | ||
) | ||
) | ||
openupgrade.rename_fields( | ||
# The method only needs the cursor, not the whole Environment | ||
DotDict( | ||
cr=cr, | ||
), | ||
field_spec, | ||
# Prevent Environment usage | ||
# whenever it will be implemented. | ||
no_deep=True, | ||
) | ||
|
||
full_renamed_xmlids = [ | ||
( | ||
".".join(("l10n_it_accompanying_invoice", old_xmlid)), | ||
".".join(("l10n_it_accompanying_invoice", new_xmlid)), | ||
) | ||
for old_xmlid, new_xmlid in RENAMED_XMLIDS | ||
] | ||
openupgrade.rename_xmlids( | ||
cr, | ||
full_renamed_xmlids, | ||
) | ||
|
||
|
||
def pre_absorb_old_module(cr): | ||
if openupgrade.is_module_installed(cr, "l10n_it_accompanying_invoice"): | ||
migrate_old_module(cr) |
Oops, something went wrong.