odoo-addon-openupgrade-scripts 16.0.1.0.3.172__py3-none-any.whl → 16.0.1.0.3.184__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/scripts/auth_totp_mail/16.0.1.0/post-migration.py +11 -0
- odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/pre-migration.py +52 -0
- odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/upgrade_analysis_work.txt +20 -0
- odoo/addons/openupgrade_scripts/scripts/website_crm_livechat/16.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/website_event_sale/16.0.1.0/upgrade_analysis_work.txt +8 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/noupdate_changes.xml +2 -1
- odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/post-migration.py +23 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/pre-migration.py +49 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/upgrade_analysis_work.txt +143 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/16.0.1.0/upgrade_analysis_work.txt +8 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.172.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.172.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info}/RECORD +14 -5
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.172.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.172.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
# Copyright 2024 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
@openupgrade.migrate()
|
7
|
+
def migrate(env, version):
|
8
|
+
openupgrade.load_data(env.cr, "auth_totp_mail", "16.0.1.0/noupdate_changes.xml")
|
9
|
+
openupgrade.delete_record_translations(
|
10
|
+
env.cr, "auth_totp_mail", ["mail_template_totp_invite"], ["name", "email_from"]
|
11
|
+
)
|
@@ -0,0 +1,52 @@
|
|
1
|
+
from openupgradelib import openupgrade
|
2
|
+
|
3
|
+
|
4
|
+
def _compute_purchase_order_receipt_status(env):
|
5
|
+
openupgrade.add_fields(
|
6
|
+
env,
|
7
|
+
[
|
8
|
+
(
|
9
|
+
"receipt_status",
|
10
|
+
"purchase.order",
|
11
|
+
"purchase_order",
|
12
|
+
"selection",
|
13
|
+
"character varying",
|
14
|
+
"purchase_stock",
|
15
|
+
False,
|
16
|
+
),
|
17
|
+
],
|
18
|
+
)
|
19
|
+
openupgrade.logged_query(
|
20
|
+
env.cr,
|
21
|
+
"""
|
22
|
+
WITH po_receipt_status as (
|
23
|
+
SELECT rel.purchase_order_id as id,
|
24
|
+
CASE
|
25
|
+
WHEN
|
26
|
+
COUNT(sp.state) FILTER(WHERE sp.state = 'cancel') = COUNT(sp.state)
|
27
|
+
THEN null
|
28
|
+
WHEN
|
29
|
+
COUNT(sp.state) FILTER(WHERE sp.state not in ('done', 'cancel')) = 0
|
30
|
+
THEN 'full'
|
31
|
+
WHEN
|
32
|
+
COUNT(sp.state) FILTER(WHERE sp.state = 'done') > 0
|
33
|
+
THEN 'partial'
|
34
|
+
ELSE 'pending'
|
35
|
+
END as receipt_status
|
36
|
+
FROM stock_picking as sp
|
37
|
+
JOIN purchase_order_stock_picking_rel as rel
|
38
|
+
ON rel.stock_picking_id = sp.id
|
39
|
+
GROUP BY 1
|
40
|
+
ORDER BY 1
|
41
|
+
)
|
42
|
+
UPDATE purchase_order as po
|
43
|
+
SET receipt_status = po_receipt_status.receipt_status
|
44
|
+
FROM po_receipt_status
|
45
|
+
WHERE po_receipt_status.id = po.id;
|
46
|
+
""",
|
47
|
+
)
|
48
|
+
|
49
|
+
|
50
|
+
@openupgrade.migrate()
|
51
|
+
def migrate(env, version):
|
52
|
+
_compute_purchase_order_receipt_status(env)
|
@@ -0,0 +1,20 @@
|
|
1
|
+
'---Models in module 'purchase_stock'---
|
2
|
+
---Fields in module 'purchase_stock'---
|
3
|
+
purchase_stock / purchase.order / dest_address_id (False) : NEW mode: modify, hasdefault: compute
|
4
|
+
purchase_stock / purchase.order / incoterm_location (char) : NEW
|
5
|
+
# NOTHING TO DO
|
6
|
+
|
7
|
+
purchase_stock / purchase.order / receipt_status (selection) : NEW selection_keys: ['full', 'partial', 'pending'], isfunction: function, stored
|
8
|
+
# DONE: pre-migration: create column and fill values
|
9
|
+
|
10
|
+
purchase_stock / stock.warehouse.orderpoint / purchase_visibility_days (float): NEW hasdefault: default
|
11
|
+
# NOTHING TO DO
|
12
|
+
|
13
|
+
---XML records in module 'purchase_stock'---
|
14
|
+
NEW ir.ui.view: purchase_stock.purchase_order_view_tree_inherit
|
15
|
+
DEL ir.ui.view: purchase_stock.product_category_view_form
|
16
|
+
# NOTHING TO DO: noupdate="0" records
|
17
|
+
|
18
|
+
DEL stock.location.route: purchase_stock.route_warehouse0_buy (noupdate)
|
19
|
+
NEW stock.route: purchase_stock.route_warehouse0_buy (noupdate)
|
20
|
+
# NOTHING TO DO: handle in 'stock' module
|
@@ -0,0 +1,8 @@
|
|
1
|
+
---Models in module 'website_event_sale'---
|
2
|
+
---Fields in module 'website_event_sale'---
|
3
|
+
---XML records in module 'website_event_sale'---
|
4
|
+
DEL ir.model.access: website_event_sale.access_event_event_ticket
|
5
|
+
NEW ir.ui.view: website_event_sale.event_confirmation
|
6
|
+
NEW ir.ui.view: website_event_sale.event_sale_report_view_search
|
7
|
+
|
8
|
+
# NOTHING TO DO
|
@@ -38,6 +38,7 @@
|
|
38
38
|
<field name="name">Ecommerce: Cart Recovery</field>
|
39
39
|
<field name="description">If the setting is set, sent to authenticated visitors who abandoned their cart</field>
|
40
40
|
</record>
|
41
|
+
<!-- Keep the ribbons as they were customized in v15
|
41
42
|
<record id="new_ribbon" model="product.ribbon">
|
42
43
|
<field name="html_class">text-bg-primary o_ribbon_left</field>
|
43
44
|
</record>
|
@@ -52,5 +53,5 @@
|
|
52
53
|
</record>
|
53
54
|
<record id="sold_out_ribbon" model="product.ribbon">
|
54
55
|
<field name="html_class">text-bg-danger o_ribbon_left</field>
|
55
|
-
</record>
|
56
|
+
</record> -->
|
56
57
|
</odoo>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Copyright 2024 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _convert_add_to_cart_action(env):
|
7
|
+
"""Old boolean is now a selection. Let's convert it for those websites not matching
|
8
|
+
the default value.
|
9
|
+
"""
|
10
|
+
openupgrade.logged_query(
|
11
|
+
env.cr,
|
12
|
+
"UPDATE website SET add_to_cart_action = 'go_to_cart' "
|
13
|
+
"WHERE NOT cart_add_on_page",
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
@openupgrade.migrate()
|
18
|
+
def migrate(env, version):
|
19
|
+
_convert_add_to_cart_action(env)
|
20
|
+
openupgrade.load_data(env.cr, "website_sale", "16.0.1.1/noupdate_changes.xml")
|
21
|
+
openupgrade.delete_record_translations(
|
22
|
+
env.cr, "website_sale", ["mail_template_sale_cart_recovery"]
|
23
|
+
)
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# Copyright 2024 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
_fields_renames = [
|
6
|
+
(
|
7
|
+
"res.company",
|
8
|
+
"res_company",
|
9
|
+
"website_sale_onboarding_payment_acquirer_state",
|
10
|
+
"website_sale_onboarding_payment_provider_state",
|
11
|
+
),
|
12
|
+
]
|
13
|
+
_xmlid_renames = [
|
14
|
+
(
|
15
|
+
"website_sale_stock_wishlist.ir_cron_send_availability_email",
|
16
|
+
"website_sale.ir_cron_send_availability_email",
|
17
|
+
)
|
18
|
+
]
|
19
|
+
_not_noupdate_xml_ids = [
|
20
|
+
"s_dynamic_snippet_products_000_scss",
|
21
|
+
"dynamic_filter_template_product_product_add_to_cart",
|
22
|
+
"dynamic_filter_template_product_product_banner",
|
23
|
+
"dynamic_filter_template_product_product_borderless_1",
|
24
|
+
"dynamic_filter_template_product_product_borderless_2",
|
25
|
+
"dynamic_filter_template_product_product_centered",
|
26
|
+
"dynamic_filter_template_product_product_horizontal_card",
|
27
|
+
"dynamic_filter_template_product_product_mini_image",
|
28
|
+
"dynamic_filter_template_product_product_mini_name",
|
29
|
+
"dynamic_filter_template_product_product_mini_price",
|
30
|
+
"dynamic_filter_template_product_product_view_detail",
|
31
|
+
"price_dynamic_filter_template_product_product",
|
32
|
+
]
|
33
|
+
|
34
|
+
|
35
|
+
def _remove_incorrect_website_sale_extra_field_records(env):
|
36
|
+
openupgrade.logged_query(
|
37
|
+
env.cr,
|
38
|
+
"DELETE FROM website_sale_extra_field WHERE field_id IS NULL",
|
39
|
+
)
|
40
|
+
|
41
|
+
|
42
|
+
@openupgrade.migrate()
|
43
|
+
def migrate(env, version):
|
44
|
+
openupgrade.rename_fields(env, _fields_renames)
|
45
|
+
openupgrade.rename_xmlids(env.cr, _xmlid_renames)
|
46
|
+
openupgrade.set_xml_ids_noupdate_value(
|
47
|
+
env, "website_sale", _not_noupdate_xml_ids, False
|
48
|
+
)
|
49
|
+
_remove_incorrect_website_sale_extra_field_records(env)
|
@@ -0,0 +1,143 @@
|
|
1
|
+
---Models in module 'website_sale'---
|
2
|
+
obsolete model website.sale.payment.acquirer.onboarding.wizard [transient]
|
3
|
+
# NOTHING TO DO: transient model
|
4
|
+
|
5
|
+
---Fields in module 'website_sale'---
|
6
|
+
website_sale / product.ribbon / product_tag_ids (one2many) : NEW relation: product.tag
|
7
|
+
website_sale / product.tag / ribbon_id (many2one) : NEW relation: product.ribbon
|
8
|
+
# NOTHING TO DO: New feature for linking a ribbon with a product tag
|
9
|
+
|
10
|
+
website_sale / product.tag / website_id (many2one) : NEW relation: website
|
11
|
+
# NOTHING TO DO: New feature of tags now being website specific
|
12
|
+
|
13
|
+
website_sale / product.template / compare_list_price (float) : NEW
|
14
|
+
# NOTHING TO DO: New feature for showing a strike-through price in the e-commerce comparison
|
15
|
+
|
16
|
+
website_sale / res.company / website_sale_onboarding_payment_acquirer_state (selection): DEL selection_keys: ['done', 'just_done', 'not_done']
|
17
|
+
website_sale / res.company / website_sale_onboarding_payment_provider_state (selection): NEW selection_keys: ['done', 'just_done', 'not_done'], hasdefault: default
|
18
|
+
# DONE: pre-migration: Field renamed
|
19
|
+
|
20
|
+
website_sale / sale.order / shop_warning (char) : NEW
|
21
|
+
website_sale / sale.order.line / shop_warning (char) : NEW
|
22
|
+
# NOTHING TO DO: New feature for showing alerts on the e-commerce cart
|
23
|
+
|
24
|
+
website_sale / website / account_on_checkout (selection): NEW selection_keys: ['disabled', 'mandatory', 'optional'], hasdefault: default
|
25
|
+
# NOTHING TO DO: New feature for requiring to sign-in to checkout. Default value `optional` preserves v15 behavior.
|
26
|
+
|
27
|
+
website_sale / website / add_to_cart_action (selection): NEW selection_keys: ['go_to_cart', 'stay'], hasdefault: default
|
28
|
+
website_sale / website / cart_add_on_page (boolean) : DEL
|
29
|
+
# DONE: post-migration: Convert `cart_add_on_page` to `add_to_cart_action`
|
30
|
+
|
31
|
+
website_sale / website / contact_us_button_url (char) : NEW hasdefault: default
|
32
|
+
# NOTHING TO DO: New feature for "Contact Us" target URL on product page with the default the same as in v15.
|
33
|
+
|
34
|
+
website_sale / website / enabled_portal_reorder_button (boolean): NEW
|
35
|
+
# NOTHING TO DO: New feature for ordering again a sales order from the portal. Default False is preserving v15 behavior.
|
36
|
+
|
37
|
+
website_sale / website / prevent_zero_price_sale (boolean): NEW
|
38
|
+
website_sale / website / prevent_zero_price_sale_text (char): NEW hasdefault: default
|
39
|
+
# NOTHING TO DO: New feature for preventing to add products to cart with the default False preserving previous behavior.
|
40
|
+
|
41
|
+
website_sale / website / product_page_grid_columns (integer): NEW hasdefault: default
|
42
|
+
website_sale / website / product_page_image_layout (selection): NEW required, selection_keys: ['carousel', 'grid'], hasdefault: default
|
43
|
+
website_sale / website / product_page_image_spacing (selection): NEW required, selection_keys: ['big', 'medium', 'none', 'small'], hasdefault: default
|
44
|
+
website_sale / website / product_page_image_width (selection): NEW required, selection_keys: ['100_pc', '50_pc', '66_pc', 'none'], hasdefault: default
|
45
|
+
# NOTHING TO DO: New features for adjusting product images in the e-commerce product page with sane defaults preserving behavior.
|
46
|
+
|
47
|
+
website_sale / website / send_abandoned_cart_email (boolean): NEW
|
48
|
+
# NOTHING TO DO: New feature for sending automatically the lost cart mail. Default value `False` is preserving v15 behavior.
|
49
|
+
|
50
|
+
website_sale / website / shop_default_sort (selection) : NEW required, selection_keys: function, hasdefault: default
|
51
|
+
# NOTHING TO DO: New feature for default sorting of the products in the e-commerce. The default seems to be the same as in v15.
|
52
|
+
|
53
|
+
website_sale / website.sale.extra.field / field_id (many2one) : now required
|
54
|
+
# DONE: pre-migration: Delete offending records
|
55
|
+
|
56
|
+
---XML records in module 'website_sale'---
|
57
|
+
NEW ir.actions.act_window: website_sale.action_product_pages_list
|
58
|
+
NEW ir.actions.act_window: website_sale.product_product_action_add
|
59
|
+
NEW ir.actions.act_window: website_sale.product_public_tags_action
|
60
|
+
DEL ir.actions.act_window: website_sale.action_open_website_sale_onboarding_payment_acquirer_wizard
|
61
|
+
NEW ir.actions.server: website_sale.dynamic_snippet_alternative_products
|
62
|
+
NEW ir.asset: website_sale.s_add_to_cart_000_js
|
63
|
+
NEW ir.model.access: website_sale.access_ecom_extra_fields_restricted_editor
|
64
|
+
NEW ir.model.access: website_sale.access_product_image_restricted_editor
|
65
|
+
NEW ir.model.access: website_sale.access_product_tag_public
|
66
|
+
DEL ir.model.access: website_sale.access_ecom_extra_fields_publisher
|
67
|
+
DEL ir.model.access: website_sale.access_product_image_publisher
|
68
|
+
DEL ir.model.access: website_sale.access_website_sale_payment_acquirer_onboarding_wizard
|
69
|
+
NEW ir.ui.menu: website_sale.menu_ecommerce
|
70
|
+
NEW ir.ui.menu: website_sale.menu_ecommerce_payment_providers
|
71
|
+
NEW ir.ui.menu: website_sale.menu_product_pages
|
72
|
+
NEW ir.ui.menu: website_sale.product_catalog_product_tags
|
73
|
+
DEL ir.ui.menu: website_sale.menu_ecommerce_payment_acquirers
|
74
|
+
DEL ir.ui.menu: website_sale.menu_product_settings
|
75
|
+
DEL ir.ui.menu: website_sale.product_catalog_variants
|
76
|
+
DEL ir.ui.menu: website_sale.website_base_unit_menu
|
77
|
+
NEW ir.ui.view: website_sale.alternative_products
|
78
|
+
NEW ir.ui.view: website_sale.dynamic_filter_template_product_product_card_group
|
79
|
+
NEW ir.ui.view: website_sale.dynamic_filter_template_product_product_horizontal_card_2
|
80
|
+
NEW ir.ui.view: website_sale.filmstrip_categories
|
81
|
+
NEW ir.ui.view: website_sale.o_wsale_offcanvas
|
82
|
+
NEW ir.ui.view: website_sale.product_category_extra_link
|
83
|
+
NEW ir.ui.view: website_sale.product_pages_kanban_view
|
84
|
+
NEW ir.ui.view: website_sale.product_pages_tree_view
|
85
|
+
NEW ir.ui.view: website_sale.product_picture_magnify_both
|
86
|
+
NEW ir.ui.view: website_sale.product_picture_magnify_click
|
87
|
+
NEW ir.ui.view: website_sale.product_picture_magnify_hover
|
88
|
+
NEW ir.ui.view: website_sale.product_product_view_form_add
|
89
|
+
NEW ir.ui.view: website_sale.product_tag_form_view_inherit_website_sale
|
90
|
+
NEW ir.ui.view: website_sale.product_tag_tree_view_inherit_website_sale
|
91
|
+
NEW ir.ui.view: website_sale.products_attributes_top
|
92
|
+
NEW ir.ui.view: website_sale.products_categories_list
|
93
|
+
NEW ir.ui.view: website_sale.products_categories_top
|
94
|
+
NEW ir.ui.view: website_sale.products_design_card
|
95
|
+
NEW ir.ui.view: website_sale.products_design_grid
|
96
|
+
NEW ir.ui.view: website_sale.products_design_thumbs
|
97
|
+
NEW ir.ui.view: website_sale.products_fiscal_position
|
98
|
+
NEW ir.ui.view: website_sale.products_thumb_2_3
|
99
|
+
NEW ir.ui.view: website_sale.products_thumb_4_3
|
100
|
+
NEW ir.ui.view: website_sale.products_thumb_4_5
|
101
|
+
NEW ir.ui.view: website_sale.products_thumb_cover
|
102
|
+
NEW ir.ui.view: website_sale.res_config_settings_view_form_inherit_sale
|
103
|
+
NEW ir.ui.view: website_sale.s_add_to_cart
|
104
|
+
NEW ir.ui.view: website_sale.s_add_to_cart_options
|
105
|
+
NEW ir.ui.view: website_sale.sale_order_re_order_btn
|
106
|
+
NEW ir.ui.view: website_sale.shop_product_grid
|
107
|
+
NEW ir.ui.view: website_sale.shop_product_image
|
108
|
+
NEW ir.ui.view: website_sale.shop_product_images
|
109
|
+
NEW ir.ui.view: website_sale.snippets_options_web_editor
|
110
|
+
NEW ir.ui.view: website_sale.tax_indication
|
111
|
+
DEL ir.ui.view: website_sale.product_edit_options
|
112
|
+
DEL ir.ui.view: website_sale.product_picture_magnify
|
113
|
+
DEL ir.ui.view: website_sale.product_picture_magnify_auto
|
114
|
+
DEL ir.ui.view: website_sale.products_images_full
|
115
|
+
DEL ir.ui.view: website_sale.recommended_products
|
116
|
+
DEL ir.ui.view: website_sale.search_count_box
|
117
|
+
DEL ir.ui.view: website_sale.user_navbar_inherit_website_sale
|
118
|
+
DEL ir.ui.view: website_sale.website_sale_onboarding_payment_acquirer_step
|
119
|
+
NEW website.snippet.filter: website_sale.dynamic_filter_cross_selling_alternative_products
|
120
|
+
# NOTHING TO DO: noupdate=0 records
|
121
|
+
|
122
|
+
NEW ir.cron: website_sale.ir_cron_send_availability_email [renamed from website_sale_stock_wishlist module]
|
123
|
+
# DONE: pre-migration: XML-ID renamed
|
124
|
+
|
125
|
+
DEL ir.ui.menu: website_sale.menu_reporting [renamed to website module]
|
126
|
+
# NOTHING TO DO: Already renamed in website scripts
|
127
|
+
|
128
|
+
ir.asset: website_sale.s_dynamic_snippet_products_000_scss (noupdate switched)
|
129
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_add_to_cart (noupdate switched)
|
130
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_banner (noupdate switched)
|
131
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_borderless_1 (noupdate switched)
|
132
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_borderless_2 (noupdate switched)
|
133
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_centered (noupdate switched)
|
134
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_horizontal_card (noupdate switched)
|
135
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_mini_image (noupdate switched)
|
136
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_mini_name (noupdate switched)
|
137
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_mini_price (noupdate switched)
|
138
|
+
ir.ui.view: website_sale.dynamic_filter_template_product_product_view_detail (noupdate switched)
|
139
|
+
ir.ui.view: website_sale.price_dynamic_filter_template_product_product (noupdate switched)
|
140
|
+
# DONE: pre-migration: noupdate switched
|
141
|
+
|
142
|
+
NEW res.groups: website_sale.group_product_price_comparison (noupdate)
|
143
|
+
# NOTHING TO DO: New record
|
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/16.0.1.0/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
---Models in module 'website_sale_comparison'---
|
2
|
+
---Fields in module 'website_sale_comparison'---
|
3
|
+
---XML records in module 'website_sale_comparison'---
|
4
|
+
NEW ir.ui.view: website_sale_comparison.snippet_options
|
5
|
+
DEL ir.ui.view: website_sale_comparison.add_to_compare_button
|
6
|
+
DEL ir.ui.view: website_sale_comparison.product_add_to_compare
|
7
|
+
DEL ir.ui.view: website_sale_comparison.recommended_product
|
8
|
+
# Nothing to do.
|
@@ -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.184
|
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)
|
@@ -39,6 +39,7 @@ odoo/addons/openupgrade_scripts/scripts/auth_signup/16.0.1.0/upgrade_analysis.tx
|
|
39
39
|
odoo/addons/openupgrade_scripts/scripts/auth_signup/16.0.1.0/upgrade_analysis_work.txt,sha256=lSyFfjZKaHMS-LUFW9AgUyixgWH90gWXNYogrxqXrtI,177
|
40
40
|
odoo/addons/openupgrade_scripts/scripts/auth_totp/16.0.1.0/upgrade_analysis.txt,sha256=kM7HlwgVRwa67MFDCi_fRAf8vNOzdUTK-xEHI5lkajo,150
|
41
41
|
odoo/addons/openupgrade_scripts/scripts/auth_totp_mail/16.0.1.0/noupdate_changes.xml,sha256=FLcJRqhgeciIFOkgidi9YktPx44BHw0npIuH5iV1b-8,289
|
42
|
+
odoo/addons/openupgrade_scripts/scripts/auth_totp_mail/16.0.1.0/post-migration.py,sha256=N5yj4T4VWVBHtkH9jLZBJWf_azCh2iXOMvlNOToA9gw,427
|
42
43
|
odoo/addons/openupgrade_scripts/scripts/auth_totp_mail_enforce/16.0.1.0/noupdate_changes.xml,sha256=fjw99YhwXNIN2OQoyZ1uplVJtAS928QSUiflpXuJvTU,188
|
43
44
|
odoo/addons/openupgrade_scripts/scripts/auth_totp_mail_enforce/16.0.1.0/upgrade_analysis.txt,sha256=FMeF8St_Piud_mwB9YE4jRpVTa--NsX0-TgUzamELME,189
|
44
45
|
odoo/addons/openupgrade_scripts/scripts/barcodes/16.0.2.0/upgrade_analysis.txt,sha256=aVHHJpenY6xHfF_YxGygdm9MRLo165JzMd-zXtDl1nE,147
|
@@ -472,7 +473,9 @@ odoo/addons/openupgrade_scripts/scripts/purchase_requisition/16.0.0.1/pre-migrat
|
|
472
473
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/16.0.0.1/upgrade_analysis.txt,sha256=hu4bNoVAuOmaDuK0IQDQV5y3J0lg4r58gCoH6fYrLEM,2295
|
473
474
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/16.0.0.1/upgrade_analysis_work.txt,sha256=4IENy2UZb-C4xYd2ZC_NGRLk7ecx3AiiXYvQ48k5tkU,2577
|
474
475
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition_stock/16.0.1.2/upgrade_analysis.txt,sha256=dmjMOLEfLnKWEfqynh-dOtbg8CmU1sLEE4gsZcsZ-ks,491
|
476
|
+
odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/pre-migration.py,sha256=gDGPEvpqn2TY0U1qKin7w5JY2p6CokhTIq3tk-ddWfM,1539
|
475
477
|
odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/upgrade_analysis.txt,sha256=ubjqaHWBjLwCd33dZaMpR37J5PVIXWCABnw6dpWjALY,702
|
478
|
+
odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/upgrade_analysis_work.txt,sha256=-xhjYmpVgBLSUdj8kMF0o65-rIieuWhbkrSv5Sqw4GM,1009
|
476
479
|
odoo/addons/openupgrade_scripts/scripts/rating/16.0.1.1/upgrade_analysis.txt,sha256=-ZAJH_mAfHTP7Gmv3yLCQwouU3ned62ooLXKVJnTaAo,896
|
477
480
|
odoo/addons/openupgrade_scripts/scripts/rating/16.0.1.1/upgrade_analysis_work.txt,sha256=1-Ybtqr5hmRKjrarO0YBauJUOoLo-HT8Ls7unMgWDiE,1064
|
478
481
|
odoo/addons/openupgrade_scripts/scripts/repair/16.0.1.0/noupdate_changes.xml,sha256=-RBQqbmocfx0FS_SquEbsoJ7m2P4t5Hb_WUkronWwY0,288
|
@@ -573,6 +576,7 @@ odoo/addons/openupgrade_scripts/scripts/website_crm/16.0.2.1/upgrade_analysis.tx
|
|
573
576
|
odoo/addons/openupgrade_scripts/scripts/website_crm/16.0.2.1/upgrade_analysis_work.txt,sha256=RdroEfG34q14pneIpwMdGAz74Yy9ga0_UFjY0BIW7Uo,257
|
574
577
|
odoo/addons/openupgrade_scripts/scripts/website_crm_iap_reveal/16.0.1.1/upgrade_analysis.txt,sha256=3jpGlhw5km8C-q4hWNgekXRFUTgwbx-avTTJfLKpSJY,370
|
575
578
|
odoo/addons/openupgrade_scripts/scripts/website_crm_livechat/16.0.1.0/upgrade_analysis.txt,sha256=GAii12o9_VRFYIAM7-IkJjfOqnyuKJAPRzMd6aH1UEI,183
|
579
|
+
odoo/addons/openupgrade_scripts/scripts/website_crm_livechat/16.0.1.0/upgrade_analysis_work.txt,sha256=jNg278xXmIYjtIwHGDTwbA5KHL8DDbOPDpb9SGcYj6E,197
|
576
580
|
odoo/addons/openupgrade_scripts/scripts/website_crm_partner_assign/16.0.1.2/upgrade_analysis.txt,sha256=a7w8kUrZY8R2RkXrUrWsXqu4wo-Do7uIMncF3Pk5JL0,1534
|
577
581
|
odoo/addons/openupgrade_scripts/scripts/website_customer/16.0.1.0/upgrade_analysis.txt,sha256=wGgdxCVu84R27uHHQRgc0sp94FQmaVUek6ztrYpzw6c,234
|
578
582
|
odoo/addons/openupgrade_scripts/scripts/website_event/16.0.1.4/upgrade_analysis.txt,sha256=WIFEp5oIVDcds5xQA7rRU7O-M51arwo9QBbPy9vpci8,1522
|
@@ -585,6 +589,7 @@ odoo/addons/openupgrade_scripts/scripts/website_event_jitsi/16.0.1.0/upgrade_ana
|
|
585
589
|
odoo/addons/openupgrade_scripts/scripts/website_event_meet/16.0.1.0/upgrade_analysis.txt,sha256=4SKNnHUo2WLtAZYZXlQI81grCcCF6AiHCLmETcOtjes,507
|
586
590
|
odoo/addons/openupgrade_scripts/scripts/website_event_questions/16.0.1.2/upgrade_analysis.txt,sha256=rTx_ZsCPRMLiah1ugyrleFeKW7WJEjrgnkkOV9qs7AM,310
|
587
591
|
odoo/addons/openupgrade_scripts/scripts/website_event_sale/16.0.1.0/upgrade_analysis.txt,sha256=95AxCK6IhkFRCYEo6sVeZUaZErK8tdjh5JQ1uKFOEOQ,322
|
592
|
+
odoo/addons/openupgrade_scripts/scripts/website_event_sale/16.0.1.0/upgrade_analysis_work.txt,sha256=phoCb5v3Ow-k_0ByUfpuoyJhpVYH-rNCWR3M3wym5eU,339
|
588
593
|
odoo/addons/openupgrade_scripts/scripts/website_event_track/16.0.1.3/noupdate_changes.xml,sha256=_dZ2_vRAtqoqS014ct6-BAarvp2B5vR7F7_hiWkHK0w,325
|
589
594
|
odoo/addons/openupgrade_scripts/scripts/website_event_track/16.0.1.3/upgrade_analysis.txt,sha256=Jr_Ms0a9UJkqjn9v6QAeM7BDUttdA0bZEHQQbWUc0jU,927
|
590
595
|
odoo/addons/openupgrade_scripts/scripts/website_event_track_live/16.0.1.0/upgrade_analysis.txt,sha256=nkw3qu5MZkHIEhC1Ysc3gid3fMt8wW0fmhDZs9h8pck,195
|
@@ -613,10 +618,14 @@ odoo/addons/openupgrade_scripts/scripts/website_profile/16.0.1.0/noupdate_change
|
|
613
618
|
odoo/addons/openupgrade_scripts/scripts/website_profile/16.0.1.0/post-migration.py,sha256=kRk_c_9HO7NOsHn8xTe_Zhu5a8DACnQRe8zb0A91x0k,555
|
614
619
|
odoo/addons/openupgrade_scripts/scripts/website_profile/16.0.1.0/upgrade_analysis.txt,sha256=78N1ltWRqtFW1R8jR3V-jFXYuMiYRRHy4Uj2gq5lLcI,300
|
615
620
|
odoo/addons/openupgrade_scripts/scripts/website_profile/16.0.1.0/upgrade_analysis_work.txt,sha256=WBihsSNr9k35K_7xoXbiHmQ3Bq_-Ji1aMfCw9K0n8NU,343
|
616
|
-
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/noupdate_changes.xml,sha256=
|
621
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/noupdate_changes.xml,sha256=nfdIYF9rDxL7mbrU-1rQSinpSkxqmAi6WfmDwGWYfK0,3955
|
622
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/post-migration.py,sha256=-c9-4Wzgb_HWaPCT9QdVxjinRtVyscYf4Cj1PFuIcUc,756
|
623
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/pre-migration.py,sha256=sLscIuOFhp9wC5zWd40ePlsAUZZRqaNazFByhFMVHGc,1730
|
617
624
|
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/upgrade_analysis.txt,sha256=PTjOf2WScHZfJVbgKmBDBWTFRkHclbfqkdS86Cvo7Vk,7782
|
625
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale/16.0.1.1/upgrade_analysis_work.txt,sha256=81PNj202WO69bZXkSakWjiBMohG9u0D_7WsDr8aRXTk,9337
|
618
626
|
odoo/addons/openupgrade_scripts/scripts/website_sale_autocomplete/16.0.1.0/upgrade_analysis.txt,sha256=WoSUlwN4UAdoZfohAjNdArdpNBRDyydDCQpK53NIZMg,436
|
619
627
|
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/16.0.1.0/upgrade_analysis.txt,sha256=GbaGMWkY1ZxaQ0L1nUb_LzOFrMALn8fYYBLgMQ_Zl7Y,330
|
628
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/16.0.1.0/upgrade_analysis_work.txt,sha256=OfXTn6rnFuOlRjIGn4a1W3pTDF-d23eWYAA599Da-bo,410
|
620
629
|
odoo/addons/openupgrade_scripts/scripts/website_sale_delivery/16.0.1.0/upgrade_analysis.txt,sha256=yYL2gIgN2tVOGbUJmQmy2whpvKNggTmij4ZLDEVozvg,186
|
621
630
|
odoo/addons/openupgrade_scripts/scripts/website_sale_delivery_mondialrelay/16.0.0.1/upgrade_analysis.txt,sha256=BCxNxJ48VdYt5bV337TfePuo0MN-uhhRUqYwC-bPp0c,433
|
622
631
|
odoo/addons/openupgrade_scripts/scripts/website_sale_digital/16.0.0.1/upgrade_analysis.txt,sha256=ow2g8lrO5k51Ec1gCFTG5_8D9pnfJAzxeVyk5au2qiA,183
|
@@ -639,7 +648,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/16.0.1.0/upgrade_analysi
|
|
639
648
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
640
649
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
641
650
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=IOWtZdzr_jN_Dja8HYIfzIxrO8NE5pFgazKJtPsLKw0,12678
|
642
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
643
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
644
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
645
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
651
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info/METADATA,sha256=0zb2K8CiuikArl9_3ynLwM6PhCda40q3NKmARcPeYgk,3810
|
652
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
653
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
654
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.184.dist-info/RECORD,,
|
File without changes
|