odoo-addon-openupgrade-scripts 17.0.1.0.1.235__py3-none-any.whl → 17.0.1.0.1.247__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.
Files changed (17) hide show
  1. odoo/addons/openupgrade_scripts/apriori.py +2 -0
  2. odoo/addons/openupgrade_scripts/scripts/hr_attendance/17.0.2.0/pre-migration.py +36 -0
  3. odoo/addons/openupgrade_scripts/scripts/l10n_es/17.0.5.4/pre-migration.py +66 -0
  4. odoo/addons/openupgrade_scripts/scripts/l10n_es/17.0.5.4/upgrade_analysis_work.txt +3776 -0
  5. odoo/addons/openupgrade_scripts/scripts/membership/17.0.1.0/pre-migration.py +15 -0
  6. odoo/addons/openupgrade_scripts/scripts/membership/17.0.1.0/upgrade_analysis_work.txt +9 -0
  7. odoo/addons/openupgrade_scripts/scripts/mrp/17.0.2.0/post-migration.py +35 -0
  8. odoo/addons/openupgrade_scripts/scripts/mrp/17.0.2.0/pre-migration.py +58 -0
  9. odoo/addons/openupgrade_scripts/scripts/mrp/17.0.2.0/upgrade_analysis_work.txt +101 -0
  10. odoo/addons/openupgrade_scripts/scripts/mrp_landed_costs/17.0.1.0/upgrade_analysis_work.txt +5 -0
  11. odoo/addons/openupgrade_scripts/scripts/sale_mrp/17.0.1.0/upgrade_analysis_work.txt +5 -0
  12. odoo/addons/openupgrade_scripts/scripts/website_sale/17.0.1.1/post-migration.py +16 -0
  13. odoo/addons/openupgrade_scripts/scripts/website_sale/17.0.1.1/upgrade_analysis_work.txt +149 -0
  14. {odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info}/METADATA +1 -1
  15. {odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info}/RECORD +17 -6
  16. {odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info}/WHEEL +0 -0
  17. {odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,15 @@
1
+ # Copyright 2025 ForgeFlow S.L. (https://www.forgeflow.com)
2
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
+ from openupgradelib import openupgrade
4
+
5
+ _xmlid_renames = [
6
+ (
7
+ "membership.access_membership_membership_line",
8
+ "membership.access_membership_membership_line_employee",
9
+ )
10
+ ]
11
+
12
+
13
+ @openupgrade.migrate()
14
+ def migrate(env, version):
15
+ openupgrade.rename_xmlids(env.cr, _xmlid_renames)
@@ -0,0 +1,9 @@
1
+ ---Models in module 'membership'---
2
+ ---Fields in module 'membership'---
3
+ ---XML records in module 'membership'---
4
+ NEW ir.model.access: membership.access_membership_membership_line_employee
5
+ DEL ir.model.access: membership.access_membership_membership_line
6
+ # DONE: pre-migration: renamed xmlid
7
+
8
+ DEL ir.ui.menu: association.menu_event_config
9
+ # NOTHING TO DO
@@ -0,0 +1,35 @@
1
+ # Copyright 2025 Tecnativa - Pedro M. Baeza
2
+ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
3
+
4
+ from openupgradelib import openupgrade
5
+
6
+
7
+ def _transfer_delays_from_product_to_bom(env):
8
+ """As the product template is required in BoMs, a simple cross-link update is
9
+ enough.
10
+ """
11
+ openupgrade.logged_query(
12
+ env.cr,
13
+ """
14
+ UPDATE mrp_bom mb
15
+ SET days_to_prepare_mo = pt.days_to_prepare_mo
16
+ FROM product_template pt
17
+ WHERE pt.id = mb.product_tmpl_id
18
+ AND pt.days_to_prepare_mo <> 0
19
+ """,
20
+ )
21
+ openupgrade.logged_query(
22
+ env.cr,
23
+ """
24
+ UPDATE mrp_bom mb
25
+ SET produce_delay = pt.produce_delay
26
+ FROM product_template pt
27
+ WHERE pt.id = mb.product_tmpl_id
28
+ AND pt.produce_delay <> 0
29
+ """,
30
+ )
31
+
32
+
33
+ @openupgrade.migrate()
34
+ def migrate(env, version):
35
+ _transfer_delays_from_product_to_bom(env)
@@ -0,0 +1,58 @@
1
+ # Copyright 2025 Tecnativa - Pedro M. Baeza
2
+ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
3
+
4
+ from openupgradelib import openupgrade
5
+
6
+
7
+ def _normalize_start_end_dates(env):
8
+ openupgrade.logged_query(
9
+ env.cr,
10
+ """
11
+ UPDATE mrp_production
12
+ SET date_start = COALESCE(date_planned_start, create_date)
13
+ WHERE date_start IS NULL
14
+ """,
15
+ )
16
+ openupgrade.logged_query(
17
+ env.cr,
18
+ """
19
+ UPDATE mrp_production
20
+ SET date_finished = date_planned_finished
21
+ WHERE date_finished IS NULL
22
+ """,
23
+ )
24
+ openupgrade.logged_query(
25
+ env.cr,
26
+ """
27
+ UPDATE mrp_workorder
28
+ SET date_start = date_planned_start
29
+ WHERE date_start IS NULL AND date_planned_start IS NOT NULL
30
+ """,
31
+ )
32
+ openupgrade.logged_query(
33
+ env.cr,
34
+ """
35
+ UPDATE mrp_workorder
36
+ SET date_finished = date_planned_finished
37
+ WHERE date_finished IS NULL
38
+ """,
39
+ )
40
+
41
+
42
+ def _prefill_mrp_workorder_barcode(env):
43
+ openupgrade.logged_query(env.cr, "ALTER TABLE mrp_workorder ADD barcode VARCHAR")
44
+ openupgrade.logged_query(
45
+ env.cr,
46
+ """
47
+ UPDATE mrp_workorder mw
48
+ SET barcode = mp.name || mw.id::varchar
49
+ FROM mrp_production mp
50
+ WHERE mp.id = mw.production_id
51
+ """,
52
+ )
53
+
54
+
55
+ @openupgrade.migrate()
56
+ def migrate(env, version):
57
+ _normalize_start_end_dates(env)
58
+ _prefill_mrp_workorder_barcode(env)
@@ -0,0 +1,101 @@
1
+ ---Models in module 'mrp'---
2
+ obsolete model mrp.immediate.production [transient]
3
+ obsolete model mrp.immediate.production.line [transient]
4
+ # NOTHING TO DO: Transient models
5
+
6
+ new model report.mrp.report_mo_overview [abstract]
7
+ # NOTHING TO DO: New abstract
8
+
9
+ ---Fields in module 'mrp'---
10
+ mrp / mrp.bom / days_to_prepare_mo (integer) : NEW hasdefault: default
11
+ mrp / mrp.bom / produce_delay (integer) : NEW hasdefault: default
12
+ mrp / product.template / days_to_prepare_mo (float) : DEL
13
+ mrp / product.template / produce_delay (float) : DEL
14
+ # DONE: post-migration: Transfer data from products to BoMs.
15
+
16
+ mrp / mrp.bom / message_main_attachment_id (many2one): DEL relation: ir.attachment
17
+ mrp / mrp.bom / rating_ids (one2many) : NEW relation: rating.rating
18
+ mrp / mrp.production / activity_user_id (many2one) : not related anymore
19
+ mrp / mrp.production / activity_user_id (many2one) : now a function
20
+ mrp / mrp.production / message_main_attachment_id (many2one): DEL relation: ir.attachment
21
+ mrp / mrp.production / rating_ids (one2many) : NEW relation: rating.rating
22
+ mrp / mrp.unbuild / activity_user_id (many2one) : not related anymore
23
+ mrp / mrp.unbuild / activity_user_id (many2one) : now a function
24
+ mrp / mrp.unbuild / message_main_attachment_id (many2one): DEL relation: ir.attachment
25
+ mrp / mrp.unbuild / rating_ids (one2many) : NEW relation: rating.rating
26
+ # NOTHING TO DO: Mixin changes that don't require anything here.
27
+
28
+ mrp / mrp.production / _order : _order is now 'priority desc, date_start asc,id' ('priority desc, date_planned_start asc,id')
29
+ mrp / mrp.production / date_finished (datetime) : now a function
30
+ mrp / mrp.production / date_planned_finished (datetime): DEL
31
+ mrp / mrp.production / date_planned_start (datetime) : DEL required
32
+ mrp / mrp.production / date_start (datetime) : now required
33
+ mrp / mrp.workorder / date_finished (datetime) : now a function
34
+ mrp / mrp.workorder / date_planned_finished (datetime): DEL
35
+ mrp / mrp.workorder / date_planned_start (datetime) : DEL
36
+ mrp / mrp.workorder / date_start (datetime) : now a function
37
+ # DONE: pre-migration: Fill date_start and date_finished with the planned ones when no value. More details at https://github.com/odoo/odoo/commit/d4ed9f8a50fbe5e31bc36bb44dbda24349b66e08
38
+
39
+ mrp / mrp.production / all_move_ids (one2many) : NEW relation: stock.move
40
+ mrp / mrp.production / all_move_raw_ids (one2many) : NEW relation: stock.move
41
+ # NOTHING TO DO: New o2m supporting fields over existing inverse m2o.
42
+
43
+ mrp / mrp.production / components_availability_state (selection): selection_keys is now '['available', 'expected', 'late', 'unavailable']' ('['available', 'expected', 'late']')
44
+ # NOTHING TO DO: Non stored field which adds extra value
45
+
46
+ mrp / mrp.production / is_outdated_bom (boolean) : NEW
47
+ # NOTHING TO DO: New feature to highlight that there have been changes in the related BoM. It's OK to start with all at False.
48
+
49
+ mrp / mrp.production / product_id (many2one) : not a function anymore
50
+ # NOTHING TO DO: Glitch in the analysis. There's no real change
51
+
52
+ mrp / mrp.production / workcenter_id (many2one) : NEW relation: mrp.workcenter
53
+ # NOTHING TO DO: non stored field only used for search in view_mrp_production_filter
54
+
55
+ mrp / mrp.workorder / _order : _order is now 'leave_id, date_start, id' ('id')
56
+ # NOTHING TO DO: New ordering criteria, but it may make more sense
57
+
58
+ mrp / mrp.workorder / barcode (char) : NEW isfunction: function, stored
59
+ # DONE: pre-migration: Pre-created and filled for avoiding ORM
60
+
61
+ mrp / mrp.workorder / finished_lot_id (many2one) : not a function anymore
62
+ mrp / mrp.workorder / finished_lot_id (many2one) : now related
63
+ # NOTHING TO DO: NOTHING TO DO: Not stored.
64
+
65
+ mrp / stock.picking.type / auto_print_done_mrp_lot (boolean): NEW
66
+ mrp / stock.picking.type / auto_print_done_mrp_product_labels (boolean): NEW
67
+ mrp / stock.picking.type / auto_print_done_production_order (boolean): NEW
68
+ mrp / stock.picking.type / auto_print_generated_mrp_lot (boolean): NEW
69
+ mrp / stock.picking.type / auto_print_mrp_reception_report (boolean): NEW
70
+ mrp / stock.picking.type / auto_print_mrp_reception_report_labels (boolean): NEW
71
+ mrp / stock.picking.type / done_mrp_lot_label_to_print (selection): NEW selection_keys: ['pdf', 'zpl'], hasdefault: default
72
+ mrp / stock.picking.type / generated_mrp_lot_label_to_print (selection): NEW selection_keys: ['pdf', 'zpl'], hasdefault: default
73
+ mrp / stock.picking.type / mrp_product_label_to_print (selection): NEW selection_keys: ['pdf', 'zpl'], hasdefault: default
74
+ # NOTHING TO DO: New features for auto-printing. Default falsy value is OK to preserve previous behavior, and to be enable by demand.
75
+
76
+ mrp / stock.scrap / bom_id (many2one) : NEW relation: mrp.bom
77
+ # NOTHING TO DO: New feature to scrap a kit, so existing scraps shouldn't have this filled.
78
+
79
+ ---XML records in module 'mrp'---
80
+ NEW ir.actions.act_window: mrp.action_picking_tree_mrp_operation
81
+ DEL ir.actions.act_window: mrp.mrp_production_report
82
+ NEW ir.actions.client: mrp.action_mrp_display
83
+ NEW ir.actions.client: mrp.action_mrp_display_fullscreen
84
+ NEW ir.actions.client: mrp.action_report_mo_overview
85
+ NEW ir.actions.report: mrp.action_report_mrp_mo_overview
86
+ NEW ir.actions.server: mrp.action_plan_with_components_availability
87
+ DEL ir.model.access: mrp.access_mrp_immediate_production
88
+ DEL ir.model.access: mrp.access_mrp_immediate_production_line
89
+ NEW ir.model.constraint: mrp.constraint_mrp_unbuild_qty_positive
90
+ NEW ir.ui.menu: mrp.mrp_operation_picking
91
+ DEL ir.ui.menu: mrp.menu_mrp_production_report
92
+ NEW ir.ui.view: mrp.mo_overview_byproducts
93
+ NEW ir.ui.view: mrp.mo_overview_components
94
+ NEW ir.ui.view: mrp.mo_overview_content
95
+ NEW ir.ui.view: mrp.mo_overview_line
96
+ NEW ir.ui.view: mrp.mo_overview_operations
97
+ NEW ir.ui.view: mrp.mrp_production_view_activity
98
+ NEW ir.ui.view: mrp.report_mo_overview
99
+ DEL ir.ui.view: mrp.mrp_report_product_product_replenishment
100
+ DEL ir.ui.view: mrp.view_immediate_production
101
+ # NOTHING TO DO: ir noupdate=0 stuff
@@ -0,0 +1,5 @@
1
+ ---Models in module 'mrp_landed_costs'---
2
+ ---Fields in module 'mrp_landed_costs'---
3
+ ---XML records in module 'mrp_landed_costs'---
4
+ ---nothing has changed in this module--
5
+ NOTHING TO DO
@@ -0,0 +1,5 @@
1
+ ---Models in module 'sale_mrp'---
2
+ ---Fields in module 'sale_mrp'---
3
+ ---XML records in module 'sale_mrp'---
4
+ ---nothing has changed in this module--
5
+ # NOTHING TO DO
@@ -0,0 +1,16 @@
1
+ # Copyright 2025 Tecnativa - Pilar Vargas
2
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
+
4
+ from openupgradelib import openupgrade
5
+
6
+
7
+ @openupgrade.migrate()
8
+ def migrate(env, version):
9
+ # Set to False so as not to change the behaviour of the website with new things.
10
+ openupgrade.logged_query(
11
+ env.cr,
12
+ """
13
+ UPDATE product_tag SET visible_on_ecommerce = FALSE
14
+ WHERE visible_on_ecommerce IS DISTINCT FROM FALSE
15
+ """,
16
+ )
@@ -0,0 +1,149 @@
1
+ ---Models in module 'website_sale'---
2
+ ---Fields in module 'website_sale'---
3
+ website_sale / product.document / shown_on_product_page (boolean): NEW
4
+ website_sale / product.product / rating_ids (one2many) : is now stored
5
+ website_sale / product.product / rating_ids (one2many) : module is now 'rating' ('website_sale')
6
+ website_sale / product.product / rating_ids (one2many) : not related anymore
7
+ website_sale / product.product / ribbon_id (many2one) : NEW relation: product.ribbon
8
+ website_sale / product.ribbon / product_tag_ids (one2many) : DEL relation: product.tag
9
+ website_sale / product.tag / image (binary) : NEW attachment: True
10
+ website_sale / product.tag / ribbon_id (many2one) : DEL relation: product.ribbon
11
+ website_sale / product.template / description_ecommerce (html) : NEW
12
+ website_sale / product.template / rating_ids (one2many) : module is now 'rating' ('website_sale')
13
+ website_sale / res.company / website_sale_onboarding_payment_provider_state (selection): DEL selection_keys: ['done', 'just_done', 'not_done']
14
+ website_sale / sale.order / access_point_address (json) : NEW
15
+ website_sale / website / currency_id (many2one) : not related anymore
16
+ website_sale / website / currency_id (many2one) : now a function
17
+ website_sale / website / show_line_subtotals_tax_selection (selection): NEW required, selection_keys: ['tax_excluded', 'tax_included'], hasdefault: default
18
+ website_sale_delivery / sale.order / amount_delivery (float) : not stored anymore
19
+ # NOTHING TO DO
20
+
21
+ website_sale / product.tag / visible_on_ecommerce (boolean): NEW hasdefault: default
22
+ # DONE post-migration: Set to False so as not to change the behaviour of the website with new things.
23
+
24
+ ---XML records in module 'website_sale'---
25
+ DEL ir.actions.act_window: website_sale.action_invoices_ecommerce
26
+ DEL ir.actions.act_window: website_sale.product_public_tags_action
27
+ DEL ir.actions.act_window: website_sale.website_product_pricelist3
28
+ NEW ir.asset: website_sale.s_popup_000_js
29
+ NEW ir.model.access: website_sale.access_ecom_extra_fields_public_employee
30
+ NEW ir.model.access: website_sale.access_ecom_extra_fields_public_portal
31
+ NEW ir.model.access: website_sale.access_ecom_extra_fields_public_public
32
+ NEW ir.model.access: website_sale.access_product_attribute_public_employee
33
+ NEW ir.model.access: website_sale.access_product_attribute_public_portal
34
+ NEW ir.model.access: website_sale.access_product_attribute_public_public
35
+ NEW ir.model.access: website_sale.access_product_attribute_value_public_employee
36
+ NEW ir.model.access: website_sale.access_product_attribute_value_public_portal
37
+ NEW ir.model.access: website_sale.access_product_attribute_value_public_public
38
+ NEW ir.model.access: website_sale.access_product_category_public_employee
39
+ NEW ir.model.access: website_sale.access_product_category_public_portal
40
+ NEW ir.model.access: website_sale.access_product_category_public_public
41
+ NEW ir.model.access: website_sale.access_product_image_public_employee
42
+ NEW ir.model.access: website_sale.access_product_image_public_portal
43
+ NEW ir.model.access: website_sale.access_product_image_public_public
44
+ NEW ir.model.access: website_sale.access_product_pricelist_item_public_employee
45
+ NEW ir.model.access: website_sale.access_product_pricelist_item_public_portal
46
+ NEW ir.model.access: website_sale.access_product_pricelist_item_public_public
47
+ NEW ir.model.access: website_sale.access_product_pricelist_public_employee
48
+ NEW ir.model.access: website_sale.access_product_pricelist_public_portal
49
+ NEW ir.model.access: website_sale.access_product_pricelist_public_public
50
+ NEW ir.model.access: website_sale.access_product_product_attribute_custom_value_employee
51
+ NEW ir.model.access: website_sale.access_product_product_attribute_custom_value_portal
52
+ NEW ir.model.access: website_sale.access_product_product_attribute_custom_value_public
53
+ NEW ir.model.access: website_sale.access_product_product_attribute_employee
54
+ NEW ir.model.access: website_sale.access_product_product_attribute_portal
55
+ NEW ir.model.access: website_sale.access_product_product_attribute_public
56
+ NEW ir.model.access: website_sale.access_product_product_public_employee
57
+ NEW ir.model.access: website_sale.access_product_product_public_portal
58
+ NEW ir.model.access: website_sale.access_product_product_public_public
59
+ NEW ir.model.access: website_sale.access_product_public_category_public_employee
60
+ NEW ir.model.access: website_sale.access_product_public_category_public_portal
61
+ NEW ir.model.access: website_sale.access_product_public_category_public_public
62
+ NEW ir.model.access: website_sale.access_product_tag_public_employee
63
+ NEW ir.model.access: website_sale.access_product_tag_public_portal
64
+ NEW ir.model.access: website_sale.access_product_tag_public_public
65
+ NEW ir.model.access: website_sale.access_product_template_attribute_exclusion_employee
66
+ NEW ir.model.access: website_sale.access_product_template_attribute_exclusion_portal
67
+ NEW ir.model.access: website_sale.access_product_template_attribute_exclusion_public
68
+ NEW ir.model.access: website_sale.access_product_template_attribute_line_public_employee
69
+ NEW ir.model.access: website_sale.access_product_template_attribute_line_public_portal
70
+ NEW ir.model.access: website_sale.access_product_template_attribute_line_public_public
71
+ NEW ir.model.access: website_sale.access_product_template_public_employee
72
+ NEW ir.model.access: website_sale.access_product_template_public_portal
73
+ NEW ir.model.access: website_sale.access_product_template_public_public
74
+ NEW ir.model.access: website_sale.access_website_base_unit_public_employee
75
+ NEW ir.model.access: website_sale.access_website_base_unit_public_portal
76
+ NEW ir.model.access: website_sale.access_website_base_unit_public_public
77
+ DEL ir.model.access: website_sale.access_ecom_extra_fields_public
78
+ DEL ir.model.access: website_sale.access_product_attribute_public
79
+ DEL ir.model.access: website_sale.access_product_attribute_value_public
80
+ DEL ir.model.access: website_sale.access_product_category_public
81
+ DEL ir.model.access: website_sale.access_product_image_public
82
+ DEL ir.model.access: website_sale.access_product_pricelist_item_public
83
+ DEL ir.model.access: website_sale.access_product_pricelist_public
84
+ DEL ir.model.access: website_sale.access_product_product_attribute
85
+ DEL ir.model.access: website_sale.access_product_product_attribute_custom_value
86
+ DEL ir.model.access: website_sale.access_product_product_public
87
+ DEL ir.model.access: website_sale.access_product_public_category_public
88
+ DEL ir.model.access: website_sale.access_product_tag_public
89
+ DEL ir.model.access: website_sale.access_product_template_attribute_exclusion
90
+ DEL ir.model.access: website_sale.access_product_template_attribute_line_public
91
+ DEL ir.model.access: website_sale.access_product_template_public
92
+ DEL ir.model.access: website_sale.access_website_base_unit_public
93
+ NEW ir.ui.menu: website_sale.menu_delivery_zip_prefix
94
+ NEW ir.ui.menu: website_sale.menu_ecommerce_delivery [renamed from website_sale_delivery module]
95
+ NEW ir.ui.menu: website_sale.menu_ecommerce_payment_methods
96
+ DEL ir.ui.menu: website_sale.menu_ecommerce_payment_icons
97
+ DEL ir.ui.menu: website_sale_delivery.menu_ecommerce_delivery [renamed to website_sale module]
98
+ NEW ir.ui.view: website_sale.accept_terms_and_conditions
99
+ NEW ir.ui.view: website_sale.badge_extra_price
100
+ NEW ir.ui.view: website_sale.cart_delivery
101
+ NEW ir.ui.view: website_sale.checkout_layout
102
+ NEW ir.ui.view: website_sale.filter_products_tags
103
+ NEW ir.ui.view: website_sale.filter_products_tags_list
104
+ NEW ir.ui.view: website_sale.navigation_buttons
105
+ NEW ir.ui.view: website_sale.o_wsale_offcanvas_color_attribute
106
+ NEW ir.ui.view: website_sale.payment_delivery
107
+ NEW ir.ui.view: website_sale.payment_delivery_methods
108
+ NEW ir.ui.view: website_sale.product_document_form
109
+ NEW ir.ui.view: website_sale.product_document_kanban
110
+ NEW ir.ui.view: website_sale.product_document_list
111
+ NEW ir.ui.view: website_sale.product_document_search
112
+ NEW ir.ui.view: website_sale.product_tags
113
+ NEW ir.ui.view: website_sale.row_addresses
114
+ NEW ir.ui.view: website_sale.sale_order_tree
115
+ NEW ir.ui.view: website_sale.template_header_mobile
116
+ NEW ir.ui.view: website_sale.template_header_sales_four
117
+ NEW ir.ui.view: website_sale.template_header_sales_one
118
+ NEW ir.ui.view: website_sale.template_header_sales_three
119
+ NEW ir.ui.view: website_sale.template_header_sales_two
120
+ NEW ir.ui.view: website_sale.template_header_search
121
+ NEW ir.ui.view: website_sale.template_header_stretch
122
+ NEW ir.ui.view: website_sale.variants
123
+ NEW ir.ui.view: website_sale.view_delivery_carrier_form_website_delivery
124
+ NEW ir.ui.view: website_sale.view_delivery_carrier_search
125
+ NEW ir.ui.view: website_sale.view_delivery_carrier_tree
126
+ DEL ir.ui.view: website_sale.cart_popover
127
+ DEL ir.ui.view: website_sale.cart_summary
128
+ DEL ir.ui.view: website_sale.extra_info_option
129
+ DEL ir.ui.view: website_sale.payment_footer
130
+ DEL ir.ui.view: website_sale.payment_sale_note
131
+ DEL ir.ui.view: website_sale.res_config_settings_view_form_web_terms
132
+ DEL ir.ui.view: website_sale.short_cart_summary
133
+ DEL ir.ui.view: website_sale.template_header_centered_logo
134
+ DEL ir.ui.view: website_sale.template_header_contact
135
+ DEL ir.ui.view: website_sale.template_header_hamburger_full
136
+ DEL ir.ui.view: website_sale.template_header_image
137
+ DEL ir.ui.view: website_sale.template_header_magazine
138
+ DEL ir.ui.view: website_sale.template_header_slogan
139
+ DEL ir.ui.view: website_sale.view_order_tree
140
+ DEL ir.ui.view: website_sale.view_quotation_tree
141
+ DEL ir.ui.view: website_sale_delivery.cart_delivery
142
+ DEL ir.ui.view: website_sale_delivery.payment_delivery
143
+ DEL ir.ui.view: website_sale_delivery.payment_delivery_methods
144
+ DEL ir.ui.view: website_sale_delivery.payment_delivery_shipping_method
145
+ DEL ir.ui.view: website_sale_delivery.res_config_settings_view_form
146
+ DEL ir.ui.view: website_sale_delivery.view_delivery_carrier_form_website_delivery
147
+ DEL ir.ui.view: website_sale_delivery.view_delivery_carrier_search_inherit_website_sale_delivery
148
+ DEL ir.ui.view: website_sale_delivery.view_delivery_carrier_tree_inherit_website_sale_delivery
149
+ # NOTHING TO DO
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-openupgrade_scripts
3
- Version: 17.0.1.0.1.235
3
+ Version: 17.0.1.0.1.247
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo>=17.0a,<17.1dev
6
6
  Requires-Dist: openupgradelib
@@ -1,7 +1,7 @@
1
1
  odoo/addons/openupgrade_scripts/README.rst,sha256=F-NgZfCSC-In2HctZruRu5RXLtEBFegzZYW5KpobcWU,3182
2
2
  odoo/addons/openupgrade_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  odoo/addons/openupgrade_scripts/__manifest__.py,sha256=7Yx2vwKl2vEHnUbDuuTprHLg2oQrKQMkpWEfyFneA0Q,614
4
- odoo/addons/openupgrade_scripts/apriori.py,sha256=5Z-LjgLOWLDc-KVo18gEJMNl6ovSuGmMhW5-TWHeeZY,2731
4
+ odoo/addons/openupgrade_scripts/apriori.py,sha256=EGqYX7Y6hbezOOnFZH6vvxTzXF4nzwhxtvJjApp2akA,2805
5
5
  odoo/addons/openupgrade_scripts/readme/CONFIGURE.md,sha256=rnx8ADTYzVUB93PIG3Lib0iWBrphSfVRs6RMikklf3M,238
6
6
  odoo/addons/openupgrade_scripts/readme/DESCRIPTION.md,sha256=HPjPs_KluLFMYXPaJcnoneY8BAh-XPwEAP71I7VTTbo,86
7
7
  odoo/addons/openupgrade_scripts/readme/INSTALL.md,sha256=NDKVZRv0J8BTqcSTD7JwUXL_AY-cDJoegn5IUTbEOFk,113
@@ -142,7 +142,7 @@ odoo/addons/openupgrade_scripts/scripts/hr/17.0.1.1/pre-migration.py,sha256=YdaF
142
142
  odoo/addons/openupgrade_scripts/scripts/hr/17.0.1.1/upgrade_analysis.txt,sha256=-4tW82_F8u5kdrEaP2aWHSY29ar5qI0uKWK5QZI4Zws,8063
143
143
  odoo/addons/openupgrade_scripts/scripts/hr/17.0.1.1/upgrade_analysis_work.txt,sha256=IhX4TMtbhnrPG2FrbO_otRpduBtJViyXMtBLf290aYs,9437
144
144
  odoo/addons/openupgrade_scripts/scripts/hr_attendance/17.0.2.0/post-migration.py,sha256=j_i6wfOSi9bUNSnOxc2vUg7EOGHFBLuAfrKLmq5zIbQ,2070
145
- odoo/addons/openupgrade_scripts/scripts/hr_attendance/17.0.2.0/pre-migration.py,sha256=yrvuji7cl7A_D73fMYLzci1QNSv95CbC_vEK2W69bQE,1223
145
+ odoo/addons/openupgrade_scripts/scripts/hr_attendance/17.0.2.0/pre-migration.py,sha256=c1Uyj7uFx5aVmrgRBYIDGUmogrtSvFJYurLLAJCm0kI,2355
146
146
  odoo/addons/openupgrade_scripts/scripts/hr_attendance/17.0.2.0/upgrade_analysis.txt,sha256=ktiyZgjaASUbYSnMG6OdNse9DchedxPqneC7F5W4Vjw,5377
147
147
  odoo/addons/openupgrade_scripts/scripts/hr_attendance/17.0.2.0/upgrade_analysis_work.txt,sha256=2ASviNWmrnkPdAELkHM_9kGoEGhRMU9PjtLP4wK3x4A,6124
148
148
  odoo/addons/openupgrade_scripts/scripts/hr_contract/17.0.1.0/noupdate_changes.xml,sha256=1NemwLIilOOpHDoCFdWOx6FPBx4REo_Wvpe5mb1a28A,518
@@ -249,7 +249,9 @@ odoo/addons/openupgrade_scripts/scripts/l10n_ee/17.0.1.1/upgrade_analysis.txt,sh
249
249
  odoo/addons/openupgrade_scripts/scripts/l10n_ee/17.0.1.2/upgrade_analysis.txt,sha256=OspILI0pGdaCtliHD7DIINmbLfuYc8xx9K5fAp_xKRg,22728
250
250
  odoo/addons/openupgrade_scripts/scripts/l10n_eg/17.0.1.0/upgrade_analysis.txt,sha256=BOXJ8pdDnI9ZxtPq7AowVTrPmpvYHAXq55AYrRJP5CA,13603
251
251
  odoo/addons/openupgrade_scripts/scripts/l10n_eg_edi_eta/17.0.0.2/upgrade_analysis.txt,sha256=f2AaXZRdCljxh7HjEHarlfgonOcm-NqVuLmhfAR_y4c,168
252
+ odoo/addons/openupgrade_scripts/scripts/l10n_es/17.0.5.4/pre-migration.py,sha256=rHwqEX_s23164Fodxhk1LzxEfcgNuAu-cBhjcv9XGvs,2235
252
253
  odoo/addons/openupgrade_scripts/scripts/l10n_es/17.0.5.4/upgrade_analysis.txt,sha256=ARdPh3f2RBr26G_jLtuRq8wiMMcNNq-sk-DOnWCWzHw,233091
254
+ odoo/addons/openupgrade_scripts/scripts/l10n_es/17.0.5.4/upgrade_analysis_work.txt,sha256=5R_7NmEcy-Fz1-37mV0XUvXcua1umb7w3cRgiXdYrBY,225343
253
255
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_facturae/17.0.1.0/upgrade_analysis.txt,sha256=7Qv71rXs6ax9Du2w339UQ5_pDbOwcRrEQczmwcKQMJo,3975
254
256
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_facturae_adm_centers/17.0.1.0/upgrade_analysis.txt,sha256=Kz2Ew4HxZmsxFhUCoPO-F-hPusUcdVBKro63__UzABo,2620
255
257
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_facturae_invoice_period/17.0.1.0/upgrade_analysis.txt,sha256=Hy7who6IeUM1qSWGiUEe7fb_oFjepVVQdX3RPMjpX1Q,479
@@ -411,14 +413,20 @@ odoo/addons/openupgrade_scripts/scripts/mass_mailing_sale/17.0.1.0/upgrade_analy
411
413
  odoo/addons/openupgrade_scripts/scripts/mass_mailing_sale_sms/17.0.1.0/upgrade_analysis.txt,sha256=utUZ_Od1hP8vgomiOt0J2osjPFbyiPlsr_0PfofGZOA,186
412
414
  odoo/addons/openupgrade_scripts/scripts/mass_mailing_sms/17.0.1.1/upgrade_analysis.txt,sha256=ooMFxakFOuZ3BuI9CPQ8ObsPDDAIEOUCi_-zGbfrYb0,1452
413
415
  odoo/addons/openupgrade_scripts/scripts/mass_mailing_themes/17.0.1.2/upgrade_analysis.txt,sha256=HQrh6bPZbbwLR4Jidz8y2OcRA4m0EI0dfWSlykClaJY,1032
416
+ odoo/addons/openupgrade_scripts/scripts/membership/17.0.1.0/pre-migration.py,sha256=TSyVopWxMnHHlVl4Rdr6HRXZiocwGd0jNUuAJBMSoSk,425
414
417
  odoo/addons/openupgrade_scripts/scripts/membership/17.0.1.0/upgrade_analysis.txt,sha256=j4vniS-JNd5XTKN4pvbd3etahcJmn8zMcs7ATL8awGY,300
418
+ odoo/addons/openupgrade_scripts/scripts/membership/17.0.1.0/upgrade_analysis_work.txt,sha256=r7qp2tiAAlJhVLKVq-9i1H01K9YffWGX-szRLwN_4AQ,354
415
419
  odoo/addons/openupgrade_scripts/scripts/microsoft_account/17.0.1.0/upgrade_analysis.txt,sha256=A-hAfz4jaf1_-Uw2-6JP4inCGDe6LXPvVvXb7Dk9Nyc,174
416
420
  odoo/addons/openupgrade_scripts/scripts/microsoft_calendar/17.0.1.0/upgrade_analysis.txt,sha256=EHFEvy7AiiO0ZtkXFxTv4k_pjvLONtoHy_-lF_Ufou0,1597
417
421
  odoo/addons/openupgrade_scripts/scripts/microsoft_outlook/17.0.1.1/upgrade_analysis.txt,sha256=AN9OrdoYh8Y4Fk0wPIc2_UuVePoboGlV1VonIbSS1Lk,338
418
422
  odoo/addons/openupgrade_scripts/scripts/microsoft_outlook/17.0.1.1/upgrade_analysis_work.txt,sha256=-374lFqAJ-x8jr2mAvmDSjibdLABaYyEbxavoveOxEc,355
423
+ odoo/addons/openupgrade_scripts/scripts/mrp/17.0.2.0/post-migration.py,sha256=IuZRbgW5pPDmOCkdOnCfU2DI4lrJ-_jGPRDRaR_kIoE,937
424
+ odoo/addons/openupgrade_scripts/scripts/mrp/17.0.2.0/pre-migration.py,sha256=JaUsMlvKGAUoidqpntY80sbkAMEmV3Tyyjuhl5n9V3Q,1486
419
425
  odoo/addons/openupgrade_scripts/scripts/mrp/17.0.2.0/upgrade_analysis.txt,sha256=HYkqQOIk-ALT56-8qWXDsBYg_m4O_QxWVbIj5jTMaok,5658
426
+ odoo/addons/openupgrade_scripts/scripts/mrp/17.0.2.0/upgrade_analysis_work.txt,sha256=k8KYkW3lHY5Lc8iEhYVQBonBkmGGDZjEw0zGEDlFqZQ,6890
420
427
  odoo/addons/openupgrade_scripts/scripts/mrp_account/17.0.1.0/upgrade_analysis.txt,sha256=skwQ5fex7b4rCA-ybCPnM2OoirPpiArMDM6BLt8jN3Q,3346
421
428
  odoo/addons/openupgrade_scripts/scripts/mrp_landed_costs/17.0.1.0/upgrade_analysis.txt,sha256=5nXyL4HwISqtYoWtiWaRdUNUoUOIK0JpvbyhG2vN-qo,171
429
+ odoo/addons/openupgrade_scripts/scripts/mrp_landed_costs/17.0.1.0/upgrade_analysis_work.txt,sha256=DiyPzzJmEgmZId7inD2fIWTAD2uM177LyaO1qFDrrYM,185
422
430
  odoo/addons/openupgrade_scripts/scripts/mrp_subcontracting/17.0.0.1/upgrade_analysis.txt,sha256=AkP3hDgUkv3hFtRAP6PRm4x4qMN3PnEmJmZ2PuifLe0,228
423
431
  odoo/addons/openupgrade_scripts/scripts/mrp_subcontracting_dropshipping/17.0.0.1/upgrade_analysis.txt,sha256=pLdZ-5FaS_z13cr2LSIb9wNj1OQbvWbngccheKzZ0WM,216
424
432
  odoo/addons/openupgrade_scripts/scripts/mrp_subcontracting_purchase/17.0.0.1/upgrade_analysis.txt,sha256=nHbm5OAhiaJSooOQhPdHdTKv7Fw4M74JtqGFLs1Nh6E,204
@@ -553,6 +561,7 @@ odoo/addons/openupgrade_scripts/scripts/sale_management/17.0.1.0/upgrade_analysi
553
561
  odoo/addons/openupgrade_scripts/scripts/sale_margin/17.0.1.0/upgrade_analysis.txt,sha256=kCC8jeJAQaUIr1kUQpjMHFA2mFb5xFmapcvXPMwRk7k,156
554
562
  odoo/addons/openupgrade_scripts/scripts/sale_margin/17.0.1.0/upgrade_analysis_work.txt,sha256=W2yOeqzCgkboy_kB9IGs1VG58fDkq3Svbds-ceqaydQ,172
555
563
  odoo/addons/openupgrade_scripts/scripts/sale_mrp/17.0.1.0/upgrade_analysis.txt,sha256=9wUIk_OUtTOJXJKJcKIYhlq1wxaxdPHRpHZ8570WV9g,147
564
+ odoo/addons/openupgrade_scripts/scripts/sale_mrp/17.0.1.0/upgrade_analysis_work.txt,sha256=uNei_kExf2-LW7GW2uQ9DwAf_cbYorQfHjKXh9Eh9kY,163
556
565
  odoo/addons/openupgrade_scripts/scripts/sale_pdf_quote_builder/17.0.1.0/upgrade_analysis.txt,sha256=dr4vitgrdj5OeL4oIFgOQqqdNfrfVIFpJ2tgzbWjKOQ,1366
557
566
  odoo/addons/openupgrade_scripts/scripts/sale_product_configurator/17.0.1.0/upgrade_analysis.txt,sha256=r1WkDZ05m3-WG6lLp_QwJ8hrLZvrOOeCMYQC8J10MT4,477
558
567
  odoo/addons/openupgrade_scripts/scripts/sale_product_configurator/17.0.1.0/upgrade_analysis_work.txt,sha256=Ly2H4OOFg6fl9yee9RhUh29AUKv8AqVBzrF8ujynAxs,493
@@ -665,7 +674,9 @@ odoo/addons/openupgrade_scripts/scripts/website_profile/17.0.1.0/noupdate_change
665
674
  odoo/addons/openupgrade_scripts/scripts/website_profile/17.0.1.0/post-migration.py,sha256=yNR8k3Oo4dWCYqgLP3j5Vr3VQSNenTyeLMMeZndl_Vg,410
666
675
  odoo/addons/openupgrade_scripts/scripts/website_profile/17.0.1.0/upgrade_analysis.txt,sha256=sw2P2EUshSepfxC15Zsapn6tgFQYkqysPzQ0vDr2bzo,334
667
676
  odoo/addons/openupgrade_scripts/scripts/website_profile/17.0.1.0/upgrade_analysis_work.txt,sha256=xTs7P6CrwJvwN-xZ8J4ZXRsfddVoanOSmj_PgLrrgx8,350
677
+ odoo/addons/openupgrade_scripts/scripts/website_sale/17.0.1.1/post-migration.py,sha256=8cNvne36vilQu79UWgIFRUTOqtnTfzXAj_6OtdR5tRE,479
668
678
  odoo/addons/openupgrade_scripts/scripts/website_sale/17.0.1.1/upgrade_analysis.txt,sha256=9GOdA1JcyPPw7Df1UVJxFdC9QbOlFxhqnoU75DrO8nc,10047
679
+ odoo/addons/openupgrade_scripts/scripts/website_sale/17.0.1.1/upgrade_analysis_work.txt,sha256=USqXxhCSo82gbRwSCEu4deLssZjYapZU3509Ud8aI4I,10183
669
680
  odoo/addons/openupgrade_scripts/scripts/website_sale_autocomplete/17.0.1.0/upgrade_analysis.txt,sha256=YswdVijMPe2DoMTSlJqSbdFd1ZcTK4PfRvXvm1cd3XM,198
670
681
  odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/17.0.1.0/upgrade_analysis.txt,sha256=hLGynBKTJICGodg9l88vtm6YgbNQwOZXBdZ4y4pIT9Q,519
671
682
  odoo/addons/openupgrade_scripts/scripts/website_sale_loyalty/17.0.1.0/upgrade_analysis.txt,sha256=99KJxKrOFiemi2WA9ihfINnYz0wn2i2kg2TcD1fjztE,183
@@ -689,7 +700,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/17.0.1.0/upgrade_analysi
689
700
  odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
690
701
  odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
691
702
  odoo/addons/openupgrade_scripts/static/description/index.html,sha256=iV41-zYBM4uvZPuunpcr7bQeRgBaojVsKo_gkeyJyA4,12639
692
- odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info/METADATA,sha256=CZWi9pHEzVtc3bxLoqOrT7cC4Kslj3xQwwPG6hVihdw,3786
693
- odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
694
- odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
695
- odoo_addon_openupgrade_scripts-17.0.1.0.1.235.dist-info/RECORD,,
703
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info/METADATA,sha256=9qY-3BK-E8dv_2BBUthgDAZNjIvReoaqfc9Au7RMwOU,3786
704
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
705
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
706
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.247.dist-info/RECORD,,