odoo-addon-openupgrade-scripts 18.0.1.0.0.303__py3-none-any.whl → 18.0.1.0.0.325__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/l10n_fr/18.0.2.1/pre-migration.py +12 -673
- 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.325.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.325.dist-info}/RECORD +22 -7
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.325.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.325.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
|
@@ -3,682 +3,21 @@
|
|
3
3
|
|
4
4
|
from openupgradelib import openupgrade
|
5
5
|
|
6
|
-
_xmlids_renames = [
|
7
|
-
(
|
8
|
-
"l10n_fr.account_fr_tag_charges_sociales",
|
9
|
-
"l10n_fr_account.account_fr_tag_charges_sociales",
|
10
|
-
),
|
11
|
-
("l10n_fr.account_fr_tag_salaires", "l10n_fr_account.account_fr_tag_salaires"),
|
12
|
-
("l10n_fr.tax_report", "l10n_fr_account.tax_report"),
|
13
|
-
("l10n_fr.tax_report_adjustment", "l10n_fr_account.tax_report_adjustment"),
|
14
|
-
("l10n_fr.tax_report_balance", "l10n_fr_account.tax_report_balance"),
|
15
|
-
(
|
16
|
-
"l10n_fr.tax_report_08_base_adjustment",
|
17
|
-
"l10n_fr_account.tax_report_08_base_adjustment",
|
18
|
-
),
|
19
|
-
(
|
20
|
-
"l10n_fr.tax_report_08_base_balance_from_tags",
|
21
|
-
"l10n_fr_account.tax_report_08_base_balance_from_tags",
|
22
|
-
),
|
23
|
-
("l10n_fr.tax_report_08_base_tag", "l10n_fr_account.tax_report_08_base_tag"),
|
24
|
-
("l10n_fr.tax_report_08_taxe_tag", "l10n_fr_account.tax_report_08_taxe_tag"),
|
25
|
-
(
|
26
|
-
"l10n_fr.tax_report_08_taxe_tag_no_rounding",
|
27
|
-
"l10n_fr_account.tax_report_08_taxe_tag_no_rounding",
|
28
|
-
),
|
29
|
-
(
|
30
|
-
"l10n_fr.tax_report_09_base_adjustment",
|
31
|
-
"l10n_fr_account.tax_report_09_base_adjustment",
|
32
|
-
),
|
33
|
-
(
|
34
|
-
"l10n_fr.tax_report_09_base_balance_from_tags",
|
35
|
-
"l10n_fr_account.tax_report_09_base_balance_from_tags",
|
36
|
-
),
|
37
|
-
("l10n_fr.tax_report_09_base_tag", "l10n_fr_account.tax_report_09_base_tag"),
|
38
|
-
("l10n_fr.tax_report_09_taxe_tag", "l10n_fr_account.tax_report_09_taxe_tag"),
|
39
|
-
(
|
40
|
-
"l10n_fr.tax_report_09_taxe_tag_no_rounding",
|
41
|
-
"l10n_fr_account.tax_report_09_taxe_tag_no_rounding",
|
42
|
-
),
|
43
|
-
(
|
44
|
-
"l10n_fr.tax_report_10_base_adjustment",
|
45
|
-
"l10n_fr_account.tax_report_10_base_adjustment",
|
46
|
-
),
|
47
|
-
(
|
48
|
-
"l10n_fr.tax_report_10_base_balance_from_tags",
|
49
|
-
"l10n_fr_account.tax_report_10_base_balance_from_tags",
|
50
|
-
),
|
51
|
-
("l10n_fr.tax_report_10_base_tag", "l10n_fr_account.tax_report_10_base_tag"),
|
52
|
-
("l10n_fr.tax_report_10_taxe_tag", "l10n_fr_account.tax_report_10_taxe_tag"),
|
53
|
-
(
|
54
|
-
"l10n_fr.tax_report_10_taxe_tag_no_rounding",
|
55
|
-
"l10n_fr_account.tax_report_10_taxe_tag_no_rounding",
|
56
|
-
),
|
57
|
-
(
|
58
|
-
"l10n_fr.tax_report_11_base_adjustment",
|
59
|
-
"l10n_fr_account.tax_report_11_base_adjustment",
|
60
|
-
),
|
61
|
-
(
|
62
|
-
"l10n_fr.tax_report_11_base_balance_from_tags",
|
63
|
-
"l10n_fr_account.tax_report_11_base_balance_from_tags",
|
64
|
-
),
|
65
|
-
("l10n_fr.tax_report_11_base_tag", "l10n_fr_account.tax_report_11_base_tag"),
|
66
|
-
("l10n_fr.tax_report_11_taxe_tag", "l10n_fr_account.tax_report_11_taxe_tag"),
|
67
|
-
(
|
68
|
-
"l10n_fr.tax_report_11_taxe_tag_no_rounding",
|
69
|
-
"l10n_fr_account.tax_report_11_taxe_tag_no_rounding",
|
70
|
-
),
|
71
|
-
(
|
72
|
-
"l10n_fr.tax_report_13_base_adjustment",
|
73
|
-
"l10n_fr_account.tax_report_13_base_adjustment",
|
74
|
-
),
|
75
|
-
(
|
76
|
-
"l10n_fr.tax_report_13_base_balance_from_tags",
|
77
|
-
"l10n_fr_account.tax_report_13_base_balance_from_tags",
|
78
|
-
),
|
79
|
-
("l10n_fr.tax_report_13_base_tag", "l10n_fr_account.tax_report_13_base_tag"),
|
80
|
-
("l10n_fr.tax_report_13_taxe_tag", "l10n_fr_account.tax_report_13_taxe_tag"),
|
81
|
-
(
|
82
|
-
"l10n_fr.tax_report_14_base_adjustment",
|
83
|
-
"l10n_fr_account.tax_report_14_base_adjustment",
|
84
|
-
),
|
85
|
-
(
|
86
|
-
"l10n_fr.tax_report_14_base_balance_from_tags",
|
87
|
-
"l10n_fr_account.tax_report_14_base_balance_from_tags",
|
88
|
-
),
|
89
|
-
("l10n_fr.tax_report_14_base_tag", "l10n_fr_account.tax_report_14_base_tag"),
|
90
|
-
("l10n_fr.tax_report_14_taxe_tag", "l10n_fr_account.tax_report_14_taxe_tag"),
|
91
|
-
("l10n_fr.tax_report_15_1_tag", "l10n_fr_account.tax_report_15_1_tag"),
|
92
|
-
("l10n_fr.tax_report_15_2_tag", "l10n_fr_account.tax_report_15_2_tag"),
|
93
|
-
("l10n_fr.tax_report_15_tag", "l10n_fr_account.tax_report_15_tag"),
|
94
|
-
("l10n_fr.tax_report_16_formula", "l10n_fr_account.tax_report_16_formula"),
|
95
|
-
("l10n_fr.tax_report_17_tag", "l10n_fr_account.tax_report_17_tag"),
|
96
|
-
("l10n_fr.tax_report_18_tag", "l10n_fr_account.tax_report_18_tag"),
|
97
|
-
("l10n_fr.tax_report_19_tag", "l10n_fr_account.tax_report_19_tag"),
|
98
|
-
("l10n_fr.tax_report_20_tag", "l10n_fr_account.tax_report_20_tag"),
|
99
|
-
("l10n_fr.tax_report_21_tag", "l10n_fr_account.tax_report_21_tag"),
|
100
|
-
("l10n_fr.tax_report_22A_tag", "l10n_fr_account.tax_report_22A_tag"),
|
101
|
-
(
|
102
|
-
"l10n_fr.tax_report_22_applied_carryover",
|
103
|
-
"l10n_fr_account.tax_report_22_applied_carryover",
|
104
|
-
),
|
105
|
-
("l10n_fr.tax_report_22_balance", "l10n_fr_account.tax_report_22_balance"),
|
106
|
-
("l10n_fr.tax_report_22_tag", "l10n_fr_account.tax_report_22_tag"),
|
107
|
-
("l10n_fr.tax_report_23_formula", "l10n_fr_account.tax_report_23_formula"),
|
108
|
-
("l10n_fr.tax_report_24_tag", "l10n_fr_account.tax_report_24_tag"),
|
109
|
-
("l10n_fr.tax_report_25_formula", "l10n_fr_account.tax_report_25_formula"),
|
110
|
-
("l10n_fr.tax_report_27_carryover", "l10n_fr_account.tax_report_27_carryover"),
|
111
|
-
("l10n_fr.tax_report_27_formula", "l10n_fr_account.tax_report_27_formula"),
|
112
|
-
(
|
113
|
-
"l10n_fr.tax_report_27_formula_temp",
|
114
|
-
"l10n_fr_account.tax_report_27_formula_temp",
|
115
|
-
),
|
116
|
-
("l10n_fr.tax_report_28_formula", "l10n_fr_account.tax_report_28_formula"),
|
117
|
-
("l10n_fr.tax_report_29_tag", "l10n_fr_account.tax_report_29_tag"),
|
118
|
-
("l10n_fr.tax_report_2C_tag", "l10n_fr_account.tax_report_2C_tag"),
|
119
|
-
("l10n_fr.tax_report_2E_tag", "l10n_fr_account.tax_report_2E_tag"),
|
120
|
-
("l10n_fr.tax_report_32_formula", "l10n_fr_account.tax_report_32_formula"),
|
121
|
-
("l10n_fr.tax_report_5B_tag", "l10n_fr_account.tax_report_5B_tag"),
|
122
|
-
(
|
123
|
-
"l10n_fr.tax_report_9B_base_adjustment",
|
124
|
-
"l10n_fr_account.tax_report_9B_base_adjustment",
|
125
|
-
),
|
126
|
-
(
|
127
|
-
"l10n_fr.tax_report_9B_base_balance_from_tags",
|
128
|
-
"l10n_fr_account.tax_report_9B_base_balance_from_tags",
|
129
|
-
),
|
130
|
-
("l10n_fr.tax_report_9B_base_tag", "l10n_fr_account.tax_report_9B_base_tag"),
|
131
|
-
("l10n_fr.tax_report_9B_taxe_tag", "l10n_fr_account.tax_report_9B_taxe_tag"),
|
132
|
-
(
|
133
|
-
"l10n_fr.tax_report_9B_taxe_tag_no_rounding",
|
134
|
-
"l10n_fr_account.tax_report_9B_taxe_tag_no_rounding",
|
135
|
-
),
|
136
|
-
("l10n_fr.tax_report_A1_adjustment", "l10n_fr_account.tax_report_A1_adjustment"),
|
137
|
-
(
|
138
|
-
"l10n_fr.tax_report_A1_balance_from_tags",
|
139
|
-
"l10n_fr_account.tax_report_A1_balance_from_tags",
|
140
|
-
),
|
141
|
-
("l10n_fr.tax_report_A1_tag", "l10n_fr_account.tax_report_A1_tag"),
|
142
|
-
("l10n_fr.tax_report_A2_adjustment", "l10n_fr_account.tax_report_A2_adjustment"),
|
143
|
-
(
|
144
|
-
"l10n_fr.tax_report_A2_balance_from_tags",
|
145
|
-
"l10n_fr_account.tax_report_A2_balance_from_tags",
|
146
|
-
),
|
147
|
-
("l10n_fr.tax_report_A2_tag", "l10n_fr_account.tax_report_A2_tag"),
|
148
|
-
("l10n_fr.tax_report_A3_adjustment", "l10n_fr_account.tax_report_A3_adjustment"),
|
149
|
-
(
|
150
|
-
"l10n_fr.tax_report_A3_balance_from_tags",
|
151
|
-
"l10n_fr_account.tax_report_A3_balance_from_tags",
|
152
|
-
),
|
153
|
-
("l10n_fr.tax_report_A3_tag", "l10n_fr_account.tax_report_A3_tag"),
|
154
|
-
("l10n_fr.tax_report_A4_adjustment", "l10n_fr_account.tax_report_A4_adjustment"),
|
155
|
-
(
|
156
|
-
"l10n_fr.tax_report_A4_balance_from_tags",
|
157
|
-
"l10n_fr_account.tax_report_A4_balance_from_tags",
|
158
|
-
),
|
159
|
-
("l10n_fr.tax_report_A4_tag", "l10n_fr_account.tax_report_A4_tag"),
|
160
|
-
("l10n_fr.tax_report_A5_adjustment", "l10n_fr_account.tax_report_A5_adjustment"),
|
161
|
-
(
|
162
|
-
"l10n_fr.tax_report_A5_balance_from_tags",
|
163
|
-
"l10n_fr_account.tax_report_A5_balance_from_tags",
|
164
|
-
),
|
165
|
-
("l10n_fr.tax_report_A5_tag", "l10n_fr_account.tax_report_A5_tag"),
|
166
|
-
("l10n_fr.tax_report_AA_tag", "l10n_fr_account.tax_report_AA_tag"),
|
167
|
-
("l10n_fr.tax_report_B1_adjustment", "l10n_fr_account.tax_report_B1_adjustment"),
|
168
|
-
(
|
169
|
-
"l10n_fr.tax_report_B1_balance_from_tags",
|
170
|
-
"l10n_fr_account.tax_report_B1_balance_from_tags",
|
171
|
-
),
|
172
|
-
("l10n_fr.tax_report_B1_tag", "l10n_fr_account.tax_report_B1_tag"),
|
173
|
-
("l10n_fr.tax_report_B2_adjustment", "l10n_fr_account.tax_report_B2_adjustment"),
|
174
|
-
(
|
175
|
-
"l10n_fr.tax_report_B2_balance_from_tags",
|
176
|
-
"l10n_fr_account.tax_report_B2_balance_from_tags",
|
177
|
-
),
|
178
|
-
("l10n_fr.tax_report_B2_tag", "l10n_fr_account.tax_report_B2_tag"),
|
179
|
-
("l10n_fr.tax_report_B3_adjustment", "l10n_fr_account.tax_report_B3_adjustment"),
|
180
|
-
(
|
181
|
-
"l10n_fr.tax_report_B3_balance_from_tags",
|
182
|
-
"l10n_fr_account.tax_report_B3_balance_from_tags",
|
183
|
-
),
|
184
|
-
("l10n_fr.tax_report_B3_tag", "l10n_fr_account.tax_report_B3_tag"),
|
185
|
-
("l10n_fr.tax_report_B4_adjustment", "l10n_fr_account.tax_report_B4_adjustment"),
|
186
|
-
(
|
187
|
-
"l10n_fr.tax_report_B4_balance_from_tags",
|
188
|
-
"l10n_fr_account.tax_report_B4_balance_from_tags",
|
189
|
-
),
|
190
|
-
("l10n_fr.tax_report_B4_tag", "l10n_fr_account.tax_report_B4_tag"),
|
191
|
-
("l10n_fr.tax_report_B5_adjustment", "l10n_fr_account.tax_report_B5_adjustment"),
|
192
|
-
(
|
193
|
-
"l10n_fr.tax_report_B5_balance_from_tags",
|
194
|
-
"l10n_fr_account.tax_report_B5_balance_from_tags",
|
195
|
-
),
|
196
|
-
("l10n_fr.tax_report_B5_tag", "l10n_fr_account.tax_report_B5_tag"),
|
197
|
-
("l10n_fr.tax_report_E1_adjustment", "l10n_fr_account.tax_report_E1_adjustment"),
|
198
|
-
(
|
199
|
-
"l10n_fr.tax_report_E1_balance_from_tags",
|
200
|
-
"l10n_fr_account.tax_report_E1_balance_from_tags",
|
201
|
-
),
|
202
|
-
("l10n_fr.tax_report_E1_tag", "l10n_fr_account.tax_report_E1_tag"),
|
203
|
-
("l10n_fr.tax_report_E2_adjustment", "l10n_fr_account.tax_report_E2_adjustment"),
|
204
|
-
(
|
205
|
-
"l10n_fr.tax_report_E2_balance_from_tags",
|
206
|
-
"l10n_fr_account.tax_report_E2_balance_from_tags",
|
207
|
-
),
|
208
|
-
("l10n_fr.tax_report_E2_tag", "l10n_fr_account.tax_report_E2_tag"),
|
209
|
-
("l10n_fr.tax_report_E3_adjustment", "l10n_fr_account.tax_report_E3_adjustment"),
|
210
|
-
(
|
211
|
-
"l10n_fr.tax_report_E3_balance_from_tags",
|
212
|
-
"l10n_fr_account.tax_report_E3_balance_from_tags",
|
213
|
-
),
|
214
|
-
("l10n_fr.tax_report_E3_tag", "l10n_fr_account.tax_report_E3_tag"),
|
215
|
-
("l10n_fr.tax_report_E4_adjustment", "l10n_fr_account.tax_report_E4_adjustment"),
|
216
|
-
(
|
217
|
-
"l10n_fr.tax_report_E4_balance_from_tags",
|
218
|
-
"l10n_fr_account.tax_report_E4_balance_from_tags",
|
219
|
-
),
|
220
|
-
("l10n_fr.tax_report_E4_tag", "l10n_fr_account.tax_report_E4_tag"),
|
221
|
-
("l10n_fr.tax_report_E5_adjustment", "l10n_fr_account.tax_report_E5_adjustment"),
|
222
|
-
(
|
223
|
-
"l10n_fr.tax_report_E5_balance_from_tags",
|
224
|
-
"l10n_fr_account.tax_report_E5_balance_from_tags",
|
225
|
-
),
|
226
|
-
("l10n_fr.tax_report_E5_tag", "l10n_fr_account.tax_report_E5_tag"),
|
227
|
-
("l10n_fr.tax_report_E6_adjustment", "l10n_fr_account.tax_report_E6_adjustment"),
|
228
|
-
(
|
229
|
-
"l10n_fr.tax_report_E6_balance_from_tags",
|
230
|
-
"l10n_fr_account.tax_report_E6_balance_from_tags",
|
231
|
-
),
|
232
|
-
("l10n_fr.tax_report_E6_tag", "l10n_fr_account.tax_report_E6_tag"),
|
233
|
-
("l10n_fr.tax_report_F1_adjustment", "l10n_fr_account.tax_report_F1_adjustment"),
|
234
|
-
(
|
235
|
-
"l10n_fr.tax_report_F1_balance_from_tags",
|
236
|
-
"l10n_fr_account.tax_report_F1_balance_from_tags",
|
237
|
-
),
|
238
|
-
("l10n_fr.tax_report_F1_tag", "l10n_fr_account.tax_report_F1_tag"),
|
239
|
-
("l10n_fr.tax_report_F2_adjustment", "l10n_fr_account.tax_report_F2_adjustment"),
|
240
|
-
(
|
241
|
-
"l10n_fr.tax_report_F2_balance_from_tags",
|
242
|
-
"l10n_fr_account.tax_report_F2_balance_from_tags",
|
243
|
-
),
|
244
|
-
("l10n_fr.tax_report_F2_tag", "l10n_fr_account.tax_report_F2_tag"),
|
245
|
-
("l10n_fr.tax_report_F3_adjustment", "l10n_fr_account.tax_report_F3_adjustment"),
|
246
|
-
(
|
247
|
-
"l10n_fr.tax_report_F3_balance_from_tags",
|
248
|
-
"l10n_fr_account.tax_report_F3_balance_from_tags",
|
249
|
-
),
|
250
|
-
("l10n_fr.tax_report_F3_tag", "l10n_fr_account.tax_report_F3_tag"),
|
251
|
-
("l10n_fr.tax_report_F4_adjustment", "l10n_fr_account.tax_report_F4_adjustment"),
|
252
|
-
(
|
253
|
-
"l10n_fr.tax_report_F4_balance_from_tags",
|
254
|
-
"l10n_fr_account.tax_report_F4_balance_from_tags",
|
255
|
-
),
|
256
|
-
("l10n_fr.tax_report_F4_tag", "l10n_fr_account.tax_report_F4_tag"),
|
257
|
-
("l10n_fr.tax_report_F5_adjustment", "l10n_fr_account.tax_report_F5_adjustment"),
|
258
|
-
(
|
259
|
-
"l10n_fr.tax_report_F5_balance_from_tags",
|
260
|
-
"l10n_fr_account.tax_report_F5_balance_from_tags",
|
261
|
-
),
|
262
|
-
("l10n_fr.tax_report_F5_tag", "l10n_fr_account.tax_report_F5_tag"),
|
263
|
-
("l10n_fr.tax_report_F6_adjustment", "l10n_fr_account.tax_report_F6_adjustment"),
|
264
|
-
(
|
265
|
-
"l10n_fr.tax_report_F6_balance_from_tags",
|
266
|
-
"l10n_fr_account.tax_report_F6_balance_from_tags",
|
267
|
-
),
|
268
|
-
("l10n_fr.tax_report_F6_tag", "l10n_fr_account.tax_report_F6_tag"),
|
269
|
-
("l10n_fr.tax_report_F7_adjustment", "l10n_fr_account.tax_report_F7_adjustment"),
|
270
|
-
(
|
271
|
-
"l10n_fr.tax_report_F7_balance_from_tags",
|
272
|
-
"l10n_fr_account.tax_report_F7_balance_from_tags",
|
273
|
-
),
|
274
|
-
("l10n_fr.tax_report_F7_tag", "l10n_fr_account.tax_report_F7_tag"),
|
275
|
-
("l10n_fr.tax_report_F8_adjustment", "l10n_fr_account.tax_report_F8_adjustment"),
|
276
|
-
(
|
277
|
-
"l10n_fr.tax_report_F8_balance_from_tags",
|
278
|
-
"l10n_fr_account.tax_report_F8_balance_from_tags",
|
279
|
-
),
|
280
|
-
("l10n_fr.tax_report_F8_tag", "l10n_fr_account.tax_report_F8_tag"),
|
281
|
-
("l10n_fr.tax_report_F9_adjustment", "l10n_fr_account.tax_report_F9_adjustment"),
|
282
|
-
(
|
283
|
-
"l10n_fr.tax_report_F9_balance_from_tags",
|
284
|
-
"l10n_fr_account.tax_report_F9_balance_from_tags",
|
285
|
-
),
|
286
|
-
("l10n_fr.tax_report_F9_tag", "l10n_fr_account.tax_report_F9_tag"),
|
287
|
-
(
|
288
|
-
"l10n_fr.tax_report_I1_base_adjustment",
|
289
|
-
"l10n_fr_account.tax_report_I1_base_adjustment",
|
290
|
-
),
|
291
|
-
(
|
292
|
-
"l10n_fr.tax_report_I1_base_balance_from_tags",
|
293
|
-
"l10n_fr_account.tax_report_I1_base_balance_from_tags",
|
294
|
-
),
|
295
|
-
("l10n_fr.tax_report_I1_base_tag", "l10n_fr_account.tax_report_I1_base_tag"),
|
296
|
-
("l10n_fr.tax_report_I1_taxe_tag", "l10n_fr_account.tax_report_I1_taxe_tag"),
|
297
|
-
(
|
298
|
-
"l10n_fr.tax_report_I1_taxe_tag_no_rounding",
|
299
|
-
"l10n_fr_account.tax_report_I1_taxe_tag_no_rounding",
|
300
|
-
),
|
301
|
-
(
|
302
|
-
"l10n_fr.tax_report_I2_base_adjustment",
|
303
|
-
"l10n_fr_account.tax_report_I2_base_adjustment",
|
304
|
-
),
|
305
|
-
(
|
306
|
-
"l10n_fr.tax_report_I2_base_balance_from_tags",
|
307
|
-
"l10n_fr_account.tax_report_I2_base_balance_from_tags",
|
308
|
-
),
|
309
|
-
("l10n_fr.tax_report_I2_base_tag", "l10n_fr_account.tax_report_I2_base_tag"),
|
310
|
-
("l10n_fr.tax_report_I2_taxe_tag", "l10n_fr_account.tax_report_I2_taxe_tag"),
|
311
|
-
(
|
312
|
-
"l10n_fr.tax_report_I2_taxe_tag_no_rounding",
|
313
|
-
"l10n_fr_account.tax_report_I2_taxe_tag_no_rounding",
|
314
|
-
),
|
315
|
-
(
|
316
|
-
"l10n_fr.tax_report_I3_base_adjustment",
|
317
|
-
"l10n_fr_account.tax_report_I3_base_adjustment",
|
318
|
-
),
|
319
|
-
(
|
320
|
-
"l10n_fr.tax_report_I3_base_balance_from_tags",
|
321
|
-
"l10n_fr_account.tax_report_I3_base_balance_from_tags",
|
322
|
-
),
|
323
|
-
("l10n_fr.tax_report_I3_base_tag", "l10n_fr_account.tax_report_I3_base_tag"),
|
324
|
-
("l10n_fr.tax_report_I3_taxe_tag", "l10n_fr_account.tax_report_I3_taxe_tag"),
|
325
|
-
(
|
326
|
-
"l10n_fr.tax_report_I3_taxe_tag_no_rounding",
|
327
|
-
"l10n_fr_account.tax_report_I3_taxe_tag_no_rounding",
|
328
|
-
),
|
329
|
-
(
|
330
|
-
"l10n_fr.tax_report_I4_base_adjustment",
|
331
|
-
"l10n_fr_account.tax_report_I4_base_adjustment",
|
332
|
-
),
|
333
|
-
(
|
334
|
-
"l10n_fr.tax_report_I4_base_balance_from_tags",
|
335
|
-
"l10n_fr_account.tax_report_I4_base_balance_from_tags",
|
336
|
-
),
|
337
|
-
("l10n_fr.tax_report_I4_base_tag", "l10n_fr_account.tax_report_I4_base_tag"),
|
338
|
-
("l10n_fr.tax_report_I4_taxe_tag", "l10n_fr_account.tax_report_I4_taxe_tag"),
|
339
|
-
(
|
340
|
-
"l10n_fr.tax_report_I4_taxe_tag_no_rounding",
|
341
|
-
"l10n_fr_account.tax_report_I4_taxe_tag_no_rounding",
|
342
|
-
),
|
343
|
-
(
|
344
|
-
"l10n_fr.tax_report_I5_base_adjustment",
|
345
|
-
"l10n_fr_account.tax_report_I5_base_adjustment",
|
346
|
-
),
|
347
|
-
(
|
348
|
-
"l10n_fr.tax_report_I5_base_balance_from_tags",
|
349
|
-
"l10n_fr_account.tax_report_I5_base_balance_from_tags",
|
350
|
-
),
|
351
|
-
("l10n_fr.tax_report_I5_base_tag", "l10n_fr_account.tax_report_I5_base_tag"),
|
352
|
-
("l10n_fr.tax_report_I5_taxe_tag", "l10n_fr_account.tax_report_I5_taxe_tag"),
|
353
|
-
(
|
354
|
-
"l10n_fr.tax_report_I5_taxe_tag_no_rounding",
|
355
|
-
"l10n_fr_account.tax_report_I5_taxe_tag_no_rounding",
|
356
|
-
),
|
357
|
-
(
|
358
|
-
"l10n_fr.tax_report_I6_base_adjustment",
|
359
|
-
"l10n_fr_account.tax_report_I6_base_adjustment",
|
360
|
-
),
|
361
|
-
(
|
362
|
-
"l10n_fr.tax_report_I6_base_balance_from_tags",
|
363
|
-
"l10n_fr_account.tax_report_I6_base_balance_from_tags",
|
364
|
-
),
|
365
|
-
("l10n_fr.tax_report_I6_base_tag", "l10n_fr_account.tax_report_I6_base_tag"),
|
366
|
-
("l10n_fr.tax_report_I6_taxe_tag", "l10n_fr_account.tax_report_I6_taxe_tag"),
|
367
|
-
(
|
368
|
-
"l10n_fr.tax_report_I6_taxe_tag_no_rounding",
|
369
|
-
"l10n_fr_account.tax_report_I6_taxe_tag_no_rounding",
|
370
|
-
),
|
371
|
-
(
|
372
|
-
"l10n_fr.tax_report_P1_base_adjustment",
|
373
|
-
"l10n_fr_account.tax_report_P1_base_adjustment",
|
374
|
-
),
|
375
|
-
(
|
376
|
-
"l10n_fr.tax_report_P1_base_balance_from_tags",
|
377
|
-
"l10n_fr_account.tax_report_P1_base_balance_from_tags",
|
378
|
-
),
|
379
|
-
("l10n_fr.tax_report_P1_base_tag", "l10n_fr_account.tax_report_P1_base_tag"),
|
380
|
-
("l10n_fr.tax_report_P1_taxe_tag", "l10n_fr_account.tax_report_P1_taxe_tag"),
|
381
|
-
(
|
382
|
-
"l10n_fr.tax_report_P1_taxe_tag_no_rounding",
|
383
|
-
"l10n_fr_account.tax_report_P1_taxe_tag_no_rounding",
|
384
|
-
),
|
385
|
-
(
|
386
|
-
"l10n_fr.tax_report_P2_base_adjustment",
|
387
|
-
"l10n_fr_account.tax_report_P2_base_adjustment",
|
388
|
-
),
|
389
|
-
(
|
390
|
-
"l10n_fr.tax_report_P2_base_balance_from_tags",
|
391
|
-
"l10n_fr_account.tax_report_P2_base_balance_from_tags",
|
392
|
-
),
|
393
|
-
("l10n_fr.tax_report_P2_base_tag", "l10n_fr_account.tax_report_P2_base_tag"),
|
394
|
-
("l10n_fr.tax_report_P2_taxe_tag", "l10n_fr_account.tax_report_P2_taxe_tag"),
|
395
|
-
(
|
396
|
-
"l10n_fr.tax_report_P2_taxe_tag_no_rounding",
|
397
|
-
"l10n_fr_account.tax_report_P2_taxe_tag_no_rounding",
|
398
|
-
),
|
399
|
-
(
|
400
|
-
"l10n_fr.tax_report_T1_base_adjustment",
|
401
|
-
"l10n_fr_account.tax_report_T1_base_adjustment",
|
402
|
-
),
|
403
|
-
(
|
404
|
-
"l10n_fr.tax_report_T1_base_balance_from_tags",
|
405
|
-
"l10n_fr_account.tax_report_T1_base_balance_from_tags",
|
406
|
-
),
|
407
|
-
("l10n_fr.tax_report_T1_base_tag", "l10n_fr_account.tax_report_T1_base_tag"),
|
408
|
-
("l10n_fr.tax_report_T1_taxe_tag", "l10n_fr_account.tax_report_T1_taxe_tag"),
|
409
|
-
(
|
410
|
-
"l10n_fr.tax_report_T1_taxe_tag_no_rounding",
|
411
|
-
"l10n_fr_account.tax_report_T1_taxe_tag_no_rounding",
|
412
|
-
),
|
413
|
-
(
|
414
|
-
"l10n_fr.tax_report_T2_base_adjustment",
|
415
|
-
"l10n_fr_account.tax_report_T2_base_adjustment",
|
416
|
-
),
|
417
|
-
(
|
418
|
-
"l10n_fr.tax_report_T2_base_balance_from_tags",
|
419
|
-
"l10n_fr_account.tax_report_T2_base_balance_from_tags",
|
420
|
-
),
|
421
|
-
("l10n_fr.tax_report_T2_base_tag", "l10n_fr_account.tax_report_T2_base_tag"),
|
422
|
-
("l10n_fr.tax_report_T2_taxe_tag", "l10n_fr_account.tax_report_T2_taxe_tag"),
|
423
|
-
(
|
424
|
-
"l10n_fr.tax_report_T2_taxe_tag_no_rounding",
|
425
|
-
"l10n_fr_account.tax_report_T2_taxe_tag_no_rounding",
|
426
|
-
),
|
427
|
-
(
|
428
|
-
"l10n_fr.tax_report_T3_base_adjustment",
|
429
|
-
"l10n_fr_account.tax_report_T3_base_adjustment",
|
430
|
-
),
|
431
|
-
(
|
432
|
-
"l10n_fr.tax_report_T3_base_balance_from_tags",
|
433
|
-
"l10n_fr_account.tax_report_T3_base_balance_from_tags",
|
434
|
-
),
|
435
|
-
("l10n_fr.tax_report_T3_base_tag", "l10n_fr_account.tax_report_T3_base_tag"),
|
436
|
-
("l10n_fr.tax_report_T3_taxe_tag", "l10n_fr_account.tax_report_T3_taxe_tag"),
|
437
|
-
(
|
438
|
-
"l10n_fr.tax_report_T3_taxe_tag_no_rounding",
|
439
|
-
"l10n_fr_account.tax_report_T3_taxe_tag_no_rounding",
|
440
|
-
),
|
441
|
-
(
|
442
|
-
"l10n_fr.tax_report_T4_base_adjustment",
|
443
|
-
"l10n_fr_account.tax_report_T4_base_adjustment",
|
444
|
-
),
|
445
|
-
(
|
446
|
-
"l10n_fr.tax_report_T4_base_balance_from_tags",
|
447
|
-
"l10n_fr_account.tax_report_T4_base_balance_from_tags",
|
448
|
-
),
|
449
|
-
("l10n_fr.tax_report_T4_base_tag", "l10n_fr_account.tax_report_T4_base_tag"),
|
450
|
-
("l10n_fr.tax_report_T4_taxe_tag", "l10n_fr_account.tax_report_T4_taxe_tag"),
|
451
|
-
(
|
452
|
-
"l10n_fr.tax_report_T4_taxe_tag_no_rounding",
|
453
|
-
"l10n_fr_account.tax_report_T4_taxe_tag_no_rounding",
|
454
|
-
),
|
455
|
-
(
|
456
|
-
"l10n_fr.tax_report_T5_base_adjustment",
|
457
|
-
"l10n_fr_account.tax_report_T5_base_adjustment",
|
458
|
-
),
|
459
|
-
(
|
460
|
-
"l10n_fr.tax_report_T5_base_balance_from_tags",
|
461
|
-
"l10n_fr_account.tax_report_T5_base_balance_from_tags",
|
462
|
-
),
|
463
|
-
("l10n_fr.tax_report_T5_base_tag", "l10n_fr_account.tax_report_T5_base_tag"),
|
464
|
-
("l10n_fr.tax_report_T5_taxe_tag", "l10n_fr_account.tax_report_T5_taxe_tag"),
|
465
|
-
(
|
466
|
-
"l10n_fr.tax_report_T5_taxe_tag_no_rounding",
|
467
|
-
"l10n_fr_account.tax_report_T5_taxe_tag_no_rounding",
|
468
|
-
),
|
469
|
-
(
|
470
|
-
"l10n_fr.tax_report_T6_base_adjustment",
|
471
|
-
"l10n_fr_account.tax_report_T6_base_adjustment",
|
472
|
-
),
|
473
|
-
(
|
474
|
-
"l10n_fr.tax_report_T6_base_balance_from_tags",
|
475
|
-
"l10n_fr_account.tax_report_T6_base_balance_from_tags",
|
476
|
-
),
|
477
|
-
("l10n_fr.tax_report_T6_base_tag", "l10n_fr_account.tax_report_T6_base_tag"),
|
478
|
-
("l10n_fr.tax_report_T6_taxe_tag", "l10n_fr_account.tax_report_T6_taxe_tag"),
|
479
|
-
(
|
480
|
-
"l10n_fr.tax_report_T6_taxe_tag_no_rounding",
|
481
|
-
"l10n_fr_account.tax_report_T6_taxe_tag_no_rounding",
|
482
|
-
),
|
483
|
-
(
|
484
|
-
"l10n_fr.tax_report_T7_base_adjustment",
|
485
|
-
"l10n_fr_account.tax_report_T7_base_adjustment",
|
486
|
-
),
|
487
|
-
(
|
488
|
-
"l10n_fr.tax_report_T7_base_balance_from_tags",
|
489
|
-
"l10n_fr_account.tax_report_T7_base_balance_from_tags",
|
490
|
-
),
|
491
|
-
("l10n_fr.tax_report_T7_base_tag", "l10n_fr_account.tax_report_T7_base_tag"),
|
492
|
-
("l10n_fr.tax_report_T7_taxe_tag", "l10n_fr_account.tax_report_T7_taxe_tag"),
|
493
|
-
("l10n_fr.tax_report_TICC_tag", "l10n_fr_account.tax_report_TICC_tag"),
|
494
|
-
("l10n_fr.tax_report_TICFE_tag", "l10n_fr_account.tax_report_TICFE_tag"),
|
495
|
-
("l10n_fr.tax_report_TICGN_tag", "l10n_fr_account.tax_report_TICGN_tag"),
|
496
|
-
(
|
497
|
-
"l10n_fr.tax_report_TIC_total_formula",
|
498
|
-
"l10n_fr_account.tax_report_TIC_total_formula",
|
499
|
-
),
|
500
|
-
("l10n_fr.tax_report_X1_tag", "l10n_fr_account.tax_report_X1_tag"),
|
501
|
-
("l10n_fr.tax_report_X2_tag", "l10n_fr_account.tax_report_X2_tag"),
|
502
|
-
("l10n_fr.tax_report_X3_tag", "l10n_fr_account.tax_report_X3_tag"),
|
503
|
-
("l10n_fr.tax_report_X4_formula", "l10n_fr_account.tax_report_X4_formula"),
|
504
|
-
("l10n_fr.tax_report_Y1_formula", "l10n_fr_account.tax_report_Y1_formula"),
|
505
|
-
("l10n_fr.tax_report_Y2_formula", "l10n_fr_account.tax_report_Y2_formula"),
|
506
|
-
("l10n_fr.tax_report_Y3_formula", "l10n_fr_account.tax_report_Y3_formula"),
|
507
|
-
("l10n_fr.tax_report_Z1_tag", "l10n_fr_account.tax_report_Z1_tag"),
|
508
|
-
("l10n_fr.tax_report_Z2_tag", "l10n_fr_account.tax_report_Z2_tag"),
|
509
|
-
("l10n_fr.tax_report_Z3_tag", "l10n_fr_account.tax_report_Z3_tag"),
|
510
|
-
("l10n_fr.tax_report_Z4_formula", "l10n_fr_account.tax_report_Z4_formula"),
|
511
|
-
("l10n_fr.tax_report_td_formula", "l10n_fr_account.tax_report_td_formula"),
|
512
|
-
("l10n_fr.tax_report_08_base", "l10n_fr_account.tax_report_08_base"),
|
513
|
-
("l10n_fr.tax_report_08_taxe", "l10n_fr_account.tax_report_08_taxe"),
|
514
|
-
("l10n_fr.tax_report_09_base", "l10n_fr_account.tax_report_09_base"),
|
515
|
-
("l10n_fr.tax_report_09_taxe", "l10n_fr_account.tax_report_09_taxe"),
|
516
|
-
("l10n_fr.tax_report_10_base", "l10n_fr_account.tax_report_10_base"),
|
517
|
-
("l10n_fr.tax_report_10_taxe", "l10n_fr_account.tax_report_10_taxe"),
|
518
|
-
("l10n_fr.tax_report_11_base", "l10n_fr_account.tax_report_11_base"),
|
519
|
-
("l10n_fr.tax_report_11_taxe", "l10n_fr_account.tax_report_11_taxe"),
|
520
|
-
("l10n_fr.tax_report_13_base", "l10n_fr_account.tax_report_13_base"),
|
521
|
-
("l10n_fr.tax_report_13_taxe", "l10n_fr_account.tax_report_13_taxe"),
|
522
|
-
("l10n_fr.tax_report_14_base", "l10n_fr_account.tax_report_14_base"),
|
523
|
-
("l10n_fr.tax_report_14_taxe", "l10n_fr_account.tax_report_14_taxe"),
|
524
|
-
("l10n_fr.tax_report_15", "l10n_fr_account.tax_report_15"),
|
525
|
-
("l10n_fr.tax_report_15_1", "l10n_fr_account.tax_report_15_1"),
|
526
|
-
("l10n_fr.tax_report_15_2", "l10n_fr_account.tax_report_15_2"),
|
527
|
-
("l10n_fr.tax_report_16", "l10n_fr_account.tax_report_16"),
|
528
|
-
("l10n_fr.tax_report_17", "l10n_fr_account.tax_report_17"),
|
529
|
-
("l10n_fr.tax_report_18", "l10n_fr_account.tax_report_18"),
|
530
|
-
("l10n_fr.tax_report_19", "l10n_fr_account.tax_report_19"),
|
531
|
-
("l10n_fr.tax_report_20", "l10n_fr_account.tax_report_20"),
|
532
|
-
("l10n_fr.tax_report_21", "l10n_fr_account.tax_report_21"),
|
533
|
-
("l10n_fr.tax_report_22", "l10n_fr_account.tax_report_22"),
|
534
|
-
("l10n_fr.tax_report_22A", "l10n_fr_account.tax_report_22A"),
|
535
|
-
("l10n_fr.tax_report_23", "l10n_fr_account.tax_report_23"),
|
536
|
-
("l10n_fr.tax_report_24", "l10n_fr_account.tax_report_24"),
|
537
|
-
("l10n_fr.tax_report_25", "l10n_fr_account.tax_report_25"),
|
538
|
-
("l10n_fr.tax_report_27", "l10n_fr_account.tax_report_27"),
|
539
|
-
("l10n_fr.tax_report_28", "l10n_fr_account.tax_report_28"),
|
540
|
-
("l10n_fr.tax_report_29", "l10n_fr_account.tax_report_29"),
|
541
|
-
("l10n_fr.tax_report_2C", "l10n_fr_account.tax_report_2C"),
|
542
|
-
("l10n_fr.tax_report_2E", "l10n_fr_account.tax_report_2E"),
|
543
|
-
("l10n_fr.tax_report_32", "l10n_fr_account.tax_report_32"),
|
544
|
-
("l10n_fr.tax_report_5B", "l10n_fr_account.tax_report_5B"),
|
545
|
-
("l10n_fr.tax_report_9B_base", "l10n_fr_account.tax_report_9B_base"),
|
546
|
-
("l10n_fr.tax_report_9B_taxe", "l10n_fr_account.tax_report_9B_taxe"),
|
547
|
-
("l10n_fr.tax_report_A1", "l10n_fr_account.tax_report_A1"),
|
548
|
-
("l10n_fr.tax_report_A2", "l10n_fr_account.tax_report_A2"),
|
549
|
-
("l10n_fr.tax_report_A3", "l10n_fr_account.tax_report_A3"),
|
550
|
-
("l10n_fr.tax_report_A4", "l10n_fr_account.tax_report_A4"),
|
551
|
-
("l10n_fr.tax_report_A5", "l10n_fr_account.tax_report_A5"),
|
552
|
-
("l10n_fr.tax_report_AA", "l10n_fr_account.tax_report_AA"),
|
553
|
-
("l10n_fr.tax_report_AB", "l10n_fr_account.tax_report_AB"),
|
554
|
-
("l10n_fr.tax_report_B1", "l10n_fr_account.tax_report_B1"),
|
555
|
-
("l10n_fr.tax_report_B2", "l10n_fr_account.tax_report_B2"),
|
556
|
-
("l10n_fr.tax_report_B3", "l10n_fr_account.tax_report_B3"),
|
557
|
-
("l10n_fr.tax_report_B4", "l10n_fr_account.tax_report_B4"),
|
558
|
-
("l10n_fr.tax_report_B5", "l10n_fr_account.tax_report_B5"),
|
559
|
-
("l10n_fr.tax_report_E1", "l10n_fr_account.tax_report_E1"),
|
560
|
-
("l10n_fr.tax_report_E2", "l10n_fr_account.tax_report_E2"),
|
561
|
-
("l10n_fr.tax_report_E3", "l10n_fr_account.tax_report_E3"),
|
562
|
-
("l10n_fr.tax_report_E4", "l10n_fr_account.tax_report_E4"),
|
563
|
-
("l10n_fr.tax_report_E5", "l10n_fr_account.tax_report_E5"),
|
564
|
-
("l10n_fr.tax_report_E6", "l10n_fr_account.tax_report_E6"),
|
565
|
-
("l10n_fr.tax_report_F1", "l10n_fr_account.tax_report_F1"),
|
566
|
-
("l10n_fr.tax_report_F2", "l10n_fr_account.tax_report_F2"),
|
567
|
-
("l10n_fr.tax_report_F3", "l10n_fr_account.tax_report_F3"),
|
568
|
-
("l10n_fr.tax_report_F4", "l10n_fr_account.tax_report_F4"),
|
569
|
-
("l10n_fr.tax_report_F5", "l10n_fr_account.tax_report_F5"),
|
570
|
-
("l10n_fr.tax_report_F6", "l10n_fr_account.tax_report_F6"),
|
571
|
-
("l10n_fr.tax_report_F7", "l10n_fr_account.tax_report_F7"),
|
572
|
-
("l10n_fr.tax_report_F8", "l10n_fr_account.tax_report_F8"),
|
573
|
-
("l10n_fr.tax_report_F9", "l10n_fr_account.tax_report_F9"),
|
574
|
-
("l10n_fr.tax_report_I1_base", "l10n_fr_account.tax_report_I1_base"),
|
575
|
-
("l10n_fr.tax_report_I1_taxe", "l10n_fr_account.tax_report_I1_taxe"),
|
576
|
-
("l10n_fr.tax_report_I2_base", "l10n_fr_account.tax_report_I2_base"),
|
577
|
-
("l10n_fr.tax_report_I2_taxe", "l10n_fr_account.tax_report_I2_taxe"),
|
578
|
-
("l10n_fr.tax_report_I3_base", "l10n_fr_account.tax_report_I3_base"),
|
579
|
-
("l10n_fr.tax_report_I3_taxe", "l10n_fr_account.tax_report_I3_taxe"),
|
580
|
-
("l10n_fr.tax_report_I4_base", "l10n_fr_account.tax_report_I4_base"),
|
581
|
-
("l10n_fr.tax_report_I4_taxe", "l10n_fr_account.tax_report_I4_taxe"),
|
582
|
-
("l10n_fr.tax_report_I5_base", "l10n_fr_account.tax_report_I5_base"),
|
583
|
-
("l10n_fr.tax_report_I5_taxe", "l10n_fr_account.tax_report_I5_taxe"),
|
584
|
-
("l10n_fr.tax_report_I6_base", "l10n_fr_account.tax_report_I6_base"),
|
585
|
-
("l10n_fr.tax_report_I6_taxe", "l10n_fr_account.tax_report_I6_taxe"),
|
586
|
-
("l10n_fr.tax_report_P1_base", "l10n_fr_account.tax_report_P1_base"),
|
587
|
-
("l10n_fr.tax_report_P1_taxe", "l10n_fr_account.tax_report_P1_taxe"),
|
588
|
-
("l10n_fr.tax_report_P2_base", "l10n_fr_account.tax_report_P2_base"),
|
589
|
-
("l10n_fr.tax_report_P2_taxe", "l10n_fr_account.tax_report_P2_taxe"),
|
590
|
-
("l10n_fr.tax_report_T1_base", "l10n_fr_account.tax_report_T1_base"),
|
591
|
-
("l10n_fr.tax_report_T1_taxe", "l10n_fr_account.tax_report_T1_taxe"),
|
592
|
-
("l10n_fr.tax_report_T2_base", "l10n_fr_account.tax_report_T2_base"),
|
593
|
-
("l10n_fr.tax_report_T2_taxe", "l10n_fr_account.tax_report_T2_taxe"),
|
594
|
-
("l10n_fr.tax_report_T3_base", "l10n_fr_account.tax_report_T3_base"),
|
595
|
-
("l10n_fr.tax_report_T3_taxe", "l10n_fr_account.tax_report_T3_taxe"),
|
596
|
-
("l10n_fr.tax_report_T4_base", "l10n_fr_account.tax_report_T4_base"),
|
597
|
-
("l10n_fr.tax_report_T4_taxe", "l10n_fr_account.tax_report_T4_taxe"),
|
598
|
-
("l10n_fr.tax_report_T5_base", "l10n_fr_account.tax_report_T5_base"),
|
599
|
-
("l10n_fr.tax_report_T5_taxe", "l10n_fr_account.tax_report_T5_taxe"),
|
600
|
-
("l10n_fr.tax_report_T6_base", "l10n_fr_account.tax_report_T6_base"),
|
601
|
-
("l10n_fr.tax_report_T6_taxe", "l10n_fr_account.tax_report_T6_taxe"),
|
602
|
-
("l10n_fr.tax_report_T7_base", "l10n_fr_account.tax_report_T7_base"),
|
603
|
-
("l10n_fr.tax_report_T7_taxe", "l10n_fr_account.tax_report_T7_taxe"),
|
604
|
-
("l10n_fr.tax_report_TD", "l10n_fr_account.tax_report_TD"),
|
605
|
-
("l10n_fr.tax_report_TICC", "l10n_fr_account.tax_report_TICC"),
|
606
|
-
("l10n_fr.tax_report_TICFE", "l10n_fr_account.tax_report_TICFE"),
|
607
|
-
("l10n_fr.tax_report_TICGN", "l10n_fr_account.tax_report_TICGN"),
|
608
|
-
("l10n_fr.tax_report_TIC_total", "l10n_fr_account.tax_report_TIC_total"),
|
609
|
-
("l10n_fr.tax_report_X1", "l10n_fr_account.tax_report_X1"),
|
610
|
-
("l10n_fr.tax_report_X2", "l10n_fr_account.tax_report_X2"),
|
611
|
-
("l10n_fr.tax_report_X3", "l10n_fr_account.tax_report_X3"),
|
612
|
-
("l10n_fr.tax_report_X4", "l10n_fr_account.tax_report_X4"),
|
613
|
-
("l10n_fr.tax_report_X5", "l10n_fr_account.tax_report_X5"),
|
614
|
-
("l10n_fr.tax_report_Y1", "l10n_fr_account.tax_report_Y1"),
|
615
|
-
("l10n_fr.tax_report_Y2", "l10n_fr_account.tax_report_Y2"),
|
616
|
-
("l10n_fr.tax_report_Y3", "l10n_fr_account.tax_report_Y3"),
|
617
|
-
("l10n_fr.tax_report_Y4", "l10n_fr_account.tax_report_Y4"),
|
618
|
-
("l10n_fr.tax_report_Y5", "l10n_fr_account.tax_report_Y5"),
|
619
|
-
("l10n_fr.tax_report_Y6", "l10n_fr_account.tax_report_Y6"),
|
620
|
-
("l10n_fr.tax_report_Z1", "l10n_fr_account.tax_report_Z1"),
|
621
|
-
("l10n_fr.tax_report_Z2", "l10n_fr_account.tax_report_Z2"),
|
622
|
-
("l10n_fr.tax_report_Z3", "l10n_fr_account.tax_report_Z3"),
|
623
|
-
("l10n_fr.tax_report_Z4", "l10n_fr_account.tax_report_Z4"),
|
624
|
-
("l10n_fr.tax_report_Z5", "l10n_fr_account.tax_report_Z5"),
|
625
|
-
("l10n_fr.tax_report_credit", "l10n_fr_account.tax_report_credit"),
|
626
|
-
(
|
627
|
-
"l10n_fr.tax_report_credit_constate",
|
628
|
-
"l10n_fr_account.tax_report_credit_constate",
|
629
|
-
),
|
630
|
-
("l10n_fr.tax_report_credit_impute", "l10n_fr_account.tax_report_credit_impute"),
|
631
|
-
("l10n_fr.tax_report_decompte_tva", "l10n_fr_account.tax_report_decompte_tva"),
|
632
|
-
("l10n_fr.tax_report_determination", "l10n_fr_account.tax_report_determination"),
|
633
|
-
(
|
634
|
-
"l10n_fr.tax_report_montant_op_realisees",
|
635
|
-
"l10n_fr_account.tax_report_montant_op_realisees",
|
636
|
-
),
|
637
|
-
(
|
638
|
-
"l10n_fr.tax_report_op_imposables_ht",
|
639
|
-
"l10n_fr_account.tax_report_op_imposables_ht",
|
640
|
-
),
|
641
|
-
(
|
642
|
-
"l10n_fr.tax_report_op_non_imposables",
|
643
|
-
"l10n_fr_account.tax_report_op_non_imposables",
|
644
|
-
),
|
645
|
-
("l10n_fr.tax_report_regularisation", "l10n_fr_account.tax_report_regularisation"),
|
646
|
-
("l10n_fr.tax_report_reliquat", "l10n_fr_account.tax_report_reliquat"),
|
647
|
-
("l10n_fr.tax_report_tic_tax", "l10n_fr_account.tax_report_tic_tax"),
|
648
|
-
("l10n_fr.tax_report_tva_brute", "l10n_fr_account.tax_report_tva_brute"),
|
649
|
-
(
|
650
|
-
"l10n_fr.tax_report_tva_brute_autre",
|
651
|
-
"l10n_fr_account.tax_report_tva_brute_autre",
|
652
|
-
),
|
653
|
-
("l10n_fr.tax_report_tva_brute_dom", "l10n_fr_account.tax_report_tva_brute_dom"),
|
654
|
-
(
|
655
|
-
"l10n_fr.tax_report_tva_brute_import",
|
656
|
-
"l10n_fr_account.tax_report_tva_brute_import",
|
657
|
-
),
|
658
|
-
(
|
659
|
-
"l10n_fr.tax_report_tva_brute_metropo",
|
660
|
-
"l10n_fr_account.tax_report_tva_brute_metropo",
|
661
|
-
),
|
662
|
-
(
|
663
|
-
"l10n_fr.tax_report_tva_brute_petrolier",
|
664
|
-
"l10n_fr_account.tax_report_tva_brute_petrolier",
|
665
|
-
),
|
666
|
-
("l10n_fr.tax_report_tva_deductible", "l10n_fr_account.tax_report_tva_deductible"),
|
667
|
-
(
|
668
|
-
"l10n_fr.display_name_in_footer_param",
|
669
|
-
"l10n_fr_account.display_name_in_footer_param",
|
670
|
-
),
|
671
|
-
(
|
672
|
-
"l10n_fr.account_reports_fr_statements_menu",
|
673
|
-
"l10n_fr_account.account_reports_fr_statements_menu",
|
674
|
-
),
|
675
|
-
]
|
676
|
-
|
677
6
|
|
678
7
|
@openupgrade.migrate()
|
679
8
|
def migrate(env, version):
|
680
|
-
openupgrade.
|
681
|
-
|
9
|
+
openupgrade.logged_query(
|
10
|
+
env.cr,
|
11
|
+
"""
|
12
|
+
UPDATE ir_model_data
|
13
|
+
SET module = 'l10n_fr_account'
|
14
|
+
WHERE module = 'l10n_fr' AND model IN (
|
15
|
+
'account.account.tag', 'account.report', 'account.report.column',
|
16
|
+
'account.report.expression', 'account.report.line',
|
17
|
+
'ir.config_parameter', 'res_bank')
|
18
|
+
""",
|
19
|
+
)
|
20
|
+
openupgrade.logged_query(
|
682
21
|
env.cr,
|
683
22
|
"""
|
684
23
|
UPDATE ir_module_module
|
@@ -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
|
@@ -262,7 +265,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_a
|
|
262
265
|
odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt,sha256=erbrTtZW0XDR2_Svg-h7nfyseL3opBpb33uRsmOA0YQ,1090
|
263
266
|
odoo/addons/openupgrade_scripts/scripts/l10n_es_pos/18.0.1.0/upgrade_analysis.txt,sha256=FjbSnOJlcdbyBOgzF_gdsSyd5PkkdAu6lArmsW4gswo,204
|
264
267
|
odoo/addons/openupgrade_scripts/scripts/l10n_fi/18.0.13.0.2/upgrade_analysis.txt,sha256=zlmqm9DBVj0aAfRbvzL-IqnnKumlDntIcxLhLeBYbvE,144
|
265
|
-
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py,sha256
|
268
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py,sha256=NTsSEw44VcvwAocqqGG8JSkLSKocuDT0U9mFeF91m08,788
|
266
269
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis.txt,sha256=chRTFJIVdvDpjvcdlUsK_WkFju0LTC_kQOCiDM5oxgA,245034
|
267
270
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis_work.txt,sha256=aa_PJAX_5r9htdx68izCvkltjuMNZ3A6iGnnV5tSirE,35789
|
268
271
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/post-migration.py,sha256=Z8wb_cOM9LWM4yRChdzulaZbjGFCTqKpPoh5WXC47uo,991
|
@@ -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.325.dist-info/METADATA,sha256=uVz8nj260KVQK3-ZWEAxx7YvzfuBW07P7D6GeQeWZLo,3812
|
744
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.325.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
745
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.325.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
746
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.325.dist-info/RECORD,,
|
File without changes
|