forked from OCA/OpenUpgrade
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapriori.py
More file actions
37 lines (33 loc) · 862 Bytes
/
apriori.py
File metadata and controls
37 lines (33 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
""" Encode any known changes to the database here
to help the matching process
"""
# Renamed modules is a mapping from old module name to new module name
renamed_modules = {
"account_accountant": "accountant",
# odoo
# odoo/enterprise
# OCA/product-attribute
"product_supplierinfo_for_customer": "product_customerinfo",
# OCA/sale-workflow
"product_supplierinfo_for_customer_sale": "product_customerinfo_sale",
# OCA/...
}
# Merged modules contain a mapping from old module names to other,
# preexisting module names
merged_modules = {
# odoo
# odoo/enterprise
# OCA/sale-workflow
"sale_order_qty_change_no_recompute": "sale",
# OCA/...
}
# only used here for upgrade_analysis
renamed_models = {
# odoo
# OCA/...
}
# only used here for upgrade_analysis
merged_models = {
# odoo
# OCA/...
}