odoo-addon-openupgrade-scripts 18.0.1.0.0.303__py3-none-any.whl → 18.0.1.0.0.323__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 +2 -0
- odoo/addons/openupgrade_scripts/scripts/base_geolocalize/18.0.2.1/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/upgrade_analysis_work.txt +7 -5
- odoo/addons/openupgrade_scripts/scripts/hr_attendance/18.0.2.0/post-migration.py +49 -0
- odoo/addons/openupgrade_scripts/scripts/hr_calendar/18.0.1.0/upgrade_analysis_work.txt +8 -0
- odoo/addons/openupgrade_scripts/scripts/project_timesheet_holidays/18.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/sale_loyalty/18.0.1.0/upgrade_analysis_work.txt +11 -0
- odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/18.0.1.0/post-migration.py +33 -0
- odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/18.0.1.0/upgrade_analysis_work.txt +24 -0
- odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/post-migration.py +37 -0
- odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/upgrade_analysis_work.txt +45 -0
- odoo/addons/openupgrade_scripts/scripts/website_event/18.0.1.4/post-migration.py +8 -0
- odoo/addons/openupgrade_scripts/scripts/website_event/18.0.1.4/upgrade_analysis_work.txt +68 -0
- odoo/addons/openupgrade_scripts/scripts/website_jitsi/18.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_loyalty/18.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/post-migration.py +34 -0
- odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_analysis_work.txt +18 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info}/RECORD +21 -6
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info}/top_level.txt +0 -0
@@ -63,6 +63,8 @@ merged_modules = {
|
|
63
63
|
# odoo/enterprise
|
64
64
|
# OCA/e-commerce
|
65
65
|
"website_sale_product_attachment": "website_sale",
|
66
|
+
# OCA/hr-attendance
|
67
|
+
"hr_attendance_autoclose": "hr_attendance",
|
66
68
|
# OCA/knowledge
|
67
69
|
"document_page_group": "document_page_access_group",
|
68
70
|
# OCA/l10n-france
|
@@ -53,16 +53,18 @@ event / event.mail / last_registration_id (many2one): NEW r
|
|
53
53
|
|
54
54
|
---XML records in module 'event'---
|
55
55
|
NEW ir.actions.act_window: event.action_event_registration_report [renamed from website_event module]
|
56
|
-
NEW ir.actions.client: event.event_action_install_kiosk_pwa
|
57
|
-
NEW ir.actions.report: event.action_report_event_registration_badge_96x134
|
58
|
-
NEW ir.actions.report: event.action_report_event_registration_badge_96x82
|
59
56
|
NEW ir.model.access: event.access_event_question_answer_employee [renamed from website_event module]
|
60
57
|
NEW ir.model.access: event.access_event_question_answer_registration [renamed from website_event module]
|
61
58
|
NEW ir.model.access: event.access_event_question_answer_user [renamed from website_event module]
|
62
|
-
NEW ir.model.access: event.access_event_question_manager
|
63
|
-
NEW ir.model.access: event.access_event_question_user
|
64
59
|
NEW ir.model.access: event.access_event_registration_answer [renamed from website_event module]
|
65
60
|
NEW ir.model.constraint: event.constraint_event_registration_answer_value_check [renamed from website_event module]
|
61
|
+
# DONE: pre-migration: rename xmlids
|
62
|
+
|
63
|
+
NEW ir.actions.client: event.event_action_install_kiosk_pwa
|
64
|
+
NEW ir.actions.report: event.action_report_event_registration_badge_96x134
|
65
|
+
NEW ir.actions.report: event.action_report_event_registration_badge_96x82
|
66
|
+
NEW ir.model.access: event.access_event_question_manager
|
67
|
+
NEW ir.model.access: event.access_event_question_user
|
66
68
|
NEW ir.ui.view: event.event_question_view_form
|
67
69
|
NEW ir.ui.view: event.event_registration_answer_view_graph
|
68
70
|
NEW ir.ui.view: event.event_registration_answer_view_pivot
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Víctor Martínez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _hr_attendance_autoclose(env):
|
7
|
+
"""If the hr_attendance_autoclose module was installed, we will define
|
8
|
+
the appropriate values in res.company: auto_check_out +
|
9
|
+
auto_check_out_tolerance fields.
|
10
|
+
"""
|
11
|
+
if not openupgrade.column_exists(
|
12
|
+
env.cr, "res_company", "hr_attendance_autoclose_reason"
|
13
|
+
):
|
14
|
+
return
|
15
|
+
env.cr.execute(
|
16
|
+
"""
|
17
|
+
UPDATE res_company
|
18
|
+
SET auto_check_out = true, auto_check_out_tolerance = (
|
19
|
+
attendance_maximum_hours_per_day - calendar.hours_per_day
|
20
|
+
)
|
21
|
+
FROM resource_calendar AS calendar
|
22
|
+
WHERE res_company.resource_calendar_id = calendar.id
|
23
|
+
AND res_company.attendance_maximum_hours_per_day IS NOT NULL
|
24
|
+
"""
|
25
|
+
)
|
26
|
+
env.cr.execute(
|
27
|
+
"""
|
28
|
+
UPDATE hr_attendance ha
|
29
|
+
SET out_mode = 'auto_check_out'
|
30
|
+
FROM hr_employee he, res_company rc,
|
31
|
+
hr_attendance_hr_attendance_reason_rel rel
|
32
|
+
WHERE ha.employee_id = he.id
|
33
|
+
AND he.company_id = rc.id
|
34
|
+
AND rel.hr_attendance_id = ha.id
|
35
|
+
AND rel.hr_attendance_reason_id = rc.hr_attendance_autoclose_reason
|
36
|
+
AND rc.hr_attendance_autoclose_reason IS NOT NULL
|
37
|
+
"""
|
38
|
+
)
|
39
|
+
openupgrade.delete_records_safely_by_xml_id(
|
40
|
+
env,
|
41
|
+
[
|
42
|
+
"hr_attendance.check_attendance_cron",
|
43
|
+
],
|
44
|
+
)
|
45
|
+
|
46
|
+
|
47
|
+
@openupgrade.migrate()
|
48
|
+
def migrate(env, version):
|
49
|
+
_hr_attendance_autoclose(env)
|
@@ -0,0 +1,8 @@
|
|
1
|
+
---Models in module 'hr_calendar'---
|
2
|
+
---Fields in module 'hr_calendar'---
|
3
|
+
---XML records in module 'hr_calendar'---
|
4
|
+
NEW ir.ui.view: hr_calendar.view_calendar_event_calendar
|
5
|
+
NEW ir.ui.view: hr_calendar.view_calendar_event_form
|
6
|
+
NEW ir.ui.view: hr_calendar.view_calendar_event_form_quick_create
|
7
|
+
NEW ir.ui.view: hr_calendar.view_res_partner_filter_inherit_calendar
|
8
|
+
# NOTHING TO DO
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---Models in module 'sale_loyalty'---
|
2
|
+
# NOTHING TO DO
|
3
|
+
|
4
|
+
---Fields in module 'sale_loyalty'---
|
5
|
+
# NOTHING TO DO
|
6
|
+
|
7
|
+
---XML records in module 'sale_loyalty'---
|
8
|
+
NEW ir.model.access: sale_loyalty.access_loyalty_card_update_balance_salesman
|
9
|
+
NEW ir.model.access: sale_loyalty.access_loyalty_history_salesman
|
10
|
+
NEW ir.ui.view: sale_loyalty.sale_order_portal_loyalty_content
|
11
|
+
# NOTHING TO DO
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _adjust_stock_picking_batch_sequence(env):
|
7
|
+
"""As the order in the tree view and report is now by batch_sequence,
|
8
|
+
we need to set the batch_sequence field
|
9
|
+
to maintain the same order as in the previous version,
|
10
|
+
because this new field does not have a default value.
|
11
|
+
The order is taken from the picking model.
|
12
|
+
"""
|
13
|
+
openupgrade.logged_query(
|
14
|
+
env.cr,
|
15
|
+
"""
|
16
|
+
UPDATE stock_picking sp
|
17
|
+
SET batch_sequence = sub.row_number
|
18
|
+
FROM (
|
19
|
+
SELECT id, row_number()
|
20
|
+
OVER (
|
21
|
+
PARTITION BY batch_id
|
22
|
+
ORDER BY priority desc, scheduled_date asc, id desc
|
23
|
+
)
|
24
|
+
FROM stock_picking
|
25
|
+
) as sub
|
26
|
+
WHERE sub.id = sp.id
|
27
|
+
""",
|
28
|
+
)
|
29
|
+
|
30
|
+
|
31
|
+
@openupgrade.migrate()
|
32
|
+
def migrate(env, version):
|
33
|
+
_adjust_stock_picking_batch_sequence(env)
|
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/18.0.1.0/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
---Models in module 'stock_picking_batch'---
|
2
|
+
---Fields in module 'stock_picking_batch'---
|
3
|
+
stock_picking_batch / stock.picking / batch_sequence (integer) : NEW
|
4
|
+
# DONE: post-migration: Set batch_sequence for following the same order than in previous version
|
5
|
+
|
6
|
+
stock_picking_batch / stock.picking.batch / description (char) : NEW
|
7
|
+
stock_picking_batch / stock.picking.batch / properties (properties) : NEW hasdefault: compute
|
8
|
+
stock_picking_batch / stock.picking.type / batch_properties_definition (properties_definition): NEW
|
9
|
+
stock_picking_batch / stock.picking.type / wave_category_ids (many2many) : NEW relation: product.category
|
10
|
+
stock_picking_batch / stock.picking.type / wave_group_by_category (boolean): NEW
|
11
|
+
stock_picking_batch / stock.picking.type / wave_group_by_location (boolean): NEW
|
12
|
+
stock_picking_batch / stock.picking.type / wave_group_by_product (boolean): NEW
|
13
|
+
stock_picking_batch / stock.picking.type / wave_location_ids (many2many) : NEW relation: stock.location
|
14
|
+
# NOTHING TO DO: New feature, does not change the current behavior
|
15
|
+
|
16
|
+
---XML records in module 'stock_picking_batch'---
|
17
|
+
NEW ir.actions.act_window: stock_picking_batch.action_prepare_wave
|
18
|
+
NEW ir.actions.act_window: stock_picking_batch.action_prepare_wave_for_picking_type
|
19
|
+
NEW ir.ui.menu: stock_picking_batch.menu_stock_jobs
|
20
|
+
NEW ir.ui.view: stock_picking_batch.stock_picking_batch_calendar
|
21
|
+
NEW ir.ui.view: stock_picking_batch.stock_picking_view_batch_tree_ref
|
22
|
+
NEW ir.ui.view: stock_picking_batch.vpicktree
|
23
|
+
DEL ir.ui.view: stock_picking_batch.vpicktree_inherit_stock_picking_batch
|
24
|
+
# NOTHING TO DO: handled by ORM
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# Copyright 2025 Le Filament (https://le-filament.com)
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _remove_survey_admin_from_default_user(env):
|
7
|
+
"""
|
8
|
+
Default groups for default user had survey_manager in v17,
|
9
|
+
but only survey_user in v18
|
10
|
+
We therefore remove survey_manager from default group
|
11
|
+
"""
|
12
|
+
default_user = env.ref("base.default_user")
|
13
|
+
default_user.groups_id = [(3, env.ref("survey.group_survey_manager").id)]
|
14
|
+
|
15
|
+
|
16
|
+
@openupgrade.migrate()
|
17
|
+
def migrate(env, version):
|
18
|
+
_remove_survey_admin_from_default_user(env)
|
19
|
+
openupgrade.load_data(env, "survey", "18.0.3.7/noupdate_changes.xml")
|
20
|
+
openupgrade.delete_record_translations(
|
21
|
+
env.cr, "base", ["module_category_marketing_surveys"], ["description"]
|
22
|
+
)
|
23
|
+
openupgrade.delete_records_safely_by_xml_id(
|
24
|
+
env,
|
25
|
+
[
|
26
|
+
"survey.survey_question_answer_rule_survey_user_cw",
|
27
|
+
"survey.survey_question_answer_rule_survey_user_read",
|
28
|
+
"survey.survey_question_rule_survey_user_cw",
|
29
|
+
"survey.survey_question_rule_survey_user_read",
|
30
|
+
"survey.survey_survey_rule_survey_user_cwu",
|
31
|
+
"survey.survey_survey_rule_survey_user_read",
|
32
|
+
"survey.survey_user_input_line_rule_survey_user_cw",
|
33
|
+
"survey.survey_user_input_line_rule_survey_user_read",
|
34
|
+
"survey.survey_user_input_rule_survey_user_cw",
|
35
|
+
"survey.survey_user_input_rule_survey_user_read",
|
36
|
+
],
|
37
|
+
)
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---Models in module 'survey'---
|
2
|
+
---Fields in module 'survey'---
|
3
|
+
survey / survey.question / is_time_customized (boolean) : NEW
|
4
|
+
survey / survey.question / question_type (selection) : selection_keys added [scale]
|
5
|
+
survey / survey.question / scale_max (integer) : NEW hasdefault: default
|
6
|
+
survey / survey.question / scale_max_label (char) : NEW
|
7
|
+
survey / survey.question / scale_mid_label (char) : NEW
|
8
|
+
survey / survey.question / scale_min (integer) : NEW hasdefault: default
|
9
|
+
survey / survey.question / scale_min_label (char) : NEW
|
10
|
+
survey / survey.survey / restrict_user_ids (many2many) : NEW relation: res.users
|
11
|
+
survey / survey.survey / session_speed_rating_time_limit (integer): NEW
|
12
|
+
survey / survey.user_input.line / answer_type (selection) : selection_keys added [scale]
|
13
|
+
survey / survey.user_input.line / value_scale (integer) : NEW
|
14
|
+
# NOTHING TO DO: new functionalities
|
15
|
+
|
16
|
+
---XML records in module 'survey'---
|
17
|
+
NEW ir.actions.server: survey.action_survey_print
|
18
|
+
NEW ir.model.constraint: survey.constraint_survey_question_answer_value_not_empty
|
19
|
+
NEW ir.model.constraint: survey.constraint_survey_question_is_time_limited_have_time_limit
|
20
|
+
NEW ir.model.constraint: survey.constraint_survey_question_scale
|
21
|
+
NEW ir.model.constraint: survey.constraint_survey_survey_session_speed_rating_has_time_limit
|
22
|
+
NEW ir.rule: survey.survey_invite_survey_manager (noupdate)
|
23
|
+
NEW ir.rule: survey.survey_invite_survey_user (noupdate)
|
24
|
+
NEW ir.rule: survey.survey_question_answer_rule_survey_user (noupdate)
|
25
|
+
NEW ir.rule: survey.survey_question_rule_survey_user (noupdate)
|
26
|
+
NEW ir.rule: survey.survey_survey_rule_survey_user (noupdate)
|
27
|
+
NEW ir.rule: survey.survey_user_input_line_rule_survey_user (noupdate)
|
28
|
+
NEW ir.rule: survey.survey_user_input_rule_survey_user (noupdate)
|
29
|
+
# NOTHING TO DO: handled by ORM
|
30
|
+
|
31
|
+
DEL ir.rule: survey.survey_question_answer_rule_survey_user_cw (noupdate)
|
32
|
+
DEL ir.rule: survey.survey_question_answer_rule_survey_user_read (noupdate)
|
33
|
+
DEL ir.rule: survey.survey_question_rule_survey_user_cw (noupdate)
|
34
|
+
DEL ir.rule: survey.survey_question_rule_survey_user_read (noupdate)
|
35
|
+
DEL ir.rule: survey.survey_survey_rule_survey_user_cwu (noupdate)
|
36
|
+
DEL ir.rule: survey.survey_survey_rule_survey_user_read (noupdate)
|
37
|
+
DEL ir.rule: survey.survey_user_input_line_rule_survey_user_cw (noupdate)
|
38
|
+
DEL ir.rule: survey.survey_user_input_line_rule_survey_user_read (noupdate)
|
39
|
+
DEL ir.rule: survey.survey_user_input_rule_survey_user_cw (noupdate)
|
40
|
+
DEL ir.rule: survey.survey_user_input_rule_survey_user_read (noupdate)
|
41
|
+
# DONE: post-migration: safe delete noupdate rules
|
42
|
+
|
43
|
+
NEW ir.ui.view: survey.question_scale
|
44
|
+
NEW web_tour.tour: survey.survey_tour
|
45
|
+
# NOTHING TO DO: handled by ORM
|
@@ -0,0 +1,8 @@
|
|
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
|
+
|
6
|
+
@openupgrade.migrate()
|
7
|
+
def migrate(env, version):
|
8
|
+
openupgrade.load_data(env, "website_event", "18.0.1.4/noupdate_changes.xml")
|
@@ -0,0 +1,68 @@
|
|
1
|
+
---Models in module 'website_event'---
|
2
|
+
model event.question (moved to event)
|
3
|
+
model event.question.answer (moved to event)
|
4
|
+
model event.registration.answer (moved to event)
|
5
|
+
---Fields in module 'website_event'---
|
6
|
+
website_event / event.event / menu_register_cta (boolean) : DEL
|
7
|
+
website_event / event.type / menu_register_cta (boolean) : DEL
|
8
|
+
# NOTHING TO DO: deprecated, see https://github.com/odoo/odoo/commit/9b1523a615b8288c89b169e774068f8d906b2c8c
|
9
|
+
|
10
|
+
website_event / event.event / website_visibility (selection): NEW required, selection_keys: ['link', 'logged_users', 'public'], hasdefault: default
|
11
|
+
# NOTHING TO DO
|
12
|
+
|
13
|
+
website_event / event.event / general_question_ids (one2many): module is now 'event' ('website_event')
|
14
|
+
website_event / event.event / question_ids (one2many) : module is now 'event' ('website_event')
|
15
|
+
website_event / event.event / specific_question_ids (one2many): module is now 'event' ('website_event')
|
16
|
+
website_event / event.question / _order : module is now 'event' ('website_event')
|
17
|
+
website_event / event.question / answer_ids (one2many) : module is now 'event' ('website_event')
|
18
|
+
website_event / event.question / display_name (char) : module is now 'event' ('website_event')
|
19
|
+
website_event / event.question / event_id (many2one) : module is now 'event' ('website_event')
|
20
|
+
website_event / event.question / event_type_id (many2one) : module is now 'event' ('website_event')
|
21
|
+
website_event / event.question / is_mandatory_answer (boolean) : module is now 'event' ('website_event')
|
22
|
+
website_event / event.question / once_per_order (boolean) : module is now 'event' ('website_event')
|
23
|
+
website_event / event.question / question_type (selection) : module is now 'event' ('website_event')
|
24
|
+
website_event / event.question / sequence (integer) : module is now 'event' ('website_event')
|
25
|
+
website_event / event.question / title (char) : module is now 'event' ('website_event')
|
26
|
+
website_event / event.question.answer / _order : module is now 'event' ('website_event')
|
27
|
+
website_event / event.question.answer / display_name (char) : module is now 'event' ('website_event')
|
28
|
+
website_event / event.question.answer / name (char) : module is now 'event' ('website_event')
|
29
|
+
website_event / event.question.answer / question_id (many2one) : module is now 'event' ('website_event')
|
30
|
+
website_event / event.question.answer / sequence (integer) : module is now 'event' ('website_event')
|
31
|
+
website_event / event.registration / registration_answer_choice_ids (one2many): module is now 'event' ('website_event')
|
32
|
+
website_event / event.registration / registration_answer_ids (one2many): module is now 'event' ('website_event')
|
33
|
+
website_event / event.registration.answer / _order : module is now 'event' ('website_event')
|
34
|
+
website_event / event.registration.answer / display_name (char) : module is now 'event' ('website_event')
|
35
|
+
website_event / event.registration.answer / event_id (many2one) : module is now 'event' ('website_event')
|
36
|
+
website_event / event.registration.answer / partner_id (many2one) : module is now 'event' ('website_event')
|
37
|
+
website_event / event.registration.answer / question_id (many2one) : module is now 'event' ('website_event')
|
38
|
+
website_event / event.registration.answer / question_type (selection) : module is now 'event' ('website_event')
|
39
|
+
website_event / event.registration.answer / registration_id (many2one) : module is now 'event' ('website_event')
|
40
|
+
website_event / event.registration.answer / value_answer_id (many2one) : module is now 'event' ('website_event')
|
41
|
+
website_event / event.registration.answer / value_text_box (text) : module is now 'event' ('website_event')
|
42
|
+
website_event / event.type / question_ids (one2many) : module is now 'event' ('website_event')
|
43
|
+
# NOTHING TO DO
|
44
|
+
|
45
|
+
---XML records in module 'website_event'---
|
46
|
+
DEL ir.actions.act_window: website_event.action_event_registration_report [renamed to event module]
|
47
|
+
DEL ir.model.access: website_event.access_event_question_answer_employee [renamed to event module]
|
48
|
+
DEL ir.model.access: website_event.access_event_question_answer_registration [renamed to event module]
|
49
|
+
DEL ir.model.access: website_event.access_event_registration_answer [renamed to event module]
|
50
|
+
DEL ir.model.constraint: website_event.constraint_event_registration_answer_value_check [renamed to event module]
|
51
|
+
# NOTHING TO DO
|
52
|
+
|
53
|
+
NEW ir.filters: website_event.ir_filters_event_list_snippet_unfinished
|
54
|
+
DEL ir.model.access: website_event.access_event_question_employee
|
55
|
+
NEW ir.ui.view: website_event.event_confirmation_end_page_hook
|
56
|
+
NEW ir.ui.view: website_event.event_description_dates
|
57
|
+
NEW ir.ui.view: website_event.navbar_dropdown
|
58
|
+
NEW ir.ui.view: website_event.opt_event_description_cover_hidden
|
59
|
+
NEW ir.ui.view: website_event.opt_event_description_cover_top
|
60
|
+
NEW ir.ui.view: website_event.registration_ticket_access
|
61
|
+
NEW ir.ui.view: website_event.s_event_upcoming_snippet_preview_data
|
62
|
+
DEL ir.ui.view: website_event.event_question_view_form
|
63
|
+
DEL ir.ui.view: website_event.event_registration_answer_view_graph
|
64
|
+
DEL ir.ui.view: website_event.event_registration_answer_view_pivot
|
65
|
+
DEL ir.ui.view: website_event.event_registration_answer_view_search
|
66
|
+
DEL ir.ui.view: website_event.event_registration_answer_view_tree
|
67
|
+
NEW website.snippet.filter: website_event.website_snippet_filter_event_list_unfinished
|
68
|
+
# NOTHING TO DO
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
def fill_slide_channel_partner_survey_certification_success(env):
|
8
|
+
if not openupgrade.column_exists(
|
9
|
+
env.cr, "slide_channel_partner", "survey_certification_success"
|
10
|
+
):
|
11
|
+
return
|
12
|
+
openupgrade.logged_query(
|
13
|
+
env.cr,
|
14
|
+
"""
|
15
|
+
UPDATE slide_channel_partner scp
|
16
|
+
SET survey_certification_success = TRUE
|
17
|
+
WHERE (
|
18
|
+
survey_certification_success IS NULL
|
19
|
+
OR survey_certification_success = FALSE
|
20
|
+
)
|
21
|
+
AND EXISTS (
|
22
|
+
SELECT 1
|
23
|
+
FROM slide_slide_partner s
|
24
|
+
WHERE s.survey_scoring_success = TRUE
|
25
|
+
AND s.partner_id = scp.partner_id
|
26
|
+
AND s.channel_id = scp.channel_id
|
27
|
+
);
|
28
|
+
""",
|
29
|
+
)
|
30
|
+
|
31
|
+
|
32
|
+
@openupgrade.migrate()
|
33
|
+
def migrate(env, version):
|
34
|
+
fill_slide_channel_partner_survey_certification_success(env)
|
odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
---Models in module 'website_slides_survey'---
|
2
|
+
---Fields in module 'website_slides_survey'---
|
3
|
+
website_slides_survey / slide.channel.partner / survey_certification_success (boolean): NEW
|
4
|
+
# DONE: post-migration: fill survey_certification_success based on the survey_certification_success field from slide_channel_partner
|
5
|
+
# https://github.com/odoo/odoo/blob/74eecadb39e0c260f4cfc1ae9478c84eda815132/addons/website_slides_survey/models/slide_slide.py#L31-L44
|
6
|
+
|
7
|
+
---XML records in module 'website_slides_survey'---
|
8
|
+
NEW ir.rule: website_slides_survey.survey_question_answer_slide_channel_officer (noupdate)
|
9
|
+
NEW ir.rule: website_slides_survey.survey_question_rule_slide_channel_officer (noupdate)
|
10
|
+
NEW ir.rule: website_slides_survey.survey_rule_slide_channel_officer (noupdate)
|
11
|
+
NEW ir.rule: website_slides_survey.survey_user_input_line_rule_slide_channel_officer (noupdate)
|
12
|
+
NEW ir.rule: website_slides_survey.survey_user_input_rule_slide_channel_officer (noupdate)
|
13
|
+
NEW ir.ui.view: website_slides_survey.slide_channel_partner_view_search
|
14
|
+
NEW ir.ui.view: website_slides_survey.slide_channel_partner_view_tree
|
15
|
+
# NOTHING TO DO: new features
|
16
|
+
|
17
|
+
DEL ir.ui.view: website_slides_survey.slide_channel_view_kanban
|
18
|
+
# NOTHING TO DO: handled by ORM
|
@@ -1,7 +1,7 @@
|
|
1
1
|
odoo/addons/openupgrade_scripts/README.rst,sha256=RuTBUdBI9hVP6kr2WJenFV-0J5l2tgUfzuOEtG9MyKQ,3179
|
2
2
|
odoo/addons/openupgrade_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
odoo/addons/openupgrade_scripts/__manifest__.py,sha256=fZVzjupYlcmfrTQtiBu7wlaAqO4JWQncNAdQPEnpaCY,614
|
4
|
-
odoo/addons/openupgrade_scripts/apriori.py,sha256=
|
4
|
+
odoo/addons/openupgrade_scripts/apriori.py,sha256=IqWmu8ppesF8o3jxmuA4IgJYrwe9Gqz9_62GgTnLMxM,4031
|
5
5
|
odoo/addons/openupgrade_scripts/readme/CONFIGURE.md,sha256=rnx8ADTYzVUB93PIG3Lib0iWBrphSfVRs6RMikklf3M,238
|
6
6
|
odoo/addons/openupgrade_scripts/readme/DESCRIPTION.md,sha256=6hwHccovmE9cfaV7PQPvKUvNJa-f_Uc1wgXyL_SrYck,86
|
7
7
|
odoo/addons/openupgrade_scripts/readme/INSTALL.md,sha256=NDKVZRv0J8BTqcSTD7JwUXL_AY-cDJoegn5IUTbEOFk,113
|
@@ -64,6 +64,7 @@ odoo/addons/openupgrade_scripts/scripts/base_address_extended/18.0.1.1/upgrade_a
|
|
64
64
|
odoo/addons/openupgrade_scripts/scripts/base_automation/18.0.1.0/upgrade_analysis.txt,sha256=8ooGM0yzoCYCrLSLZFUdnRP4FHa5ERYmcb1GrQU0olQ,189
|
65
65
|
odoo/addons/openupgrade_scripts/scripts/base_automation/18.0.1.0/upgrade_analysis_work.txt,sha256=91aIuac5OAVIRdaw0lnrwVoXefuO3sWxJwjCL-wf6V8,216
|
66
66
|
odoo/addons/openupgrade_scripts/scripts/base_geolocalize/18.0.2.1/upgrade_analysis.txt,sha256=ac0Y_K7O-5xYwkN-2YCcHh-8W-FtTPmzlBkVDK90JxI,171
|
67
|
+
odoo/addons/openupgrade_scripts/scripts/base_geolocalize/18.0.2.1/upgrade_analysis_work.txt,sha256=imJ2VUhSHcyv0LTiW-zfr8mhTjAOY1rbtrXTjghVQ50,187
|
67
68
|
odoo/addons/openupgrade_scripts/scripts/base_import/18.0.2.0/upgrade_analysis.txt,sha256=ZoYmUs-n2fW6LWlpqKkePCf1Bzw5ZNDLkuSeleytmMQ,156
|
68
69
|
odoo/addons/openupgrade_scripts/scripts/base_import/18.0.2.0/upgrade_analysis_work.txt,sha256=0KMCXySiVy91QuhP4Dc3hrXixLSaGQC8E9JBMbUu62Y,172
|
69
70
|
odoo/addons/openupgrade_scripts/scripts/base_import_module/18.0.1.0/upgrade_analysis.txt,sha256=gzpgBNHN8BbpaP7Oo8Def0BUkCy7kD-HFaowy9pDOn4,177
|
@@ -112,7 +113,7 @@ odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/noupdate_changes.xml,sha2
|
|
112
113
|
odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/post-migration.py,sha256=MR49bJFpXSxZQe1trNOGlLQ4Tjnwt-cC0ZIo241Nubg,386
|
113
114
|
odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/pre-migration.py,sha256=qL7zi0J4fmWToadlDrVv_13Vtud9_hFChi4QpEBjy-4,1069
|
114
115
|
odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/upgrade_analysis.txt,sha256=A3YeKHx-wSg0WFO1n2o0eUWb2ltHieQvGky73gM1tws,5778
|
115
|
-
odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/upgrade_analysis_work.txt,sha256=
|
116
|
+
odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/upgrade_analysis_work.txt,sha256=fRojEtP0WV8yuQQenLxpflO0Kf7XP3iNU5BJLuZi-jM,6112
|
116
117
|
odoo/addons/openupgrade_scripts/scripts/event_booth/18.0.1.1/upgrade_analysis.txt,sha256=e6ZiMcOCaGh9MiRYjoFUG-KsRo9e8Lk1eUr4b_oNKNc,156
|
117
118
|
odoo/addons/openupgrade_scripts/scripts/event_booth_sale/18.0.1.2/noupdate_changes.xml,sha256=7uQRXXjutKsNNbzy9ZWLnMYLjPBP4zZwWZ7qxBi-GiI,301
|
118
119
|
odoo/addons/openupgrade_scripts/scripts/event_booth_sale/18.0.1.2/upgrade_analysis.txt,sha256=uKJAh-1ROsX4v-bwSZMy5wUUociAHLBibCGSuvSZSqA,451
|
@@ -144,10 +145,12 @@ odoo/addons/openupgrade_scripts/scripts/hr/18.0.1.1/post-migration.py,sha256=dmm
|
|
144
145
|
odoo/addons/openupgrade_scripts/scripts/hr/18.0.1.1/pre-migration.py,sha256=EByvFmWejoFNEo2s9fozSGrrpE6ZURvjpDRUrB67oL4,1573
|
145
146
|
odoo/addons/openupgrade_scripts/scripts/hr/18.0.1.1/upgrade_analysis.txt,sha256=fZpu5piYDqHOpOrxChlzZ0RZCekN3eTEIV9DC529--w,4780
|
146
147
|
odoo/addons/openupgrade_scripts/scripts/hr/18.0.1.1/upgrade_analysis_work.txt,sha256=XiSQbufmJfTgyBTWG8LPQ8L59QK1Z20cbw1Iuc8Tl2c,5320
|
148
|
+
odoo/addons/openupgrade_scripts/scripts/hr_attendance/18.0.2.0/post-migration.py,sha256=jLs56mTqQjidqUziIbLoTlUt-Cby4yHCPqd133m4Qo0,1584
|
147
149
|
odoo/addons/openupgrade_scripts/scripts/hr_attendance/18.0.2.0/pre-migration.py,sha256=ee6SuWb4a2E7wJMVW07aLjQ0TY0aqV1i29GBi9Hk8N4,1291
|
148
150
|
odoo/addons/openupgrade_scripts/scripts/hr_attendance/18.0.2.0/upgrade_analysis.txt,sha256=a86KX65Zq9_-1t5vEoS9PlS-eOT_YL61vwI9N0DEHh4,2303
|
149
151
|
odoo/addons/openupgrade_scripts/scripts/hr_attendance/18.0.2.0/upgrade_analysis_work.txt,sha256=NzfLfJeMdGI7QVyhAU8JakKczR6Ii9mVKER0d6PT0z8,2668
|
150
152
|
odoo/addons/openupgrade_scripts/scripts/hr_calendar/18.0.1.0/upgrade_analysis.txt,sha256=dV6653kOoWySkXPgHvodW1MBxFJdvX-ABxneZaJGm6Y,361
|
153
|
+
odoo/addons/openupgrade_scripts/scripts/hr_calendar/18.0.1.0/upgrade_analysis_work.txt,sha256=pBNjG4Q2z0_dF8SYL_XgDzxtQI2N5hzCGuu9n8_yBGY,377
|
151
154
|
odoo/addons/openupgrade_scripts/scripts/hr_contract/18.0.1.0/noupdate_changes.xml,sha256=PkV4DydJ8vfXgFiRWKfxyy4NouAUSO32YafYq4MGLjw,257
|
152
155
|
odoo/addons/openupgrade_scripts/scripts/hr_contract/18.0.1.0/noupdate_changes_work.xml,sha256=TCqmpiZIFHHdZWXYXLg2c1lgPrPb6OLM0E7CEFAjInU,435
|
153
156
|
odoo/addons/openupgrade_scripts/scripts/hr_contract/18.0.1.0/post-migration.py,sha256=K54C29K8PWZIWsA-KpjEpSOPoIC13tcTmES_5YRz7Bk,284
|
@@ -527,6 +530,7 @@ odoo/addons/openupgrade_scripts/scripts/project_sms/18.0.1.0/upgrade_analysis_wo
|
|
527
530
|
odoo/addons/openupgrade_scripts/scripts/project_stock_account/18.0.1.0/upgrade_analysis.txt,sha256=NouJMv_g9vheVpAEVFGRHSAM4EY8Hdf26fY-eUN4m6A,750
|
528
531
|
odoo/addons/openupgrade_scripts/scripts/project_stock_account/18.0.1.0/upgrade_analysis_work.txt,sha256=zv4ffI-mLoeOi3HV3u0HJhQXB6172iaExKcYBotRkuI,838
|
529
532
|
odoo/addons/openupgrade_scripts/scripts/project_timesheet_holidays/18.0.1.0/upgrade_analysis.txt,sha256=BLR0AIDRkuAiEZL5i-IgZUeSbAXkrDpBBprhowvlLQY,201
|
533
|
+
odoo/addons/openupgrade_scripts/scripts/project_timesheet_holidays/18.0.1.0/upgrade_analysis_work.txt,sha256=eQHARGxSPFGjj2sFA-ZL2ANecCdUvCsAJx6oDjARu-o,217
|
530
534
|
odoo/addons/openupgrade_scripts/scripts/project_todo/18.0.1.0/noupdate_changes.xml,sha256=T2_NPrJLpea-bVxlENwmZHOyNKQeN7HUCNI2UVcxlnw,5561
|
531
535
|
odoo/addons/openupgrade_scripts/scripts/project_todo/18.0.1.0/post-migration.py,sha256=4UAO1x9az0gXYweh4km_bi3n8ImjwSg7GQsbYNoJEpY,1091
|
532
536
|
odoo/addons/openupgrade_scripts/scripts/project_todo/18.0.1.0/upgrade_analysis.txt,sha256=XmVoWbJznxZPygiq6awrsJkLPoltoUAjxxHPf5etKlw,465
|
@@ -574,6 +578,7 @@ odoo/addons/openupgrade_scripts/scripts/sale_expense/18.0.1.0/upgrade_analysis.t
|
|
574
578
|
odoo/addons/openupgrade_scripts/scripts/sale_expense_margin/18.0.1.0/upgrade_analysis.txt,sha256=9d62c8OD-bC7sknkGNfwteGPhnmi9OnL7DDCGu8F-Po,180
|
575
579
|
odoo/addons/openupgrade_scripts/scripts/sale_gelato/18.0.1.0/upgrade_analysis.txt,sha256=bHD_nc2kVSSTCRrJ0Zrgdsg1LxOm4iIeOS1Y7TylS_c,1551
|
576
580
|
odoo/addons/openupgrade_scripts/scripts/sale_loyalty/18.0.1.0/upgrade_analysis.txt,sha256=GtRQhyvDDdeU61rg91UGqPdspRmE7mRaYLYQ985ynoc,326
|
581
|
+
odoo/addons/openupgrade_scripts/scripts/sale_loyalty/18.0.1.0/upgrade_analysis_work.txt,sha256=GwL-wwYXyie2sFDYXJOHXIy9ztpbGw3avUTnRuWiswM,376
|
577
582
|
odoo/addons/openupgrade_scripts/scripts/sale_loyalty_delivery/18.0.1.0/upgrade_analysis.txt,sha256=vXFF1uoyToFc2nQuEoUFMaiuLdFthVm2oEKzmwVro_U,186
|
578
583
|
odoo/addons/openupgrade_scripts/scripts/sale_management/18.0.1.0/post-migration.py,sha256=GjPQjoNwyid6uJJJYi0YjYaWLjRYpZQHwcVpZfFZQgc,392
|
579
584
|
odoo/addons/openupgrade_scripts/scripts/sale_management/18.0.1.0/pre-migration.py,sha256=CPROnST7cs8OucYMU5LTwRpmOfZ_5LG7Ip6IjgtT3y4,633
|
@@ -642,11 +647,15 @@ odoo/addons/openupgrade_scripts/scripts/stock_fleet/18.0.1.0/upgrade_analysis.tx
|
|
642
647
|
odoo/addons/openupgrade_scripts/scripts/stock_landed_costs/18.0.1.1/pre-migration.py,sha256=5sqYe1x675BaAStei59LwFmgDyARpZ_VLteOpO_D1VQ,725
|
643
648
|
odoo/addons/openupgrade_scripts/scripts/stock_landed_costs/18.0.1.1/upgrade_analysis.txt,sha256=Ww0iaI9Ghhu8hOsEieEv-T42DGYKgy9avXD63H7Dkag,539
|
644
649
|
odoo/addons/openupgrade_scripts/scripts/stock_landed_costs/18.0.1.1/upgrade_analysis_work.txt,sha256=Y5sJA3j89zI6WP0219aG-57HuesNFJ0OE-L3rFxS0QY,688
|
650
|
+
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/18.0.1.0/post-migration.py,sha256=qpRyfkyywzWk2Z8BB-tTg-M-YWleF-PBGcW_ZAViDrY,1007
|
645
651
|
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/18.0.1.0/upgrade_analysis.txt,sha256=13RmqW-BJ6S1Bd66om7Cfg65MtB7Gn9p6Ts846iIrhw,1461
|
652
|
+
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/18.0.1.0/upgrade_analysis_work.txt,sha256=XykEynaQqP357_almcfyEGS3zRkVdkATef2FTmHrAV0,1659
|
646
653
|
odoo/addons/openupgrade_scripts/scripts/stock_sms/18.0.1.0/upgrade_analysis.txt,sha256=WmtD-QRPZnTjNKvErYIFRz_n-t4C2ttxPz_9eYkTOrw,150
|
647
654
|
odoo/addons/openupgrade_scripts/scripts/stock_sms/18.0.1.0/upgrade_analysis_work.txt,sha256=fvMhLfNLamiAHGIL_lGhW-LydBLO-uAYkX5bNJGfOu4,166
|
648
655
|
odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/noupdate_changes.xml,sha256=Ansb5uS_jmq_YeoS4MNYrI7yzsG83ON1k1av7ZJZRFA,977
|
656
|
+
odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/post-migration.py,sha256=w8r-gf9Twbqx-s_x03oTcrmtiTNSwbhepgZBN_halfc,1516
|
649
657
|
odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/upgrade_analysis.txt,sha256=DOc2gVtPlrHWGNHNvr3ZaZ7VEWgb4Y-7Wpoqk9EvPGM,2785
|
658
|
+
odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/upgrade_analysis_work.txt,sha256=nQ-uH0srvaKCK28t9mRZ1_gHrIeOg0OkCWe95l94ztk,2852
|
650
659
|
odoo/addons/openupgrade_scripts/scripts/transifex/18.0.1.0/upgrade_analysis.txt,sha256=9js2BMOhvgwKRc7amc1kIms0LLC9u6-SmqbXAl4MlUk,150
|
651
660
|
odoo/addons/openupgrade_scripts/scripts/uom/18.0.1.0/upgrade_analysis.txt,sha256=QNpF0ZKtfvAQ5CYA-S7iCVvfMBnNQZXwNhgtA6am5JM,132
|
652
661
|
odoo/addons/openupgrade_scripts/scripts/uom/18.0.1.0/upgrade_analysis_work.txt,sha256=AqU3yszlr_TyWcTURJB9vZfFuKg8ZeGnJ5ncywVygyE,148
|
@@ -674,7 +683,9 @@ odoo/addons/openupgrade_scripts/scripts/website_crm_livechat/18.0.1.0/upgrade_an
|
|
674
683
|
odoo/addons/openupgrade_scripts/scripts/website_crm_partner_assign/18.0.1.2/upgrade_analysis.txt,sha256=wtHbKP1SawIoS__3e1DOZpNten0s_sQyL5PqJpfB9w4,201
|
675
684
|
odoo/addons/openupgrade_scripts/scripts/website_customer/18.0.1.0/upgrade_analysis.txt,sha256=AY_85lJuSdn_TuL2yzXqoF7o2Q8vmwmXq0IDA5Jcp88,171
|
676
685
|
odoo/addons/openupgrade_scripts/scripts/website_event/18.0.1.4/noupdate_changes.xml,sha256=8V8VWnMK0SGiSVHmSEi4N4JtWrNu4tMjhYE_ltbK1Ok,640
|
686
|
+
odoo/addons/openupgrade_scripts/scripts/website_event/18.0.1.4/post-migration.py,sha256=czhY9DKyZwFok4IqOAdAqnuV3C8Y6dVwGEvFglwtU-w,297
|
677
687
|
odoo/addons/openupgrade_scripts/scripts/website_event/18.0.1.4/upgrade_analysis.txt,sha256=5lFitk1OazG7dbBIXT7I8neu90BA6gxr1sG7Lqz5fqY,5522
|
688
|
+
odoo/addons/openupgrade_scripts/scripts/website_event/18.0.1.4/upgrade_analysis_work.txt,sha256=ZMd2GJ3DnyOr48Jt7XVgKFSIvXZgUSHv6-Npi1_ejXk,5700
|
678
689
|
odoo/addons/openupgrade_scripts/scripts/website_event_booth/18.0.1.0/upgrade_analysis.txt,sha256=c47-Dwd4M9S-A4rt_mcG9OnG575XaMniOXz7Emjbz2c,180
|
679
690
|
odoo/addons/openupgrade_scripts/scripts/website_event_booth_exhibitor/18.0.1.1/upgrade_analysis.txt,sha256=m61WjKd1Qbo78pNqEjrg0Oo8OQqMSjDRoSpC8JGM2Yk,210
|
680
691
|
odoo/addons/openupgrade_scripts/scripts/website_event_booth_sale_exhibitor/18.0.1.0/upgrade_analysis.txt,sha256=5DW4vW8QV3NJW7Y1dXqHJghzFwdgOoN6bHnww3cqxrM,225
|
@@ -688,6 +699,7 @@ odoo/addons/openupgrade_scripts/scripts/website_forum/18.0.1.2/noupdate_changes.
|
|
688
699
|
odoo/addons/openupgrade_scripts/scripts/website_forum/18.0.1.2/upgrade_analysis.txt,sha256=ZG-8hgvT59iE0qeiosTRINK4dglH7D43vJkkrLQNeXM,713
|
689
700
|
odoo/addons/openupgrade_scripts/scripts/website_hr_recruitment/18.0.1.1/upgrade_analysis.txt,sha256=1MyS7_JKvWMwMN1MBXOpSVJLYqGlJOSAoZzCmX9PZ6w,362
|
690
701
|
odoo/addons/openupgrade_scripts/scripts/website_jitsi/18.0.1.0/upgrade_analysis.txt,sha256=UzHl2nfT05b9LOrVtS0ZMq1JlSmG2lWMuoMqOk-ib68,162
|
702
|
+
odoo/addons/openupgrade_scripts/scripts/website_jitsi/18.0.1.0/upgrade_analysis_work.txt,sha256=uw2qHsviz_FSLGW5IPLFRYm_RNM-K5pTD7beQ9zg-SA,178
|
691
703
|
odoo/addons/openupgrade_scripts/scripts/website_livechat/18.0.1.0/upgrade_analysis.txt,sha256=Z53ZRbF2Olol1BUE1zkLwPQedKI3NO59aOEQ_Zq2Bus,171
|
692
704
|
odoo/addons/openupgrade_scripts/scripts/website_livechat/18.0.1.0/upgrade_analysis_work.txt,sha256=xZEflFlJ792ZE2yEl99YFk4Tt3z3jeCaF1VzcnHjrfA,187
|
693
705
|
odoo/addons/openupgrade_scripts/scripts/website_partner/18.0.0.1/upgrade_analysis.txt,sha256=AqFRpGpvtcKlPvvOoTRK8Q7EEA_Bu2wDMvzlhPhwVMM,168
|
@@ -710,6 +722,7 @@ odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/upgrade_an
|
|
710
722
|
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/18.0.1.0/upgrade_analysis.txt,sha256=bTSciAg2bCbBcVYoostlp6AjqbFEez1xnVHLYZFdeM0,274
|
711
723
|
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/18.0.1.0/upgrade_analysis_work.txt,sha256=jOp6YqVYczcE7eCLK6qWHsEej3egflA9f0CKNAXRRMg,290
|
712
724
|
odoo/addons/openupgrade_scripts/scripts/website_sale_loyalty/18.0.1.0/upgrade_analysis.txt,sha256=99KJxKrOFiemi2WA9ihfINnYz0wn2i2kg2TcD1fjztE,183
|
725
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_loyalty/18.0.1.0/upgrade_analysis_work.txt,sha256=ZS8rS4HDLDWza7UEb9w9LxC-K4H6ntD4DM2bktov2H4,199
|
713
726
|
odoo/addons/openupgrade_scripts/scripts/website_sale_mass_mailing/18.0.1.0/upgrade_analysis.txt,sha256=IDYlw-vZEG0Vs9A73wkqSk0Y6ZMqxvVsXWy9e8NeK5M,397
|
714
727
|
odoo/addons/openupgrade_scripts/scripts/website_sale_mondialrelay/18.0.0.1/upgrade_analysis.txt,sha256=a66hGYiUDyDdBw5zRCyBbXJCfcNKtZpsUkjSbqxpg5I,317
|
715
728
|
odoo/addons/openupgrade_scripts/scripts/website_sale_slides/18.0.1.0/upgrade_analysis.txt,sha256=k3a7ZSiGThMV84GuOwPNc0mOGWOsErwWCfePA-ZnWCg,607
|
@@ -721,11 +734,13 @@ odoo/addons/openupgrade_scripts/scripts/website_sale_wishlist/18.0.1.0/upgrade_a
|
|
721
734
|
odoo/addons/openupgrade_scripts/scripts/website_slides/18.0.2.7/upgrade_analysis.txt,sha256=PGu98B2bgKDjoGVvqALFRvNxxh4sge3CtVwmyc7rFPc,363
|
722
735
|
odoo/addons/openupgrade_scripts/scripts/website_slides/18.0.2.7/upgrade_analysis_work.txt,sha256=g5F80jxerAosu-8XDNvt6D0DidR507BTu3NPA675URU,568
|
723
736
|
odoo/addons/openupgrade_scripts/scripts/website_slides_forum/18.0.1.0/upgrade_analysis.txt,sha256=6Ix8UYkykqxWaBOZhnHKG5u62HFsJAGrkfU-gktM0os,183
|
737
|
+
odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/post-migration.py,sha256=3UTxPDqCXXRwnWqQAsUjak8YEEPmconHiOn6MKfKtFU,991
|
724
738
|
odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_analysis.txt,sha256=wcWMIY69YC_EyJzYPtd-j0U80frmrXtQUFKUTLjbzHg,894
|
739
|
+
odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_analysis_work.txt,sha256=3gGJ4CXyTVKo2DN2jK7z4qniTWs7NMR3eKXIGdx_GPA,1227
|
725
740
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
726
741
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
727
742
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Jc0qAThlH5WnoSq6vPamjC8WyMkdo_9zkhDuU1qW1VI,12722
|
728
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
729
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
730
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
731
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
743
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info/METADATA,sha256=7cL803epWQiQSaLG4DxU1LFWEV96_LBn2rf-n1NFLTU,3812
|
744
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
745
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
746
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.323.dist-info/RECORD,,
|
File without changes
|