From 3fea6572818cdabb5fc6708b52acd9e8ddcc65c4 Mon Sep 17 00:00:00 2001 From: "Stefan Rijnhart (Opener)" Date: Thu, 17 Dec 2020 17:05:03 +0100 Subject: [PATCH] Update openupgrade_scripts/apriori.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Miquel Raïch --- openupgrade_scripts/apriori.py | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/openupgrade_scripts/apriori.py b/openupgrade_scripts/apriori.py index 51ea69c3f6d..efe53cccb52 100644 --- a/openupgrade_scripts/apriori.py +++ b/openupgrade_scripts/apriori.py @@ -3,12 +3,32 @@ """ # Renamed modules is a mapping from old module name to new module name -renamed_modules = {} +renamed_modules = { + # odoo + "account_facturx": "account_edi_facturx", + "website_rating": "portal_rating", + # OCA/... +} # Merged modules contain a mapping from old module names to other, # preexisting module names merged_modules = { + # odoo + "account_analytic_default": "account", + "account_analytic_default_hr_expense": "hr_expense", + "account_analytic_default_purchase": "purchase", + "hr_expense_check": "hr_expense", + "hr_holidays_calendar": "hr_holidays", + "hw_proxy": "hw_drivers", + "l10n_cn_small_business": "l10n_cn", + "partner_autocomplete_address_extended": "base_address_extended", + "pos_cash_rounding": "point_of_sale", + "pos_kitchen_printer": "pos_restaurant", + "pos_reprint": "point_of_sale", + "website_theme_install": "website", + # OCA/partner-contact "partner_bank_active": "base", + # OCA/... } # only used here for upgrade_analysis