odoo-addon-openupgrade-scripts 18.0.1.0.0.326__py3-none-any.whl → 18.0.1.0.0.343__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. odoo/addons/openupgrade_scripts/apriori.py +2 -1
  2. odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/post-migration.py +18 -2
  3. odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis.txt +3 -0
  4. odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis_work.txt +1 -0
  5. odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis.txt +1 -1
  6. odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/pre-migration.py +7 -0
  7. odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt +5 -5
  8. odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/noupdate_changes_work.xml +41 -0
  9. odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/post-migration.py +251 -0
  10. odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/pre-migration.py +46 -0
  11. odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/upgrade_analysis_work.txt +170 -0
  12. odoo/addons/openupgrade_scripts/scripts/hr_skills_survey/18.0.1.0/upgrade_analysis_work.txt +8 -0
  13. odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_analysis.txt +11 -38
  14. odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt +1 -8
  15. odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py +1 -1
  16. odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_einvoice/18.0.1.0/upgrade_analysis.txt +0 -1
  17. odoo/addons/openupgrade_scripts/scripts/marketing_card/18.0.1.1/upgrade_analysis.txt +1 -0
  18. odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/post-migrate.py +1 -1
  19. odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/noupdate_changes.xml +0 -1
  20. odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt +3 -0
  21. odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/end-migration.py +19 -0
  22. odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py +0 -12
  23. odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt +1 -1
  24. odoo/addons/openupgrade_scripts/scripts/stock/tests/test_migration.py +4 -1
  25. odoo/addons/openupgrade_scripts/scripts/website_hr_recruitment/18.0.1.1/upgrade_analysis_work.txt +7 -0
  26. {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info}/METADATA +1 -1
  27. {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info}/RECORD +29 -23
  28. odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/noupdate_changes_work.xml +0 -6
  29. {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info}/WHEEL +0 -0
  30. {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info}/top_level.txt +0 -0
@@ -94,8 +94,9 @@ renamed_models = {
94
94
  merged_models = {
95
95
  # odoo
96
96
  "google.calendar.credentials": "res.users.settings",
97
- "l10n_es_edi_facturae.certificate": "certificate.certificate",
98
97
  "l10n_es_edi.certificate": "certificate.certificate",
98
+ "l10n_es_edi_facturae.certificate": "certificate.certificate",
99
+ "l10n_es_edi_verifactu.certificate": "certificate.certificate",
99
100
  "microsoft.calendar.credentials": "res.users.settings",
100
101
  "mrp.document": "product.document",
101
102
  # OCA/...
@@ -4,7 +4,7 @@
4
4
  from openupgradelib import openupgrade, openupgrade_180
5
5
 
6
6
 
7
- def replace_period_lock_date(env):
7
+ def handle_lock_dates(env):
8
8
  openupgrade.logged_query(
9
9
  env.cr,
10
10
  """
@@ -12,6 +12,22 @@ def replace_period_lock_date(env):
12
12
  SET sale_lock_date = period_lock_date, purchase_lock_date = period_lock_date
13
13
  WHERE period_lock_date IS NOT NULL""",
14
14
  )
15
+ env.cr.execute(
16
+ f"""
17
+ SELECT state
18
+ FROM {openupgrade.get_legacy_name("ir_module_module")}
19
+ WHERE name = 'account_lock'
20
+ """
21
+ )
22
+ account_lock_state = env.cr.fetchone()[0]
23
+ if account_lock_state == "installed":
24
+ openupgrade.logged_query(
25
+ env.cr,
26
+ """
27
+ UPDATE res_company
28
+ SET hard_lock_date = fiscalyear_lock_date
29
+ WHERE fiscalyear_lock_date IS NOT NULL""",
30
+ )
15
31
 
16
32
 
17
33
  def link_payments_to_moves(env):
@@ -138,7 +154,7 @@ def account_account_code_fields(env):
138
154
 
139
155
  @openupgrade.migrate()
140
156
  def migrate(env, version):
141
- replace_period_lock_date(env)
157
+ handle_lock_dates(env)
142
158
  link_payments_to_moves(env)
143
159
  account_account_code_fields(env)
144
160
  openupgrade.m2o_to_x2m(
@@ -212,7 +212,10 @@ NEW ir.ui.view: account.portal_my_details_fields
212
212
  NEW ir.ui.view: account.product_product_view_form_normalized_account
213
213
  NEW ir.ui.view: account.product_view_search_catalog
214
214
  NEW ir.ui.view: account.report_invoice_document_preview
215
+ NEW ir.ui.view: account.report_invoice_qr_code_preview
215
216
  NEW ir.ui.view: account.report_invoice_wizard_iframe
217
+ NEW ir.ui.view: account.report_invoice_wizard_preview_inherit_account
218
+ NEW ir.ui.view: account.res_config_settings_view_form_base_setup
216
219
  NEW ir.ui.view: account.res_partner_view_tree
217
220
  NEW ir.ui.view: account.tests_shared_js_python
218
221
  NEW ir.ui.view: account.view_account_bill_filter
@@ -228,6 +228,7 @@ account / res.company / period_lock_date (date) : DEL
228
228
  account / res.company / purchase_lock_date (date) : NEW
229
229
  account / res.company / sale_lock_date (date) : NEW
230
230
  # DONE: post-migration: filled sale_lock_date and purchase_lock_date with period_lock_date
231
+ # DONE: post-migration: filled hard_lock_date with fiscalyear_lock_date (if account_lock was installed)
231
232
 
232
233
  account / res.currency / fiscal_country_codes (char) : not a function anymore
233
234
  NOTHING TO DO (still store=False)
@@ -3,7 +3,7 @@
3
3
  account_edi_ubl_cii / res.company / invoice_is_ubl_cii (boolean) : DEL
4
4
  account_edi_ubl_cii / res.partner / invoice_edi_format (False) : NEW selection_keys: ['facturx', 'nlcius', 'ubl_a_nz', 'ubl_bis3', 'ubl_sg', 'xrechnung'], mode: modify
5
5
  account_edi_ubl_cii / res.partner / is_peppol_edi_format (boolean): previously in module account_peppol
6
- account_edi_ubl_cii / res.partner / peppol_eas (selection) : selection_keys added: [0218, 0225, 0235, 0240], removed: [0212, 0215, 9901]
6
+ account_edi_ubl_cii / res.partner / peppol_eas (selection) : selection_keys removed: [0212, 0215, 9901]
7
7
  account_edi_ubl_cii / res.partner / ubl_cii_format (selection) : DEL selection_keys: ['facturx', 'nlcius', 'ubl_a_nz', 'ubl_bis3', 'ubl_sg', 'xrechnung']
8
8
  account_edi_ubl_cii / res.users / is_peppol_edi_format (boolean): previously in module account_peppol
9
9
  ---XML records in module 'account_edi_ubl_cii'---
@@ -64,6 +64,13 @@ def _fix_company_layout_background(cr):
64
64
 
65
65
  @openupgrade.migrate(use_env=False)
66
66
  def migrate(cr, version):
67
+ openupgrade.logged_query(
68
+ cr,
69
+ f"""
70
+ CREATE TABLE {openupgrade.get_legacy_name("ir_module_module")
71
+ } AS (SELECT name, state FROM ir_module_module);
72
+ """,
73
+ )
67
74
  openupgrade.update_module_names(cr, renamed_modules.items())
68
75
  openupgrade.update_module_names(cr, merged_modules.items(), merge_modules=True)
69
76
  openupgrade.clean_transient_models(cr)
@@ -10,6 +10,7 @@ obsolete model ir.property [module base]
10
10
  obsolete model l10n_es_edi.certificate (merged to certificate.certificate) [module l10n_es_edi_sii]
11
11
  obsolete model l10n_es_edi_facturae_adm_centers.ac_role_type (renamed to l10n_es_edi_facturae.ac_role_type) [module l10n_es_edi_facturae]
12
12
  obsolete model l10n_es_edi_facturae.certificate (merged to certificate.certificate) [module l10n_es_edi_facturae]
13
+ obsolete model l10n_es_edi_verifactu.certificate (merged to certificate.certificate) [module l10n_es_edi_verifactu]
13
14
  obsolete model mail.notification.web.push (renamed to mail.push) [module mail]
14
15
  obsolete model mail.partner.device (renamed to mail.push.device) [module mail]
15
16
  obsolete model mail.shortcode (renamed to mail.canned.response) [module mail]
@@ -70,7 +71,6 @@ new model l10n_ar.partner.tax [module l10n_ar_withholding]
70
71
  new model l10n_br.zip.range [module l10n_br]
71
72
  new model l10n_es_edi_facturae.ac_role_type (renamed from l10n_es_edi_facturae_adm_centers.ac_role_type) [module l10n_es_edi_facturae]
72
73
  new model l10n_es_edi_tbai.document [module l10n_es_edi_tbai]
73
- new model l10n_es_edi_verifactu.document [module l10n_es_edi_verifactu]
74
74
  new model l10n_fr.fec.export.wizard [module l10n_fr_account]
75
75
  new model l10n_gr_edi.document [module l10n_gr_edi]
76
76
  new model l10n_gr_edi.preferred_classification [module l10n_gr_edi]
@@ -120,14 +120,14 @@ new model website.custom_blocked_third_party_domains [module website]
120
120
  new model website.page.properties [module website]
121
121
  new model website.page.properties.base [module website]
122
122
  ---Fields in module 'general'---
123
- # 13396 fields matched,
124
- # Direct match: 13296
123
+ # 13449 fields matched,
124
+ # Direct match: 13349
125
125
  # Found in other module with different type: 0
126
126
  # Found in other module: 92
127
127
  # Found with different type: 8
128
128
  # In obsolete models: 34
129
- # New columns: 1702
130
- # Not matched: 825
129
+ # New columns: 1649
130
+ # Not matched: 844
131
131
  ---XML records in module 'general'---
132
132
  ERROR: module not in list of installed modules:
133
133
  ---Models in module 'pos_mercury'---
@@ -0,0 +1,41 @@
1
+ <?xml version='1.0' encoding='utf-8'?>
2
+ <odoo>
3
+ <template id="candidate_hired_template">
4
+ Employee created: <a href="#" t-att-data-oe-id="candidate.employee_id.id" data-oe-model="hr.employee"><t t-esc="candidate.employee_id.name"/></a>
5
+ </template>
6
+ <record id="group_hr_recruitment_manager" model="res.groups">
7
+ <field name="implied_ids" eval="[(4, ref('group_hr_recruitment_user'))]"/>
8
+ </record>
9
+ <record id="group_hr_recruitment_user" model="res.groups">
10
+ <field name="implied_ids" eval="[(4, ref('group_hr_recruitment_interviewer'))]"/>
11
+ </record>
12
+ <record id="mt_department_new" model="mail.message.subtype">
13
+ <field name="parent_id"/>
14
+ <field name="default">False</field>
15
+ </record>
16
+ <record id="mt_job_new" model="mail.message.subtype">
17
+ <field name="description">Job Position created</field>
18
+ </record>
19
+ <record id="refuse_reason_1" model="hr.applicant.refuse.reason">
20
+ <field name="name">Does not fit the job requirements</field>
21
+ <field name="sequence">12</field>
22
+ </record>
23
+ <record id="refuse_reason_2" model="hr.applicant.refuse.reason">
24
+ <field name="name">Refused by applicant: job fit</field>
25
+ <field name="sequence">11</field>
26
+ </record>
27
+ <record id="refuse_reason_5" model="hr.applicant.refuse.reason">
28
+ <field name="name">Job already fulfilled</field>
29
+ <field name="sequence">13</field>
30
+ </record>
31
+ <record id="refuse_reason_6" model="hr.applicant.refuse.reason">
32
+ <field name="sequence">14</field>
33
+ </record>
34
+ <record id="refuse_reason_7" model="hr.applicant.refuse.reason">
35
+ <field name="sequence">15</field>
36
+ </record>
37
+ <record id="refuse_reason_8" model="hr.applicant.refuse.reason">
38
+ <field name="name">Refused by applicant: salary</field>
39
+ <field name="sequence">10</field>
40
+ </record>
41
+ </odoo>
@@ -0,0 +1,251 @@
1
+ from openupgradelib import openupgrade
2
+
3
+ from odoo import Command
4
+
5
+
6
+ def _fill_hr_candidate(env):
7
+ # create helper
8
+ column_adds = [
9
+ ("hr.candidate", "old_applicant_id", "many2one"), # helper
10
+ ]
11
+ openupgrade.add_columns(env, column_adds)
12
+ # Create candidate records from applicant
13
+ openupgrade.logged_query(
14
+ env.cr,
15
+ """
16
+ INSERT INTO hr_candidate (
17
+ partner_id, partner_name, email_from, email_cc, email_normalized,
18
+ partner_phone, partner_phone_sanitized, phone_sanitized,
19
+ employee_id, linkedin_profile, type_id, priority,
20
+ availability, color, message_bounce, active,
21
+ user_id, company_id, old_applicant_id,
22
+ create_date, write_date, create_uid, write_uid
23
+ )
24
+ SELECT partner_id, partner_name, email_from, email_cc, email_normalized,
25
+ COALESCE(partner_mobile, partner_phone),
26
+ COALESCE(partner_mobile_sanitized, partner_phone_sanitized),
27
+ phone_sanitized, emp_id, linkedin_profile, type_id, priority,
28
+ availability, color, message_bounce, TRUE,
29
+ user_id, company_id, id,
30
+ create_date, write_date, create_uid, write_uid
31
+ FROM hr_applicant
32
+ WHERE candidate_id IS NULL AND partner_id IS NULL;
33
+ """,
34
+ )
35
+ openupgrade.logged_query(
36
+ env.cr,
37
+ """
38
+ INSERT INTO hr_candidate (
39
+ partner_id, partner_name, email_from, email_cc, email_normalized,
40
+ partner_phone, partner_phone_sanitized, phone_sanitized,
41
+ employee_id, linkedin_profile, type_id, priority,
42
+ availability, color, message_bounce, active,
43
+ user_id, company_id, old_applicant_id,
44
+ create_date, write_date, create_uid, write_uid
45
+ )
46
+ SELECT
47
+ partner_id,
48
+ partner_name,
49
+ email_from, email_cc, email_normalized,
50
+ partner_phone, partner_phone_sanitized,
51
+ phone_sanitized, emp_id, linkedin_profile,
52
+ type_id, priority,
53
+ availability, color, message_bounce, TRUE as active,
54
+ user_id, company_id, id as old_applicant_id,
55
+ create_date, write_date, create_uid, write_uid
56
+ FROM (
57
+ SELECT
58
+ partner_id,
59
+ FIRST_VALUE(CASE WHEN partner_name IS NOT NULL THEN partner_name END)
60
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
61
+ ) AS partner_name,
62
+ FIRST_VALUE(CASE WHEN email_from IS NOT NULL THEN email_from END)
63
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
64
+ ) AS email_from,
65
+ FIRST_VALUE(CASE WHEN email_cc IS NOT NULL THEN email_cc END)
66
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
67
+ ) AS email_cc,
68
+ FIRST_VALUE(
69
+ CASE WHEN email_normalized IS NOT NULL THEN email_normalized END)
70
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
71
+ ) AS email_normalized,
72
+ FIRST_VALUE(
73
+ CASE WHEN COALESCE(partner_mobile, partner_phone) IS NOT NULL
74
+ THEN COALESCE(partner_mobile, partner_phone) END)
75
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
76
+ ) AS partner_phone,
77
+ FIRST_VALUE(CASE WHEN COALESCE(
78
+ partner_mobile_sanitized, partner_phone_sanitized) IS NOT NULL
79
+ THEN COALESCE(partner_mobile_sanitized, partner_phone_sanitized
80
+ ) END)
81
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
82
+ ) AS partner_phone_sanitized,
83
+ FIRST_VALUE(
84
+ CASE WHEN phone_sanitized IS NOT NULL THEN phone_sanitized END)
85
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
86
+ ) AS phone_sanitized,
87
+ FIRST_VALUE(CASE WHEN emp_id IS NOT NULL THEN emp_id END)
88
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
89
+ ) AS emp_id,
90
+ FIRST_VALUE(
91
+ CASE WHEN linkedin_profile IS NOT NULL THEN linkedin_profile END)
92
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
93
+ ) AS linkedin_profile,
94
+ FIRST_VALUE(CASE WHEN type_id IS NOT NULL THEN type_id END)
95
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
96
+ ) AS type_id,
97
+ FIRST_VALUE(CASE WHEN priority IS NOT NULL THEN priority END)
98
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
99
+ ) AS priority,
100
+ MAX(CASE WHEN availability IS NOT NULL THEN availability END)
101
+ OVER (PARTITION BY partner_id, company_id) AS availability,
102
+ FIRST_VALUE(CASE WHEN color IS NOT NULL THEN color END)
103
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
104
+ ) AS color,
105
+ FIRST_VALUE(
106
+ CASE WHEN message_bounce IS NOT NULL THEN message_bounce END)
107
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
108
+ ) AS message_bounce,
109
+ FIRST_VALUE(CASE WHEN user_id IS NOT NULL THEN user_id END)
110
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
111
+ ) AS user_id,
112
+ company_id,
113
+ id,
114
+ MIN(CASE WHEN create_date IS NOT NULL THEN create_date END)
115
+ OVER (PARTITION BY partner_id, company_id) AS create_date,
116
+ MAX(CASE WHEN write_date IS NOT NULL THEN write_date END)
117
+ OVER (PARTITION BY partner_id, company_id) AS write_date,
118
+ FIRST_VALUE(CASE WHEN create_uid IS NOT NULL THEN create_uid END)
119
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
120
+ ) AS create_uid,
121
+ FIRST_VALUE(CASE WHEN write_uid IS NOT NULL THEN write_uid END)
122
+ OVER (PARTITION BY partner_id, company_id ORDER BY create_date DESC
123
+ ) AS write_uid,
124
+ ROW_NUMBER() OVER (
125
+ PARTITION BY partner_id, company_id ORDER BY create_date DESC) AS rn
126
+ FROM hr_applicant
127
+ WHERE candidate_id IS NULL AND partner_id IS NOT NULL
128
+ ) ranked
129
+ WHERE rn = 1;
130
+ """,
131
+ )
132
+ # Update hr_applicant.candidate_id using helper old_applicant_id
133
+ openupgrade.logged_query(
134
+ env.cr,
135
+ """
136
+ UPDATE hr_applicant ha
137
+ SET candidate_id = hc.id
138
+ FROM hr_candidate hc
139
+ WHERE ha.id = hc.old_applicant_id
140
+ """,
141
+ )
142
+ openupgrade.logged_query(
143
+ env.cr,
144
+ """
145
+ UPDATE hr_applicant ha
146
+ SET candidate_id = hc.id
147
+ FROM hr_candidate hc
148
+ WHERE ha.candidate_id IS NULL AND ha.partner_id = hc.partner_id
149
+ AND (ha.company_id = hc.company_id
150
+ OR (ha.company_id IS NULL AND hc.company_id IS NULL))
151
+ """,
152
+ )
153
+ # remove helper
154
+ openupgrade.logged_query(
155
+ env.cr,
156
+ """
157
+ ALTER TABLE hr_candidate
158
+ DROP COLUMN old_applicant_id
159
+ """,
160
+ )
161
+ # fill many2many field categ_ids
162
+ openupgrade.logged_query(
163
+ env.cr,
164
+ """
165
+ INSERT INTO hr_applicant_category_hr_candidate_rel (
166
+ hr_candidate_id, hr_applicant_category_id
167
+ )
168
+ SELECT ha.candidate_id, m2m.hr_applicant_category_id
169
+ FROM hr_applicant_hr_applicant_category_rel as m2m
170
+ JOIN hr_applicant AS ha ON ha.id = m2m.hr_applicant_id
171
+ ON CONFLICT DO NOTHING
172
+ """,
173
+ )
174
+ # Fill calendar_event.candidate_id
175
+ openupgrade.logged_query(
176
+ env.cr,
177
+ """
178
+ UPDATE calendar_event ce
179
+ SET candidate_id = ha.candidate_id
180
+ FROM hr_applicant ha
181
+ WHERE ce.applicant_id = ha.id
182
+ """,
183
+ )
184
+ # duplicate attachments
185
+ env.cr.execute(
186
+ """
187
+ SELECT column_name
188
+ FROM information_schema.columns
189
+ WHERE table_name = 'ir_attachment'
190
+ """
191
+ )
192
+ attachment_columns = [
193
+ x[0] for x in env.cr.fetchall() if x[0] not in ["id", "res_model", "res_id"]
194
+ ]
195
+ select_columns = ",".join(["ia." + x for x in attachment_columns])
196
+ insert_columns = ",".join(attachment_columns)
197
+ openupgrade.logged_query(
198
+ env.cr,
199
+ f"""
200
+ INSERT INTO ir_attachment (res_model,res_id,{insert_columns})
201
+ SELECT 'hr.candidate',ha.candidate_id,{select_columns}
202
+ FROM ir_attachment ia
203
+ JOIN hr_applicant ha ON ia.res_model = 'hr.applicant' AND ia.res_id = ha.id
204
+ """,
205
+ )
206
+ candidates = env["hr.candidate"].search([])
207
+ for candidate in candidates:
208
+ if len(candidate.applicant_ids) > 1:
209
+ candidate._compute_priority() # recompute priority
210
+ if all(not applicant.active for applicant in candidate.applicant_ids):
211
+ # archive inactive candidates if all applicants are inactive
212
+ candidate.active = False
213
+
214
+
215
+ def _normalize_res_groups_implied(env):
216
+ """
217
+ Remove the implied_ids from group_hr_recruitment_manager
218
+ according to the changes in Odoo 18.0.
219
+ https://github.com/odoo/odoo/commit/901088c76f07b6bc076fa66b76fe892be909c7a8
220
+ https://github.com/odoo/odoo/commit/2ad420db95d47e73cff0d4c46d22b48bf83fed5f
221
+ """
222
+ recruitment_manager = env.ref("hr_recruitment.group_hr_recruitment_manager")
223
+ group_hr_user = env.ref("hr.group_hr_user")
224
+ group_mail_template = env.ref("mail.group_mail_template_editor")
225
+ recruitment_manager.implied_ids = [
226
+ Command.unlink(group_hr_user.id),
227
+ Command.unlink(group_mail_template.id),
228
+ ]
229
+
230
+
231
+ @openupgrade.migrate()
232
+ def migrate(env, version):
233
+ openupgrade.load_data(env, "hr_recruitment", "18.0.1.1/noupdate_changes_work.xml")
234
+ openupgrade.delete_record_translations(
235
+ env.cr, "hr_recruitment", ["mt_job_new"], ["description"]
236
+ )
237
+ openupgrade.delete_record_translations(
238
+ env.cr,
239
+ "hr_recruitment",
240
+ ["refuse_reason_1", "refuse_reason_2", "refuse_reason_5", "refuse_reason_8"],
241
+ ["name"],
242
+ )
243
+ _fill_hr_candidate(env)
244
+ _normalize_res_groups_implied(env)
245
+ openupgrade.delete_records_safely_by_xml_id(
246
+ env,
247
+ [
248
+ "hr_recruitment.categ_meet_interview",
249
+ "hr_recruitment.hr_recruitment_blacklisted_emails",
250
+ ],
251
+ )
@@ -0,0 +1,46 @@
1
+ from openupgradelib import openupgrade
2
+
3
+ columns_copy = {
4
+ "hr_applicant": [
5
+ ("name", None, None),
6
+ ],
7
+ }
8
+
9
+ column_creates = [
10
+ ("hr.applicant", "refuse_date", "datetime"),
11
+ ]
12
+
13
+ field_renames = [
14
+ ("hr.applicant", "hr_applicant", "description", "applicant_notes"),
15
+ ]
16
+
17
+ xmlid_renames = [
18
+ (
19
+ "hr_recruitment.applicant_hired_template",
20
+ "hr_recruitment.candidate_hired_template",
21
+ ),
22
+ ]
23
+
24
+
25
+ @openupgrade.migrate()
26
+ def migrate(env, version):
27
+ openupgrade.copy_columns(env.cr, columns_copy)
28
+ openupgrade.add_columns(env, column_creates)
29
+ openupgrade.rename_fields(env, field_renames)
30
+ openupgrade.rename_xmlids(env.cr, xmlid_renames)
31
+ openupgrade.rename_xmlids(
32
+ env.cr,
33
+ [
34
+ ("hr_recruitment.refuse_reason_3", "hr_recruitment.refuse_reason_2"),
35
+ ("hr_recruitment.refuse_reason_4", "hr_recruitment.refuse_reason_2"),
36
+ ],
37
+ allow_merge=True,
38
+ )
39
+ openupgrade.logged_query(
40
+ env.cr,
41
+ """
42
+ UPDATE hr_applicant
43
+ SET refuse_date = write_date
44
+ WHERE refuse_reason_id IS NOT NULL
45
+ """,
46
+ )
@@ -0,0 +1,170 @@
1
+ ---Models in module 'hr_recruitment'---
2
+ new model candidate.send.mail [transient]
3
+ # NOTHING TO DO: New feature
4
+
5
+ new model hr.candidate
6
+ # DONE: post-migration: create new record from hr.applicant
7
+
8
+ new model hr.job.platform
9
+ # NOTHING TO DO: New feature (See https://github.com/odoo/odoo/commit/0f68d1506358c81a1d369a62e240086a177d5076)
10
+
11
+ ---Fields in module 'hr_recruitment'---
12
+ hr_recruitment / calendar.event / candidate_id (many2one) : NEW relation: hr.candidate, hasdefault: compute
13
+ # DONE: pre-migration: pre-created and filled from applicant_id
14
+
15
+ hr_recruitment / hr.applicant / applicant_notes (html) : NEW
16
+ hr_recruitment / hr.applicant / description (html) : DEL
17
+ # DONE: pre-migration: renamed field
18
+
19
+ hr_recruitment / hr.applicant / refuse_date (datetime) : NEW
20
+ # DONE: pre-migration: if refused, filled with write_date
21
+
22
+ hr_recruitment / hr.applicant / name (char) : DEL required
23
+ # NOTHING TO DO: deprecated
24
+
25
+ hr_recruitment / hr.applicant / candidate_id (many2one) : NEW relation: hr.candidate, required
26
+ hr_recruitment / hr.candidate / applicant_ids (one2many) : NEW relation: hr.applicant
27
+ # DONE: post-migration: Unify them by partner_id
28
+
29
+ hr_recruitment / hr.applicant / availability (date) : not stored anymore
30
+ hr_recruitment / hr.applicant / availability (date) : now related
31
+ hr_recruitment / hr.candidate / availability (date) : NEW
32
+ hr_recruitment / hr.applicant / color (integer) : not stored anymore
33
+ hr_recruitment / hr.applicant / color (integer) : now related
34
+ hr_recruitment / hr.candidate / color (integer) : NEW hasdefault: default
35
+ hr_recruitment / hr.applicant / email_from (char) : not a function anymore
36
+ hr_recruitment / hr.applicant / email_from (char) : not stored anymore
37
+ hr_recruitment / hr.applicant / email_from (char) : now related
38
+ hr_recruitment / hr.candidate / email_from (char) : NEW isfunction: function, stored
39
+ hr_recruitment / hr.applicant / email_normalized (char) : not a function anymore
40
+ hr_recruitment / hr.applicant / email_normalized (char) : not stored anymore
41
+ hr_recruitment / hr.applicant / email_normalized (char) : now related
42
+ hr_recruitment / hr.candidate / email_normalized (char) : NEW isfunction: function, stored
43
+ hr_recruitment / hr.applicant / emp_id (many2one) : DEL relation: hr.employee
44
+ hr_recruitment / hr.candidate / employee_id (many2one) : NEW relation: hr.employee
45
+ hr_recruitment / hr.applicant / linkedin_profile (char) : not stored anymore
46
+ hr_recruitment / hr.applicant / linkedin_profile (char) : now related
47
+ hr_recruitment / hr.candidate / linkedin_profile (char) : NEW
48
+ hr_recruitment / hr.applicant / message_bounce (integer) : DEL
49
+ hr_recruitment / hr.candidate / message_bounce (integer) : NEW hasdefault: default
50
+ hr_recruitment / hr.applicant / partner_id (many2one) : not stored anymore
51
+ hr_recruitment / hr.applicant / partner_id (many2one) : now related
52
+ hr_recruitment / hr.candidate / partner_id (many2one) : NEW relation: res.partner
53
+ hr_recruitment / hr.applicant / partner_name (char) : not stored anymore
54
+ hr_recruitment / hr.applicant / partner_name (char) : now a function
55
+ hr_recruitment / hr.candidate / partner_name (char) : NEW
56
+ hr_recruitment / hr.applicant / partner_phone (char) : not a function anymore
57
+ hr_recruitment / hr.applicant / partner_phone (char) : not stored anymore
58
+ hr_recruitment / hr.applicant / partner_phone (char) : now related
59
+ hr_recruitment / hr.candidate / partner_phone (char) : NEW isfunction: function, stored
60
+ hr_recruitment / hr.applicant / partner_phone_sanitized (char): not a function anymore
61
+ hr_recruitment / hr.applicant / partner_phone_sanitized (char): not stored anymore
62
+ hr_recruitment / hr.applicant / partner_phone_sanitized (char): now related
63
+ hr_recruitment / hr.candidate / partner_phone_sanitized (char): NEW isfunction: function, stored
64
+ hr_recruitment / hr.applicant / phone_mobile_search (char) : DEL stored: False
65
+ hr_recruitment / hr.candidate / phone_mobile_search (char) : NEW stored: False
66
+ hr_recruitment / hr.applicant / phone_sanitized (char) : DEL
67
+ hr_recruitment / hr.candidate / phone_sanitized (char) : NEW isfunction: function, stored
68
+ hr_recruitment / hr.applicant / type_id (many2one) : not stored anymore
69
+ hr_recruitment / hr.applicant / type_id (many2one) : now related
70
+ hr_recruitment / hr.candidate / type_id (many2one) : NEW relation: hr.recruitment.degree
71
+ hr_recruitment / hr.candidate / categ_ids (many2many) : NEW relation: hr.applicant.category
72
+ hr_recruitment / hr.candidate / email_cc (char) : NEW
73
+ hr_recruitment / hr.candidate / company_id (many2one) : NEW relation: res.company, hasdefault: default
74
+ hr_recruitment / hr.candidate / priority (selection) : NEW selection_keys: ['0', '1', '2', '3'], isfunction: function, stored
75
+ hr_recruitment / hr.candidate / user_id (many2one) : NEW relation: res.users, hasdefault: default
76
+ # DONE: post-migration: Populate the table from hr_applicant.
77
+
78
+ hr_recruitment / hr.applicant / partner_mobile (char) : DEL
79
+ hr_recruitment / hr.applicant / partner_mobile_sanitized (char): DEL
80
+ # DONE: post-migration: use in partner_phone & partner_phone_sanitized
81
+
82
+ hr_recruitment / hr.candidate / active (boolean) : NEW hasdefault: default
83
+ # DONE: post-migration: put to inactive if not active applicants
84
+
85
+ hr_recruitment / hr.candidate / attachment_ids (one2many) : NEW relation: ir.attachment
86
+ # DONE: post-migration: moved attachments
87
+
88
+ hr_recruitment / hr.candidate / activity_ids (one2many) : NEW relation: mail.activity
89
+ hr_recruitment / hr.candidate / candidate_properties (properties): NEW hasdefault: compute
90
+ hr_recruitment / hr.candidate / meeting_ids (one2many) : NEW relation: calendar.event
91
+ hr_recruitment / hr.candidate / message_follower_ids (one2many): NEW relation: mail.followers
92
+ hr_recruitment / hr.candidate / message_ids (one2many) : NEW relation: mail.message
93
+ hr_recruitment / hr.candidate / message_main_attachment_id (many2one): NEW relation: ir.attachment
94
+ hr_recruitment / hr.candidate / rating_ids (one2many) : NEW relation: rating.rating
95
+ hr_recruitment / hr.candidate / website_message_ids (one2many): NEW relation: mail.message
96
+ # NOTHING TO DO?
97
+
98
+ hr_recruitment / hr.employee / applicant_id (one2many) : DEL relation: hr.applicant
99
+ hr_recruitment / hr.employee / candidate_id (one2many) : NEW relation: hr.candidate
100
+ # NOTHING TO DO: one2many (handled by ORM)
101
+
102
+ hr_recruitment / hr.job / date_from (date) : NEW
103
+ hr_recruitment / hr.job / date_to (date) : NEW
104
+ hr_recruitment / hr.job / industry_id (many2one) : NEW relation: res.partner.industry
105
+ # NOTHING TO DO: new functionality
106
+
107
+ hr_recruitment / hr.job / job_properties (properties) : NEW hasdefault: compute
108
+ # NOTHING TO DO: new feature
109
+
110
+ hr / hr.job / no_of_hired_employee (integer): now a function
111
+ hr_recruitment / hr.job / no_of_hired_employee (integer): previously in module hr
112
+ # NOTHING TO DO: Moved from hr in https://github.com/odoo/odoo/commit/9e199cf7c624208229ad1e1c2d127fbbdaa3aa71
113
+
114
+ hr_recruitment / hr.job.platform / email (char) : NEW required
115
+ hr_recruitment / hr.job.platform / name (char) : NEW required
116
+ hr_recruitment / hr.job.platform / regex (char) : NEW
117
+ hr_recruitment / res.company / candidate_properties_definition (properties_definition): NEW
118
+ hr_recruitment / res.company / job_properties_definition (properties_definition): NEW
119
+ # NOTHING TO DO: new features
120
+
121
+ ---XML records in module 'hr_recruitment'---
122
+ NEW hr.job.platform: hr_recruitment.indeed_job_platform (noupdate)
123
+ NEW hr.job.platform: hr_recruitment.jobsdb_job_platform (noupdate)
124
+ NEW hr.job.platform: hr_recruitment.linkedin_job_platform (noupdate)
125
+ NEW ir.actions.act_window: hr_recruitment.action_hr_candidate
126
+ NEW ir.actions.act_window: hr_recruitment.action_hr_job_platforms
127
+ NEW ir.actions.act_window: hr_recruitment.mail_activity_plan_action_config_hr_applicant
128
+ NEW ir.actions.server: hr_recruitment.action_candidate_send_mail
129
+ NEW ir.actions.server: hr_recruitment.action_load_demo_data
130
+ NEW ir.model.access: hr_recruitment.access_candidate_send_mail
131
+ NEW ir.model.access: hr_recruitment.access_candidate_send_mail_interviewer
132
+ NEW ir.model.access: hr_recruitment.access_hr_candidate_interviewer
133
+ NEW ir.model.access: hr_recruitment.access_hr_candidate_user
134
+ NEW ir.model.access: hr_recruitment.access_hr_job_platform
135
+ NEW ir.model.access: hr_recruitment.access_hr_job_user
136
+ NEW ir.model.access: hr_recruitment.access_mail_activity_plan_hr_recruitment_manager
137
+ NEW ir.model.access: hr_recruitment.access_mail_activity_plan_template_hr_recruitment_manager
138
+ NEW ir.model.constraint: hr_recruitment.constraint_hr_job_platform_email_uniq
139
+ NEW ir.rule: hr_recruitment.hr_candidate_comp_rule (noupdate)
140
+ NEW ir.rule: hr_recruitment.hr_candidate_interviewer_rule (noupdate)
141
+ NEW ir.rule: hr_recruitment.hr_candidate_user_rule (noupdate)
142
+ NEW ir.rule: hr_recruitment.mail_plan_rule_group_hr_recruitment_manager_applicant (noupdate)
143
+ NEW ir.rule: hr_recruitment.mail_plan_templates_rule_group_hr_recruitment_manager_applicant (noupdate)
144
+ NEW ir.ui.menu: hr_recruitment.hr_recruitment_menu_config_activity_plan
145
+ NEW ir.ui.menu: hr_recruitment.menu_hr_candidate
146
+ NEW ir.ui.menu: hr_recruitment.menu_hr_job_boards
147
+ NEW ir.ui.menu: hr_recruitment.menu_hr_recruitment_emails
148
+ NEW ir.ui.view: hr_recruitment.candidate_send_mail_view_form
149
+ NEW ir.ui.view: hr_recruitment.hr_candidate_view_calendar
150
+ NEW ir.ui.view: hr_recruitment.hr_candidate_view_form
151
+ NEW ir.ui.view: hr_recruitment.hr_candidate_view_kanban
152
+ NEW ir.ui.view: hr_recruitment.hr_candidate_view_search
153
+ NEW ir.ui.view: hr_recruitment.hr_candidate_view_tree
154
+ NEW ir.ui.view: hr_recruitment.hr_job_platform_form
155
+ NEW ir.ui.view: hr_recruitment.hr_job_platform_tree
156
+ DEL ir.ui.view: hr_recruitment.hr_recruitment_source_kanban
157
+ NEW web_tour.tour: hr_recruitment.hr_recruitment_tour
158
+ # NOTHING TO DO
159
+
160
+ DEL hr.applicant.refuse.reason: hr_recruitment.refuse_reason_3 (noupdate)
161
+ DEL hr.applicant.refuse.reason: hr_recruitment.refuse_reason_4 (noupdate)
162
+ # DONE: pre-migration: merged into refuse_reason_2
163
+
164
+ DEL calendar.event.type: hr_recruitment.categ_meet_interview (noupdate)
165
+ DEL ir.config_parameter: hr_recruitment.hr_recruitment_blacklisted_emails (noupdate)
166
+ # DONE: post-migration: safely removed
167
+
168
+ NEW ir.ui.view: hr_recruitment.candidate_hired_template (noupdate)
169
+ DEL ir.ui.view: hr_recruitment.applicant_hired_template (noupdate)
170
+ # DONE: pre-migration: renamed xmlids
@@ -0,0 +1,8 @@
1
+ ---Models in module 'hr_skills_survey'---
2
+ ---Fields in module 'hr_skills_survey'---
3
+ hr_skills_survey / survey.survey / certification_validity_months (integer): NEW
4
+ # NOTHING TO DO: new feature to set date end as dat_start + this validity. This behavior seems more correct, and we keep it for new records. Old ones will continue as it was.
5
+
6
+ ---XML records in module 'hr_skills_survey'---
7
+ NEW ir.ui.view: hr_skills_survey.survey_survey_view_form
8
+ # NOTHING TO DO: handled by ORM
@@ -1,44 +1,17 @@
1
1
  ---Models in module 'l10n_es_edi_verifactu'---
2
- new model l10n_es_edi_verifactu.document
2
+ obsolete model l10n_es_edi_verifactu.certificate (merged to certificate.certificate)
3
3
  ---Fields in module 'l10n_es_edi_verifactu'---
4
- l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_clave_regimen (selection): NEW selection_keys: function, hasdefault: compute
5
- l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_document_ids (one2many): NEW relation: l10n_es_edi_verifactu.document
6
- l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_refund_reason (selection): NEW selection_keys: ['R1', 'R2', 'R3', 'R4', 'R5']
7
- l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_state (selection): NEW selection_keys: ['accepted', 'cancelled', 'registered_with_errors', 'rejected'], isfunction: function, stored
8
- l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_substituted_entry_id (many2one): NEW relation: account.move
9
- l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_substitution_move_ids (one2many): NEW relation: account.move
10
- l10n_es_edi_verifactu / account.tax / l10n_es_applicability (selection): NEW selection_keys: ['01', '02', '03']
11
4
  l10n_es_edi_verifactu / certificate.certificate / scope (False) : NEW selection_keys: ['facturae', 'general', 'sii', 'tbai', 'verifactu'], mode: modify
12
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / chain_index (integer) : NEW
13
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / company_id (many2one) : NEW relation: res.company, required
14
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / document_type (selection) : NEW required, selection_keys: ['cancellation', 'submission']
15
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / errors (html) : NEW
16
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / json_attachment_id (many2one) : NEW relation: ir.attachment
17
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / move_id (many2one) : NEW relation: account.move
18
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / response_csv (char) : NEW
19
- l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / state (selection) : NEW selection_keys: ['accepted', 'registered_with_errors', 'rejected']
20
- l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_certificate_ids (one2many): NEW relation: certificate.certificate
21
- l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_chain_sequence_id (many2one): NEW relation: ir.sequence
22
- l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_next_batch_time (datetime): NEW
23
- l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_required (boolean): NEW
24
- l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_special_vat_regime (selection): NEW selection_keys: ['reagyp', 'recargo', 'simplified']
25
- l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_test_environment (boolean): NEW hasdefault: default
5
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.certificate / company_id (many2one) : DEL relation: res.company, required
6
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.certificate / content (binary) : DEL required, attachment: True
7
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.certificate / date_end (datetime) : DEL
8
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.certificate / date_start (datetime) : DEL
9
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.certificate / password (char) : DEL
10
+ l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_certificate_ids (one2many): relation is now 'certificate.certificate' ('l10n_es_edi_verifactu.certificate') [nothing to do]
26
11
  ---XML records in module 'l10n_es_edi_verifactu'---
27
- NEW ir.actions.act_window: l10n_es_edi_verifactu.l10n_es_edi_verifactu_certificate_action
28
- NEW ir.cron: l10n_es_edi_verifactu.cron_verifactu_batch (noupdate)
29
- NEW ir.model.access: l10n_es_edi_verifactu.access_l10n_es_edi_verifactu_document_readonly
30
- NEW ir.ui.menu: l10n_es_edi_verifactu.menu_l10n_es_edi_verifactu_certificates
31
- NEW ir.ui.menu: l10n_es_edi_verifactu.menu_l10n_es_edi_verifactu_root
12
+ DEL ir.model.access: l10n_es_edi_verifactu.access_l10n_es_edi_verifactu_certificate
32
13
  NEW ir.ui.view: l10n_es_edi_verifactu.certificate_certificate_view_form
33
14
  NEW ir.ui.view: l10n_es_edi_verifactu.certificate_certificate_view_search
34
- NEW ir.ui.view: l10n_es_edi_verifactu.report_invoice_document
35
- NEW ir.ui.view: l10n_es_edi_verifactu.res_config_settings_view_form
36
- NEW ir.ui.view: l10n_es_edi_verifactu.view_account_invoice_filter
37
- NEW ir.ui.view: l10n_es_edi_verifactu.view_account_move_filter
38
- NEW ir.ui.view: l10n_es_edi_verifactu.view_account_move_reversal_inherit_l10n_es_edi_verifactu
39
- NEW ir.ui.view: l10n_es_edi_verifactu.view_company_form
40
- NEW ir.ui.view: l10n_es_edi_verifactu.view_invoice_tree
41
- NEW ir.ui.view: l10n_es_edi_verifactu.view_l10n_es_edi_verifactu_document_form
42
- NEW ir.ui.view: l10n_es_edi_verifactu.view_move_form_inherit_l10n_es_edi_verifactu
43
- NEW ir.ui.view: l10n_es_edi_verifactu.view_move_tree
44
- NEW ir.ui.view: l10n_es_edi_verifactu.view_tax_form_inherit_l10n_es_edi_verifactu
15
+ DEL ir.ui.view: l10n_es_edi_verifactu.account_move_send_inherit_l10n_es_edi_verifactu
16
+ DEL ir.ui.view: l10n_es_edi_verifactu.l10n_es_edi_verifactu_certificate_form
17
+ DEL ir.ui.view: l10n_es_edi_verifactu.l10n_es_edi_verifactu_certificate_tree
@@ -1,11 +1,4 @@
1
1
  ---Models in module 'l10n_es_edi_verifactu_pos'---
2
2
  ---Fields in module 'l10n_es_edi_verifactu_pos'---
3
- l10n_es_edi_verifactu_pos / l10n_es_edi_verifactu.document / pos_order_id (many2one) : NEW relation: pos.order
4
- l10n_es_edi_verifactu_pos / pos.order / l10n_es_edi_verifactu_document_ids (one2many): NEW relation: l10n_es_edi_verifactu.document
5
- l10n_es_edi_verifactu_pos / pos.order / l10n_es_edi_verifactu_refund_reason (selection): NEW selection_keys: ['R1', 'R2', 'R3', 'R4', 'R5']
6
- l10n_es_edi_verifactu_pos / pos.order / l10n_es_edi_verifactu_state (selection): NEW selection_keys: ['accepted', 'cancelled', 'registered_with_errors', 'rejected'], isfunction: function, stored
7
3
  ---XML records in module 'l10n_es_edi_verifactu_pos'---
8
- NEW ir.model.access: l10n_es_edi_verifactu_pos.access_l10n_es_edi_verifactu_document
9
- NEW ir.ui.view: l10n_es_edi_verifactu_pos.view_pos_order_filter
10
- NEW ir.ui.view: l10n_es_edi_verifactu_pos.view_pos_order_form_inherit_l10n_es_pos_verifactu
11
- NEW ir.ui.view: l10n_es_edi_verifactu_pos.view_pos_order_tree
4
+ ---nothing has changed in this module--
@@ -14,7 +14,7 @@ def migrate(env, version):
14
14
  WHERE module = 'l10n_fr' AND model IN (
15
15
  'account.account.tag', 'account.report', 'account.report.column',
16
16
  'account.report.expression', 'account.report.line',
17
- 'ir.config_parameter', 'res_bank')
17
+ 'ir.config_parameter', 'res.bank')
18
18
  """,
19
19
  )
20
20
  openupgrade.logged_query(
@@ -1,5 +1,4 @@
1
1
  ---Models in module 'l10n_tr_nilvera_einvoice'---
2
2
  ---Fields in module 'l10n_tr_nilvera_einvoice'---
3
3
  ---XML records in module 'l10n_tr_nilvera_einvoice'---
4
- NEW ir.ui.view: l10n_tr_nilvera_einvoice.ubl_tr_InvoiceType
5
4
  DEL ir.ui.view: l10n_tr_nilvera_einvoice.account_move_send_inherit_l10n_tr_nilvera_einvoice
@@ -86,6 +86,7 @@ NEW ir.model.access: marketing_card.access_card_campaign_tag_manager
86
86
  NEW ir.model.access: marketing_card.access_card_campaign_tag_user
87
87
  NEW ir.model.access: marketing_card.access_card_campaign_user
88
88
  NEW ir.model.access: marketing_card.access_card_card_manager
89
+ NEW ir.model.access: marketing_card.access_card_card_portal
89
90
  NEW ir.model.access: marketing_card.access_card_card_public
90
91
  NEW ir.model.access: marketing_card.access_card_card_user
91
92
  NEW ir.model.access: marketing_card.access_card_template_system
@@ -5,4 +5,4 @@ from openupgradelib import openupgrade
5
5
 
6
6
  @openupgrade.migrate()
7
7
  def migrate(env, version):
8
- openupgrade.load_data(env, "mass_mailing", "18.0.2.7/noupdate_changes_work.xml")
8
+ openupgrade.load_data(env, "mass_mailing", "18.0.2.7/noupdate_changes.xml")
@@ -1,7 +1,6 @@
1
1
  <?xml version='1.0' encoding='utf-8'?>
2
2
  <odoo>
3
3
  <record id="payment.payment_provider_xendit" model="payment.provider">
4
- <field name="allow_tokenization">True</field>
5
4
  <field name="inline_form_view_id" ref="inline_form"/>
6
5
  </record>
7
6
  </odoo>
@@ -98,6 +98,9 @@ DEL ir.model.access: point_of_sale.access_pos_combo_line_user
98
98
  DEL ir.model.access: point_of_sale.access_pos_combo_manager
99
99
  DEL ir.model.access: point_of_sale.access_pos_combo_user
100
100
  NEW ir.model.constraint: point_of_sale.constraint_pos_note_name_unique
101
+ NEW ir.model.constraint: point_of_sale.constraint_pos_order_line_uuid_unique
102
+ NEW ir.model.constraint: point_of_sale.constraint_pos_order_uuid_unique
103
+ NEW ir.model.constraint: point_of_sale.constraint_pos_payment_uuid_unique
101
104
  NEW ir.rule: point_of_sale.rule_invoice_line_pos_user (noupdate)
102
105
  NEW ir.ui.menu: point_of_sale.menu_pos_note_model
103
106
  NEW ir.ui.menu: point_of_sale.menu_product_combo
@@ -0,0 +1,19 @@
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
+ def fill_stock_picking_type_default_locations(env):
7
+ picking_types = env["stock.picking.type"].search(
8
+ [("default_location_src_id", "=", False)]
9
+ )
10
+ picking_types._compute_default_location_src_id()
11
+ picking_types = env["stock.picking.type"].search(
12
+ [("default_location_dest_id", "=", False)]
13
+ )
14
+ picking_types._compute_default_location_dest_id()
15
+
16
+
17
+ @openupgrade.migrate()
18
+ def migrate(env, version):
19
+ fill_stock_picking_type_default_locations(env)
@@ -88,23 +88,11 @@ def _set_inter_company_locations(env):
88
88
  inter_company_location.sudo().write({"active": False})
89
89
 
90
90
 
91
- def fill_stock_picking_type_default_locations(env):
92
- picking_types = env["stock.picking.type"].search(
93
- [("default_location_src_id", "=", False)]
94
- )
95
- picking_types._compute_default_location_src_id()
96
- picking_types = env["stock.picking.type"].search(
97
- [("default_location_dest_id", "=", False)]
98
- )
99
- picking_types._compute_default_location_dest_id()
100
-
101
-
102
91
  @openupgrade.migrate()
103
92
  def migrate(env, version):
104
93
  convert_company_dependent(env)
105
94
  _create_default_new_types_for_all_warehouses(env)
106
95
  _set_inter_company_locations(env)
107
- fill_stock_picking_type_default_locations(env)
108
96
  openupgrade.load_data(env, "stock", "18.0.1.1/noupdate_changes.xml")
109
97
  openupgrade.delete_records_safely_by_xml_id(
110
98
  env, ["stock.property_stock_customer", "stock.property_stock_supplier"]
@@ -48,7 +48,7 @@ stock / stock.picking.type / _order : _order
48
48
 
49
49
  stock / stock.picking.type / default_location_dest_id (many2one): now required
50
50
  stock / stock.picking.type / default_location_src_id (many2one): now required
51
- # DONE: post-migration: assured is filled by calling computes
51
+ # DONE: end-migration: assured is filled by calling computes
52
52
 
53
53
  stock / stock.picking.type / favorite_user_ids (many2many) : NEW relation: res.users
54
54
  # NOTHING TO DO: new feature
@@ -1,10 +1,13 @@
1
- from odoo.tests import TransactionCase
1
+ import unittest
2
+
3
+ from odoo.tests.common import TransactionCase
2
4
 
3
5
  from odoo.addons.openupgrade_framework import openupgrade_test
4
6
 
5
7
 
6
8
  @openupgrade_test
7
9
  class TestStockMigration(TransactionCase):
10
+ @unittest.skip("Should be executed at end-migration")
8
11
  def test_picking_type_required_fields(self):
9
12
  """Test that newly required fields are set"""
10
13
  for picking_type in self.env["stock.picking.type"].search([]):
@@ -0,0 +1,7 @@
1
+ ---Models in module 'website_hr_recruitment'---
2
+ ---Fields in module 'website_hr_recruitment'---
3
+ ---XML records in module 'website_hr_recruitment'---
4
+ DEL ir.ui.view: website_hr_recruitment.default_description
5
+ DEL ir.ui.view: website_hr_recruitment.hr_recruitment_source_kanban_inherit_website
6
+ NEW website.menu: website_hr_recruitment.website_menu_jobs (noupdate)
7
+ # NOTHING TO DO
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-openupgrade_scripts
3
- Version: 18.0.1.0.0.326
3
+ Version: 18.0.1.0.0.343
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo==18.0.*
6
6
  Requires-Dist: openupgradelib
@@ -1,15 +1,15 @@
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=IqWmu8ppesF8o3jxmuA4IgJYrwe9Gqz9_62GgTnLMxM,4031
4
+ odoo/addons/openupgrade_scripts/apriori.py,sha256=PCwc1amU38JpUK8_3rmqTA1OUTFW5Ni0pt3DdyQrvq8,4099
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
8
8
  odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/noupdate_changes.xml,sha256=givzahE7VAv9gM1TkNDHs3qhNh3AZacox5q-hDuDjIU,4078
9
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/post-migration.py,sha256=1owo0nPgYcTKkcreMZXqpD7ncjX9NSksKvdpQmODCDA,6054
9
+ odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/post-migration.py,sha256=H-mx1NIfSfZvHghcvYRKHWJoZQEWJc9psTTL1Sbn33g,6519
10
10
  odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/pre-migration.py,sha256=Lm8x-SdarGIuUap9amSVUHCY_gFWotlPlUYrgbkDoR0,8249
11
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis.txt,sha256=RzjL-rFUWyrhCGHePhqhbILr9Zw3BqOVeHH7VST3jbY,21179
12
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis_work.txt,sha256=YrfcO8-DN1AlFM261lufp4yhGUyGL1G6_9MBEHnkqf8,25107
11
+ odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis.txt,sha256=xpQwQxWn0ktacfLBgmRuRMjvSY9R4ClAQlfLJRs35Tg,21369
12
+ odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis_work.txt,sha256=IHraqatQaxlTvOPt0HE9Uca1y_qw1ZsUF-fB2PnQIH8,25211
13
13
  odoo/addons/openupgrade_scripts/scripts/account/tests/data.py,sha256=beOIEOzb6-hvlpjM9VVZrSj8pqZ6U7AcrS-w3vkTgsU,490
14
14
  odoo/addons/openupgrade_scripts/scripts/account/tests/test_migration.py,sha256=UsHOHhSkUkmcm4inSE8VgFIn79E-6i9FXt3v6jHW5HY,791
15
15
  odoo/addons/openupgrade_scripts/scripts/account_check_printing/18.0.1.0/upgrade_analysis.txt,sha256=IY2z67lgzVtwG7Zzj71ks2why2Hwuz-mRPy9xEqfBcY,675
@@ -18,7 +18,7 @@ odoo/addons/openupgrade_scripts/scripts/account_edi/18.0.1.0/upgrade_analysis.tx
18
18
  odoo/addons/openupgrade_scripts/scripts/account_edi/18.0.1.0/upgrade_analysis_work.txt,sha256=PrVxXIPDX-g2kBxstg2GSHY6IU-dFU0fp2seVu2gUZk,172
19
19
  odoo/addons/openupgrade_scripts/scripts/account_edi_proxy_client/18.0.1.0/upgrade_analysis.txt,sha256=H9U9Nkn05WkI7C6e9u9Q7XE8b4ZwxDN7t91AM12pWKg,409
20
20
  odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/pre-migration.py,sha256=YtIqcS02A8UApImRd6EHxfHDQ6GlyQOfKvNCtN66uwo,361
21
- odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis.txt,sha256=MNFVkY3P7RREhdjunluC9xQuQ8YXFhs01bRbpht6KXc,1498
21
+ odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis.txt,sha256=RessJBfJGINC6jI5lubluJ4nKeUo9EGEzCGolljo-LM,1465
22
22
  odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis_work.txt,sha256=KJlhf73oFXfr6iWobBCezXXgq5tBPkt6wL7gf-UhBt0,3199
23
23
  odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii_tax_extension/18.0.1.0/upgrade_analysis.txt,sha256=rcCuXHU-maa0y4sBG1MYAvfXxjQq8MTzxIDcAxyKJTc,222
24
24
  odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii_tax_extension/18.0.1.0/upgrade_analysis_work.txt,sha256=rbbyPbKfc6M5eNJ9a1GKA9huTfTgwTOeQx_RybYTy3s,238
@@ -53,10 +53,10 @@ odoo/addons/openupgrade_scripts/scripts/barcodes_gs1_nomenclature/18.0.1.0/upgra
53
53
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/end-migration.py,sha256=95Xpwk74luLI0w2LYpf_L5bW8lTVmY_ExvlZoZ2VIYA,1210
54
54
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/noupdate_changes.xml,sha256=48aPMEOX4HfGytRcO_Q2-m9N1kVnY0uaa7iJux6GoVI,16910
55
55
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/post-migration.py,sha256=fpQzoO0WOQVMy2BJ3MR-YNGIFfLbgj4M7p0f_PqMqP8,962
56
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/pre-migration.py,sha256=BBq8w1NIPEtpQ6mM6E88DaZD_56oiqCbyb6RLAN2bqg,2166
56
+ odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/pre-migration.py,sha256=eGEjAYIoYmIQGTQ3QwpE_6FGUJvvmgK35oE1jNqRWJE,2371
57
57
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis.txt,sha256=zn2pp5rMSMiAoUgIgLEZ8DivttarkojVX1v3xZY2Ry8,22324
58
58
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis_work.txt,sha256=DtjRkyr9Xu9MZt-NvAOmUYdd9kgJErm-KOfzZOriBXc,23232
59
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt,sha256=Ksh_dP6DJKMxnZAI41qaFyL8mvV_bqFZQXhW_KehGjU,12125
59
+ odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt,sha256=AHd0nW9Thb5mt8_q6kOEC6GJf7qLY-wkuZnfX4YuUJE,12169
60
60
  odoo/addons/openupgrade_scripts/scripts/base/tests/data_base_migration.py,sha256=G4qE5if25WvkEBxDp3S9QfVRFiD4MV7bZFeagvp5qL8,302
61
61
  odoo/addons/openupgrade_scripts/scripts/base/tests/test_base_migration.py,sha256=jj1GMmV4SX_5q9t-PvIlD1pSR6_swUcpcKKe3r2ZT4E,703
62
62
  odoo/addons/openupgrade_scripts/scripts/base_address_extended/18.0.1.1/upgrade_analysis.txt,sha256=ZOyM6AVCXejBYRawvroMqOMDKsira10CnD6UG46UG7U,186
@@ -185,7 +185,11 @@ odoo/addons/openupgrade_scripts/scripts/hr_org_chart/18.0.1.0/upgrade_analysis_w
185
185
  odoo/addons/openupgrade_scripts/scripts/hr_presence/18.0.1.0/noupdate_changes.xml,sha256=F8rQNt3I2Z022Kd6-aUQwefRG6JhpP5h9qc1HKxS9rY,1144
186
186
  odoo/addons/openupgrade_scripts/scripts/hr_presence/18.0.1.0/upgrade_analysis.txt,sha256=6JNkLuUB-Ce1V2WJi_HhrtkQA_yS9ptiM2rFkIOFSAk,1001
187
187
  odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/noupdate_changes.xml,sha256=UX2Wy3IaZtT5-p3z2T1HgbSRd4t5espsASQBRq-nDpk,1581
188
+ odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/noupdate_changes_work.xml,sha256=qd5AjM0uWybu81xqGDsLa8hPAPK7e8f2D_tA6c5shsk,1784
189
+ odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/post-migration.py,sha256=dVOqX_IhsGiSa9dE_XdCOz42N6b2g1E6_lEvl3K5tNc,10834
190
+ odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/pre-migration.py,sha256=JkPKnqw5LVJ2LXJCvjnDbqz1716pu8JBjwQgG2ANiMc,1122
188
191
  odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/upgrade_analysis.txt,sha256=egJBU6M14oAL4JOPEej39P0w-tyi-v8eKSbdMUZM8-I,10676
192
+ odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/upgrade_analysis_work.txt,sha256=Bk15zVV8z-AUhC1oDmxJJhO3h95rXQpJ8neqFP1rdIo,11783
189
193
  odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/noupdate_changes.xml,sha256=TBWulUD77pcsyyuwVjk-O33EtjeAv98gbvpS0AHlFYA,563
190
194
  odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/upgrade_analysis.txt,sha256=iQF7k6CQCDXQyyh_TWqqn4ktJK7xEfgy4Q8xyo1acbk,2114
191
195
  odoo/addons/openupgrade_scripts/scripts/hr_recruitment_sms/18.0.1.0/upgrade_analysis.txt,sha256=FJI1P9IcBHW7GjFk1x8zkxu1yfA99EiujiWfva0QWxc,212
@@ -198,6 +202,7 @@ odoo/addons/openupgrade_scripts/scripts/hr_skills/18.0.1.0/upgrade_analysis_work
198
202
  odoo/addons/openupgrade_scripts/scripts/hr_skills_slides/18.0.1.0/upgrade_analysis.txt,sha256=oQB8tjhHAghJ25JskMaQEBVgDe2p4uz0qvWqX-QBuwQ,171
199
203
  odoo/addons/openupgrade_scripts/scripts/hr_skills_slides/18.0.1.0/upgrade_analysis_work.txt,sha256=GZ50if5Cj-olkF4Pf8HYlz00Yf6yVfr0BdXK4ILPCcA,187
200
204
  odoo/addons/openupgrade_scripts/scripts/hr_skills_survey/18.0.1.0/upgrade_analysis.txt,sha256=62_iV0pHw5oxzbG1mv3_Ek0d1o7aMypWyCTtFnJ26LU,279
205
+ odoo/addons/openupgrade_scripts/scripts/hr_skills_survey/18.0.1.0/upgrade_analysis_work.txt,sha256=ALpFFVogUtRXDVFjlwQVn1BpSaRX9ksiV9erbonVb-g,487
201
206
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet/18.0.1.0/noupdate_changes.xml,sha256=u1LW9PIW7z-rnmCQe9Z6Oogyv4ncATE6KHe2MLNHr1M,1328
202
207
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet/18.0.1.0/post-migration.py,sha256=y0qmrJJCcNW5gcOoCVqP7iD7JInjXLSdM4nIRcS4CFM,291
203
208
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet/18.0.1.0/upgrade_analysis.txt,sha256=x6O3HV-UphXUsvvDp4Y-PomWh3xO24FGS_n7Cx2FSrA,2203
@@ -261,11 +266,11 @@ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_facturae/18.0.1.0/upgrade_an
261
266
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_sii/18.0.1.1/upgrade_analysis.txt,sha256=cU_8rPaLN5uBVOBEwAaaJs00-ZoLVT1hK5CQBmZ9M4E,2573
262
267
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_tbai/18.0.1.1/upgrade_analysis.txt,sha256=3cJ1IutooQ4lIUUNZ24alWY7ifMon4_5TYUPgHop3N8,3021
263
268
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_tbai_pos/18.0.1.0/upgrade_analysis.txt,sha256=LUzFhpSJ__5AfXYxbqoMtTDalbG3eSge7QtKqX7BE3I,498
264
- odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_analysis.txt,sha256=tYj8k-LFkWr_ojusCypK8nrzF_8cd8vFCYEvWF0F63k,4405
265
- odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt,sha256=erbrTtZW0XDR2_Svg-h7nfyseL3opBpb33uRsmOA0YQ,1090
269
+ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_analysis.txt,sha256=wV3sOsD8MAb6bP_wZ9pP-zGPvNjxf6ndr-zKF40qeiM,1606
270
+ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt,sha256=eIh6lH1b6LO-XywEGgOZAf1-bexeDaZnTonR_6tDqGw,198
266
271
  odoo/addons/openupgrade_scripts/scripts/l10n_es_pos/18.0.1.0/upgrade_analysis.txt,sha256=FjbSnOJlcdbyBOgzF_gdsSyd5PkkdAu6lArmsW4gswo,204
267
272
  odoo/addons/openupgrade_scripts/scripts/l10n_fi/18.0.13.0.2/upgrade_analysis.txt,sha256=zlmqm9DBVj0aAfRbvzL-IqnnKumlDntIcxLhLeBYbvE,144
268
- odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py,sha256=NTsSEw44VcvwAocqqGG8JSkLSKocuDT0U9mFeF91m08,788
273
+ odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py,sha256=j_YVJ2TN4Ve_8kPX2ABw4oxk8V0wtxTEgS6JF2U-CCU,788
269
274
  odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis.txt,sha256=chRTFJIVdvDpjvcdlUsK_WkFju0LTC_kQOCiDM5oxgA,245034
270
275
  odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis_work.txt,sha256=aa_PJAX_5r9htdx68izCvkltjuMNZ3A6iGnnV5tSirE,35789
271
276
  odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/post-migration.py,sha256=Z8wb_cOM9LWM4yRChdzulaZbjGFCTqKpPoh5WXC47uo,991
@@ -353,7 +358,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_th/18.0.2.0/upgrade_analysis.txt,sh
353
358
  odoo/addons/openupgrade_scripts/scripts/l10n_tr/18.0.1.3/upgrade_analysis.txt,sha256=YeOGJrYH_ipTdfVaoUFT3hMEyBoAqK-9k6lcrX7fej4,373
354
359
  odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera/18.0.1.0/upgrade_analysis.txt,sha256=rDiNxUR7pTQNqrKEE3FAajYzgWEFnvzUIm_sOfIhGx8,552
355
360
  odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_edispatch/18.0.1.0/upgrade_analysis.txt,sha256=-xhpc6EGgGmPAmRIOrUQEX8NwEVbHiOqGUYHmL3Misk,198
356
- odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_einvoice/18.0.1.0/upgrade_analysis.txt,sha256=3lXCiSFNnTXb1432czOKu85_EWiA1_8D8AFU3I_WVyM,307
361
+ odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_einvoice/18.0.1.0/upgrade_analysis.txt,sha256=O3r89od7t3NNyRaupltxVuQ8roF331XsldNtp4MNLTY,247
357
362
  odoo/addons/openupgrade_scripts/scripts/l10n_ua/18.0.1.4/noupdate_changes.xml,sha256=O-_V_Jm9NVqtle4A8d_DbUwpWIPSQLTRoMW7NEkW4KQ,157
358
363
  odoo/addons/openupgrade_scripts/scripts/l10n_ug/18.0.1.0.0/upgrade_analysis.txt,sha256=GBhWa1-7y9eOHa5QUhTHVKPoK_yA2WE99qU8fBHRdUw,455
359
364
  odoo/addons/openupgrade_scripts/scripts/l10n_us/18.0.1.1/pre-migration.py,sha256=SHw3hJ2UzAx3wV54YbIV__gQr7WloROv4aJKQeDotIA,411
@@ -383,10 +388,9 @@ odoo/addons/openupgrade_scripts/scripts/mail_group/18.0.1.1/upgrade_analysis_wor
383
388
  odoo/addons/openupgrade_scripts/scripts/mail_plugin/18.0.1.0/upgrade_analysis.txt,sha256=OuDqjVni5xXOyXL5xwE5xuCIqVKerYmwyNLUiJF-Je4,156
384
389
  odoo/addons/openupgrade_scripts/scripts/maintenance/18.0.1.0/upgrade_analysis.txt,sha256=OojMCVCVJEVFqBx97IwcNCSi1dSjGAOELMjNhZZqIXk,326
385
390
  odoo/addons/openupgrade_scripts/scripts/maintenance/18.0.1.0/upgrade_analysis_work.txt,sha256=d9dGdjAqJlF38Q4c5Rb73MBw3jntJ43VaphfyD7KmdA,362
386
- odoo/addons/openupgrade_scripts/scripts/marketing_card/18.0.1.1/upgrade_analysis.txt,sha256=m8TxANJGWhgDpRT2DBfTp64bB-CQguIRVbRJOnfoTHc,9129
391
+ odoo/addons/openupgrade_scripts/scripts/marketing_card/18.0.1.1/upgrade_analysis.txt,sha256=UeosuT3e8jAea_CyVkRYs8Way8VHRYfofdQIDIDMwYQ,9189
387
392
  odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/noupdate_changes.xml,sha256=iplLvMzz5iDJ8TWdLyR8KGk_HGxz0K-177RJwrlR9mk,162
388
- odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/noupdate_changes_work.xml,sha256=jbX5f8oUedXvXvWQGGslRX7kGu7gU9pqOBJ0BI_aZqc,163
389
- odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/post-migrate.py,sha256=_Xp26euGs0ybDCGjLOVggr_IimAhrmZwqUvH52qzkn8,301
393
+ odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/post-migrate.py,sha256=sEm0c3F3ONHy9ccNN78y0eLFEPr0DY6xtSx71D-HR24,296
390
394
  odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/upgrade_analysis.txt,sha256=9duD8Gm0FhcRLihIODYdb8lmc3CS2xM5WJkUioQhaXk,1003
391
395
  odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/upgrade_analysis_work.txt,sha256=Y_Z6myP8zlchjIfJWCyDNHbCMABG8QawCF7MNEPiZiU,1055
392
396
  odoo/addons/openupgrade_scripts/scripts/mass_mailing_crm/18.0.1.0/upgrade_analysis.txt,sha256=BVrq7-HrrvKTT70fOrzoLLJcKJE9l0ha0pQFQCxIraw,171
@@ -458,13 +462,13 @@ odoo/addons/openupgrade_scripts/scripts/payment_stripe/18.0.2.0/upgrade_analysis
458
462
  odoo/addons/openupgrade_scripts/scripts/payment_stripe/18.0.2.0/upgrade_analysis_work.txt,sha256=X1XcitshvmbfBzlSieWkvh81mJL1eqyNAPTZdeHzI3E,337
459
463
  odoo/addons/openupgrade_scripts/scripts/payment_worldline/18.0.1.0/noupdate_changes.xml,sha256=LflkQpYo4U8SIpRl0eLjrTd2SpvwEh4Gv8RGrs1apDg,295
460
464
  odoo/addons/openupgrade_scripts/scripts/payment_worldline/18.0.1.0/upgrade_analysis.txt,sha256=Ui-Y5BC3kUGd6u6BgZOJ-6cQatyvD9B0Zuuv_FS6r-s,1356
461
- odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/noupdate_changes.xml,sha256=u0o3EQ5bH3lUMd5Kbr94Fsrygu4wJkQKloRB9dyrrxA,247
465
+ odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/noupdate_changes.xml,sha256=dLQsaUyk0Iy7U15CGCDUjskU2Se-PpkkfvuyJsPzP5o,197
462
466
  odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/upgrade_analysis.txt,sha256=dswdTCwBThSWuuprLnFB6Hko_pieTnNdQkwHxrt9jY4,382
463
467
  odoo/addons/openupgrade_scripts/scripts/phone_validation/18.0.2.1/upgrade_analysis.txt,sha256=zHx1oo1qSI5f6kZeh24Jq5tPXtfnvgQYlBeO1isOOSw,171
464
468
  odoo/addons/openupgrade_scripts/scripts/phone_validation/18.0.2.1/upgrade_analysis_work.txt,sha256=r6ZZxEY8udYvp3vj59JewSzKuX4SprcezFqGf4l-cys,187
465
469
  odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/post-migration.py,sha256=tiyasJWrYq46M2E0i0eIrJDVx73L0gPiIi7UxVm2zCA,4380
466
470
  odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/pre-migration.py,sha256=wJrEIhmf-HTnizXFOOkjs4SBnIXl0gXFq3XtIDNWybI,2653
467
- odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt,sha256=QTdvrzHNIbalT39qfy6xXVFMmIPj7DYxVA9vFV7OOqI,10427
471
+ odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt,sha256=bTArE3qWvazbUkhMp2Ezr2-_JeNshFK3oIIBljY6j-I,10650
468
472
  odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis_work.txt,sha256=e4BCTZe7WRAqXoNhe52PRQ7RP-wlTKTtUVSaDK66ijY,12222
469
473
  odoo/addons/openupgrade_scripts/scripts/portal/18.0.1.0/noupdate_changes.xml,sha256=Du6sud3Wmb5rIn3UVwKgrB3A9CbnK5qFYugWq2qcf0E,6689
470
474
  odoo/addons/openupgrade_scripts/scripts/portal/18.0.1.0/post-migration.py,sha256=Fwcg9o6OAsHbDJ46wbYs587VMKo-U-92NJDN-GsMHPc,404
@@ -627,14 +631,15 @@ odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard/18.0.1.0/upgrade_a
627
631
  odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_pos_restaurant/18.0.1.0/upgrade_analysis.txt,sha256=2sp42OSaBEMKrEhPPst4IxjffGe_2wj8nU_QM1uY3m0,292
628
632
  odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_stock_account/18.0.1.0/upgrade_analysis.txt,sha256=iJhZOolILwgrkATpb0o6L7h9lCAK8NA3fVSmO2ST1HU,394
629
633
  odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_stock_account/18.0.1.0/upgrade_analysis_work.txt,sha256=pnsuwRbNDAsdARtl_4v9WY608niDLzZWQOvRMMKGssw,516
634
+ odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/end-migration.py,sha256=oiwzVAtRjiXm6rFmfPDNkfjHAY-nN3xOh_HRYp3MDlU,649
630
635
  odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/noupdate_changes.xml,sha256=D5zrp_FcweU-CigDEwOGh0yIrn7lRkhfXVaUzeq7pko,209
631
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py,sha256=fo2VSz9k6wdmccfOaOrOVnBxoM0XmmCEhs3TWghWCpI,4545
636
+ odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py,sha256=J_cwgQUx5BdHCdlO1c4AJoanaklhPQbjuxLK38la1_c,4112
632
637
  odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/pre-migration.py,sha256=sShDIPSsF_KVKPnSgf5lIo9hivzF0mBckx69vMXgHxw,4573
633
638
  odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis.txt,sha256=XhtFlo2DnIQECRF-TqECbsgA25cG1TCAkWcGs-yT5nE,7072
634
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt,sha256=jvIp9uqycvsNvH4nFxTwz_5drHY6QL_yGb5-myhba9g,8455
639
+ odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt,sha256=pwZgnCPaNIZ5D5G2iQ0ccSa8mVS9F3h7n8_vNfAYS2A,8454
635
640
  odoo/addons/openupgrade_scripts/scripts/stock/tests/data_pull.py,sha256=Plin9Hf_-q1CYGDuMrH1e4C61K7l__vgX3FBh9KXALA,2449
636
641
  odoo/addons/openupgrade_scripts/scripts/stock/tests/data_push.py,sha256=zmfRrv-YO5rHRDFtL_N1ZGWuvnCmCpe4Lc3EHrG3RA4,2231
637
- odoo/addons/openupgrade_scripts/scripts/stock/tests/test_migration.py,sha256=mgGE-xxvgWY8iKgIawgqznPWIDWuaQT59uWXK3iN9Sw,5565
642
+ odoo/addons/openupgrade_scripts/scripts/stock/tests/test_migration.py,sha256=-VIOjSJI3eORY_vrwCCQE1BOXsxB-cnFsG30dX4cpFw,5647
638
643
  odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/end-migration.py,sha256=6-xMxCaEunqwfGsyACH-BBtNtiKHiiR3rM3ELdkq3G4,1118
639
644
  odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/post-migration.py,sha256=Rtfpey0dONHUXyswMrvGK9MlwSJyal2HgfFloO4Dhs0,1213
640
645
  odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/pre-migration.py,sha256=zWOya4IKLGlpWE0pVcTRh7_A5SfKA77Ro8uAHMJ23Jc,698
@@ -698,6 +703,7 @@ odoo/addons/openupgrade_scripts/scripts/website_event_track_quiz/18.0.1.0/upgrad
698
703
  odoo/addons/openupgrade_scripts/scripts/website_forum/18.0.1.2/noupdate_changes.xml,sha256=sPZfqPBHqSnqTtMkj-b1h40LNDtpiHH52YHQ5TIf8xY,5419
699
704
  odoo/addons/openupgrade_scripts/scripts/website_forum/18.0.1.2/upgrade_analysis.txt,sha256=ZG-8hgvT59iE0qeiosTRINK4dglH7D43vJkkrLQNeXM,713
700
705
  odoo/addons/openupgrade_scripts/scripts/website_hr_recruitment/18.0.1.1/upgrade_analysis.txt,sha256=1MyS7_JKvWMwMN1MBXOpSVJLYqGlJOSAoZzCmX9PZ6w,362
706
+ odoo/addons/openupgrade_scripts/scripts/website_hr_recruitment/18.0.1.1/upgrade_analysis_work.txt,sha256=Q4YX5gM_-SzNCTqOurvSxPyHi8hBhtXTBXm0zoyT7FA,378
701
707
  odoo/addons/openupgrade_scripts/scripts/website_jitsi/18.0.1.0/upgrade_analysis.txt,sha256=UzHl2nfT05b9LOrVtS0ZMq1JlSmG2lWMuoMqOk-ib68,162
702
708
  odoo/addons/openupgrade_scripts/scripts/website_jitsi/18.0.1.0/upgrade_analysis_work.txt,sha256=uw2qHsviz_FSLGW5IPLFRYm_RNM-K5pTD7beQ9zg-SA,178
703
709
  odoo/addons/openupgrade_scripts/scripts/website_livechat/18.0.1.0/upgrade_analysis.txt,sha256=Z53ZRbF2Olol1BUE1zkLwPQedKI3NO59aOEQ_Zq2Bus,171
@@ -740,7 +746,7 @@ odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_a
740
746
  odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
741
747
  odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
742
748
  odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Jc0qAThlH5WnoSq6vPamjC8WyMkdo_9zkhDuU1qW1VI,12722
743
- odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info/METADATA,sha256=SPWe-wSp50EszNsNesB1IR-EtolHymEKLElJ_vcg8d4,3812
744
- odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
745
- odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
746
- odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info/RECORD,,
749
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info/METADATA,sha256=YUUpbcQya5CxFj0ywx6_flHhnce1Y0yqGiVBmBnR3Oo,3812
750
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
751
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
752
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.343.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- <?xml version='1.0' encoding='utf-8' ?>
2
- <odoo>
3
- <record id="ir_cron_mass_mailing_queue" model="ir.cron">
4
- <field name="priority">6</field>
5
- </record>
6
- </odoo>