Skip to content

Commit 001cdbc

Browse files
[IMP] openupgrade_scripts: fill apriori
1 parent 76844ec commit 001cdbc

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

openupgrade_scripts/apriori.py

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
# Renamed modules is a mapping from old module name to new module name
66
renamed_modules = {
77
# odoo
8+
"l10n_ec_website_sale": "l10n_ec_sale",
9+
"l10n_in_edi_ewaybill": "l10n_in_ewaybill",
10+
"membership": "partnership",
11+
"pos_viva_wallet": "pos_viva_com",
12+
"web_editor": "html_builder",
813
# odoo/enterprise
914
# OCA/...
1015
}
@@ -13,18 +18,57 @@
1318
# preexisting module names
1419
merged_modules = {
1520
# odoo
21+
"account_edi_ubl_cii_tax_extension": "account_edi_ubl_cii",
22+
"account_peppol_selfbilling": "account_peppol",
23+
"auth_totp_mail_enforce": "auth_totp_mail",
24+
"hr_contract": "hr",
25+
"hr_holidays_contract": "hr_holidays",
26+
"hr_work_entry_contract": "hr_work_entry",
27+
"l10n_es_modelo130": "l10n_es",
28+
"l10n_id_efaktur": "l10n_id_efaktur_coretax",
29+
"l10n_in_gstin_status": "l10n_in",
30+
"l10n_in_withholding": "l10n_in",
31+
"l10n_in_withholding_payment": "l10n_in",
32+
"l10n_it_edi_ndd": "l10n_it_edi",
33+
"l10n_it_edi_ndd_account_dn": "l10n_it_edi",
34+
"l10n_it_edi_website_sale": "l10n_it_edi",
35+
"l10n_it_edi_withholding": "l10n_it_edi",
36+
"l10n_jo_edi_extended": "l10n_jo_edi",
37+
"l10n_my_edi_extended": "l10n_my_edi",
38+
"l10n_pe_website_sale": "l10n_pe",
39+
"l10n_pl_taxable_supply_date": "l10n_pl",
40+
"l10n_ro_efactura_synchronize": "l10n_ro_edi",
41+
"payment_razorpay_oauth": "payment_razorpay",
42+
"pos_epson_printer": "point_of_sale",
43+
"pos_self_order_epson_printer": "pos_self_order",
44+
"sale_async_emails": "sale",
45+
"website_membership": "website_crm_partner_assign",
1646
# odoo/enterprise
1747
# OCA/...
1848
}
1949

2050
# only used here for upgrade_analysis
2151
renamed_models = {
2252
# odoo
53+
"account_peppol.service.wizard": "peppol.config.wizard",
54+
"hr.attendance.overtime": "hr.attendance.overtime.line",
55+
"hr.candidate.skill": "hr.applicant.skill",
56+
"hr.contract": "hr.version",
57+
"mail.wizard.invite": "mail.followers.edit",
58+
"mrp.batch.produce": "mrp.production.serials",
59+
"procurement.group": "stock.reference",
60+
"product.packaging": "product.uom",
61+
"stock.package_level": "stock.package.history",
62+
"stock.quant.package": "stock.package",
63+
"web_editor.assets": "website.assets",
64+
"web_editor.converter.test": "html_editor.converter.test",
65+
"web_editor.converter.test.sub": "html_editor.converter.test.sub",
2366
# OCA/...
2467
}
2568

2669
# only used here for upgrade_analysis
2770
merged_models = {
2871
# odoo
72+
"hr.candidate": "hr.applicant",
2973
# OCA/...
3074
}

0 commit comments

Comments
 (0)