odoo-addon-openupgrade-scripts 16.0.1.0.3.212__py3-none-any.whl → 16.0.1.0.3.219__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/openupgrade_scripts/apriori.py +3 -1
- odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/pre-migration.py +22 -0
- odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/pre-migration.py +16 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/pre-migration.py +21 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.212.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.212.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info}/RECORD +8 -8
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.212.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.212.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info}/top_level.txt +0 -0
@@ -21,12 +21,14 @@ renamed_modules = {
|
|
21
21
|
# OCA/bank-statement-import
|
22
22
|
"account_bank_statement_import_qif": "account_statement_import_qif",
|
23
23
|
"account_statement_import": "account_statement_import_file",
|
24
|
+
"account_statement_import_file_reconciliation_widget": (
|
25
|
+
"account_statement_import_file_reconcile_oca"
|
26
|
+
),
|
24
27
|
"account_statement_import_txt_xlsx": "account_statement_import_sheet_file",
|
25
28
|
# OCA/crm
|
26
29
|
"crm_project": "crm_lead_to_task",
|
27
30
|
# OCA/knowledge
|
28
31
|
"knowledge": "document_knowledge",
|
29
|
-
# OCA/pos
|
30
32
|
# OCA/sale-promotion
|
31
33
|
"coupon_incompatibility": "loyalty_incompatibility",
|
32
34
|
"coupon_limit": "loyalty_limit",
|
@@ -37,6 +37,27 @@ _columns_copies = {
|
|
37
37
|
}
|
38
38
|
|
39
39
|
|
40
|
+
def _avoid_mail_notification_new_constraint(env):
|
41
|
+
"""Prior to Odoo 16, there is no unique constraint on the mail_notification table,
|
42
|
+
so if there's any duplicate, the upgrade will fail.
|
43
|
+
|
44
|
+
Let's preventively delete the duplicated entries, as at the end, they are not
|
45
|
+
needed.
|
46
|
+
"""
|
47
|
+
openupgrade.logged_query(
|
48
|
+
env.cr,
|
49
|
+
"""DELETE FROM mail_notification
|
50
|
+
WHERE id IN (
|
51
|
+
SELECT id FROM (
|
52
|
+
SELECT id, row_number()
|
53
|
+
OVER (
|
54
|
+
partition BY res_partner_id, mail_message_id ORDER BY id
|
55
|
+
) AS rnum FROM mail_notification
|
56
|
+
) t WHERE t.rnum > 1
|
57
|
+
)""",
|
58
|
+
)
|
59
|
+
|
60
|
+
|
40
61
|
def delete_obsolete_constraints(env):
|
41
62
|
openupgrade.delete_sql_constraint_safely(
|
42
63
|
env, "mail", "mail_channel_partner", "partner_or_guest_exists"
|
@@ -129,6 +150,7 @@ def scheduled_date_set_empty_strings_to_null(env):
|
|
129
150
|
|
130
151
|
@openupgrade.migrate()
|
131
152
|
def migrate(env, version):
|
153
|
+
_avoid_mail_notification_new_constraint(env)
|
132
154
|
delete_obsolete_constraints(env)
|
133
155
|
openupgrade.rename_fields(env, _fields_renames)
|
134
156
|
openupgrade.rename_models(env.cr, _models_renames)
|
@@ -124,6 +124,21 @@ def _mig_s_progress_steps_contents(env):
|
|
124
124
|
view.arch_db = env["ir.ui.view"]._pretty_arch(arch)
|
125
125
|
|
126
126
|
|
127
|
+
def _reset_customize_show_in_website_views(env):
|
128
|
+
"""New Odoo website engine doesn't use customize_show=True system to show options
|
129
|
+
in the Customize tab, so we preventively reset all of them containing a website* key
|
130
|
+
for avoiding showing extra options where they shouldn't (it already happens for
|
131
|
+
example in website_sale with "Category Collapsible List" view).
|
132
|
+
"""
|
133
|
+
openupgrade.logged_query(
|
134
|
+
env.cr,
|
135
|
+
"""UPDATE ir_ui_view
|
136
|
+
SET customize_show=False
|
137
|
+
WHERE key like 'website%' AND customize_show
|
138
|
+
""",
|
139
|
+
)
|
140
|
+
|
141
|
+
|
127
142
|
@openupgrade.migrate()
|
128
143
|
def migrate(env, version):
|
129
144
|
_fill_partner_id_if_null(env)
|
@@ -133,3 +148,4 @@ def migrate(env, version):
|
|
133
148
|
delete_constraint_website_visitor_partner_uniq(env)
|
134
149
|
_fill_homepage_url(env)
|
135
150
|
_mig_s_progress_steps_contents(env)
|
151
|
+
_reset_customize_show_in_website_views(env)
|
@@ -32,6 +32,26 @@ _not_noupdate_xml_ids = [
|
|
32
32
|
]
|
33
33
|
|
34
34
|
|
35
|
+
def _remove_view_inheritance(env):
|
36
|
+
"""On v15, some views were inherited ones, but this it not anymore in v16. As Odoo
|
37
|
+
only touches the fields that are present in the definition, and now the `inherit_id`
|
38
|
+
field is missing, the inheritance keeps there, provoking a crash.
|
39
|
+
|
40
|
+
Let's empty them manually by SQL (for avoiding view validation) and using the key,
|
41
|
+
for any possible website specific view.
|
42
|
+
"""
|
43
|
+
openupgrade.logged_query(
|
44
|
+
env.cr,
|
45
|
+
"""UPDATE ir_ui_view SET inherit_id=NULL, mode='primary'
|
46
|
+
WHERE key IN (
|
47
|
+
'website_sale.sort',
|
48
|
+
'website_sale.add_grid_or_list_option',
|
49
|
+
'website_sale.products_categories',
|
50
|
+
'website_sale.filter_products_price'
|
51
|
+
)""",
|
52
|
+
)
|
53
|
+
|
54
|
+
|
35
55
|
def _remove_incorrect_website_sale_extra_field_records(env):
|
36
56
|
openupgrade.logged_query(
|
37
57
|
env.cr,
|
@@ -46,4 +66,5 @@ def migrate(env, version):
|
|
46
66
|
openupgrade.set_xml_ids_noupdate_value(
|
47
67
|
env, "website_sale", _not_noupdate_xml_ids, False
|
48
68
|
)
|
69
|
+
_remove_view_inheritance(env)
|
49
70
|
_remove_incorrect_website_sale_extra_field_records(env)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-openupgrade-scripts
|
3
|
-
Version: 16.0.1.0.3.
|
3
|
+
Version: 16.0.1.0.3.219
|
4
4
|
Summary: Module that contains all the migrations analysis and scripts for migrate Odoo SA modules.
|
5
5
|
Home-page: https://github.com/OCA/OpenUpgrade
|
6
6
|
Author: Odoo Community Association (OCA)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
odoo/addons/openupgrade_scripts/README.rst,sha256=tNIgN-fE7UT1K-zMaK80ewZZOUaxzqYgufpYk2PHckU,3185
|
2
2
|
odoo/addons/openupgrade_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
odoo/addons/openupgrade_scripts/__manifest__.py,sha256=pE4R-JQdRitStZ2m2AN39foAoEfLWmwuL9nhHP1i3r8,614
|
4
|
-
odoo/addons/openupgrade_scripts/apriori.py,sha256=
|
4
|
+
odoo/addons/openupgrade_scripts/apriori.py,sha256=Jh2I-tLSvzrUrL8LinqK9zP5-TRat-jXbu77pvARFJg,5312
|
5
5
|
odoo/addons/openupgrade_scripts/readme/CONFIGURE.rst,sha256=cy1swpDkuqi9-6q8L1M1QD058QyfBvAE2PN_mmdxvwI,255
|
6
6
|
odoo/addons/openupgrade_scripts/readme/DESCRIPTION.rst,sha256=ckrM5YlY8awluPWIV7WOBynTOG_QKOjXrCsXD_RhmyU,86
|
7
7
|
odoo/addons/openupgrade_scripts/readme/INSTALL.rst,sha256=tXbOmw3QIhO1KLIziMpXzuuY0tOhI8IGT2ktCArwfGM,115
|
@@ -338,7 +338,7 @@ odoo/addons/openupgrade_scripts/scripts/lunch/16.0.1.0/upgrade_analysis.txt,sha2
|
|
338
338
|
odoo/addons/openupgrade_scripts/scripts/lunch/16.0.1.0/upgrade_analysis_work.txt,sha256=4szGZDLH6jY7ZNGZq0aSB6ozmAMyMWv47yZYult2gTg,660
|
339
339
|
odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/noupdate_changes.xml,sha256=8b74tz5LRJrf76AuyOTRIl4w3NvwHe9YivwafOnoBdU,1439
|
340
340
|
odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/post-migration.py,sha256=npwS2ylEgDiqM-CY-XzYe1o2tkXCCo3lR_qNhQPCzKM,262
|
341
|
-
odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/pre-migration.py,sha256=
|
341
|
+
odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/pre-migration.py,sha256=8Ca4PL5QlpLEvvNhCnKFbm-CTN_lOfKou9puegiUZgg,4699
|
342
342
|
odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/upgrade_analysis.txt,sha256=ev0yHLx23bmYinSh58rE9PJeF6PTwQHIThk9So-4uag,9744
|
343
343
|
odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/upgrade_analysis_work.txt,sha256=-pirBHtVboB-crq4R1iHSvSj8CGZyNRRBOgeqwCq9EU,11251
|
344
344
|
odoo/addons/openupgrade_scripts/scripts/mail/16.0.1.10/tests/data.py,sha256=GU_Vcq1F4DWujCx3joNM4MvKAHSFt2b3vhwpbN7oYGo,332
|
@@ -588,7 +588,7 @@ odoo/addons/openupgrade_scripts/scripts/web_tour/16.0.0.1/upgrade_analysis_work.
|
|
588
588
|
odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/end-migration.py,sha256=3-OtTMbzmMoogxYi2gxG7AJMYwsJkg9huL4qw39mso0,2869
|
589
589
|
odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/noupdate_changes.xml,sha256=L-3aiHxRTaP4bwEAnpCcb5PmP1DF4HXNTGb70cgsnb0,218
|
590
590
|
odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/post-migration.py,sha256=o6fuzgKXOoamlXNMm9UYMGrWJ7xEnvyNzRNiK-h-ZWA,169
|
591
|
-
odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/pre-migration.py,sha256=
|
591
|
+
odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/pre-migration.py,sha256=Invtw62qgK3tIwp8vcjNueh9b5pnztTXfmuMsWiyoBU,4709
|
592
592
|
odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/upgrade_analysis.txt,sha256=vCTXx3AvIGrv58lSrTjB-4tKywuc1XtN-tPnhNAuLQo,4942
|
593
593
|
odoo/addons/openupgrade_scripts/scripts/website/16.0.1.0/upgrade_analysis_work.txt,sha256=5-CSFPNzO01tICIHE49UYTIWFUZdDdl_JdVVRN7MNGI,5331
|
594
594
|
odoo/addons/openupgrade_scripts/scripts/website_blog/16.0.1.1/upgrade_analysis.txt,sha256=TBOoy8Y-_gtaGTl30JK2pPiofrz-THZHG_iE-LeHaAU,444
|
@@ -641,7 +641,7 @@ odoo/addons/openupgrade_scripts/scripts/website_profile/16.0.1.0/upgrade_analysi
|
|
641
641
|
odoo/addons/openupgrade_scripts/scripts/website_profile/16.0.1.0/upgrade_analysis_work.txt,sha256=WBihsSNr9k35K_7xoXbiHmQ3Bq_-Ji1aMfCw9K0n8NU,343
|
642
642
|
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/noupdate_changes.xml,sha256=nfdIYF9rDxL7mbrU-1rQSinpSkxqmAi6WfmDwGWYfK0,3955
|
643
643
|
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/post-migration.py,sha256=-c9-4Wzgb_HWaPCT9QdVxjinRtVyscYf4Cj1PFuIcUc,756
|
644
|
-
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/pre-migration.py,sha256=
|
644
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/pre-migration.py,sha256=EZzBrLLRaSHv8Iaw5ORMQMY9-Z91VdjQTkRuTul68bc,2523
|
645
645
|
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/upgrade_analysis.txt,sha256=PTjOf2WScHZfJVbgKmBDBWTFRkHclbfqkdS86Cvo7Vk,7782
|
646
646
|
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/upgrade_analysis_work.txt,sha256=81PNj202WO69bZXkSakWjiBMohG9u0D_7WsDr8aRXTk,9337
|
647
647
|
odoo/addons/openupgrade_scripts/scripts/website_sale_autocomplete/16.0.1.0/upgrade_analysis.txt,sha256=WoSUlwN4UAdoZfohAjNdArdpNBRDyydDCQpK53NIZMg,436
|
@@ -673,7 +673,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/16.0.1.0/upgrade_analysi
|
|
673
673
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
674
674
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
675
675
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=IOWtZdzr_jN_Dja8HYIfzIxrO8NE5pFgazKJtPsLKw0,12678
|
676
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
677
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
678
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
679
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
676
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info/METADATA,sha256=KOcB8Dv8ZJl8bi1l7KVn563oaiRCM1booVMKPIaCuD0,3810
|
677
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
678
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
679
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.219.dist-info/RECORD,,
|
File without changes
|