odoo-addon-openupgrade-scripts 18.0.1.0.0.326__py3-none-any.whl → 18.0.1.0.0.335__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 -1
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/post-migration.py +18 -2
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis_work.txt +1 -0
- odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/pre-migration.py +7 -0
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt +5 -5
- odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_analysis.txt +11 -38
- odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt +1 -8
- odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py +1 -1
- odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_einvoice/18.0.1.0/upgrade_analysis.txt +0 -1
- odoo/addons/openupgrade_scripts/scripts/marketing_card/18.0.1.1/upgrade_analysis.txt +1 -0
- odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/post-migrate.py +1 -1
- odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/noupdate_changes.xml +0 -1
- odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt +3 -0
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/end-migration.py +19 -0
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py +0 -12
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/stock/tests/test_migration.py +4 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.335.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.335.dist-info}/RECORD +22 -22
- odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/noupdate_changes_work.xml +0 -6
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.335.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.326.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.335.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
|
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
|
-
|
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(
|
@@ -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
|
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
|
-
#
|
124
|
-
# Direct match:
|
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:
|
130
|
-
# Not matched:
|
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'---
|
@@ -1,44 +1,17 @@
|
|
1
1
|
---Models in module 'l10n_es_edi_verifactu'---
|
2
|
-
|
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.
|
13
|
-
l10n_es_edi_verifactu / l10n_es_edi_verifactu.
|
14
|
-
l10n_es_edi_verifactu / l10n_es_edi_verifactu.
|
15
|
-
l10n_es_edi_verifactu / l10n_es_edi_verifactu.
|
16
|
-
l10n_es_edi_verifactu / l10n_es_edi_verifactu.
|
17
|
-
l10n_es_edi_verifactu /
|
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
|
-
|
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
|
-
|
35
|
-
|
36
|
-
|
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
|
odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt
CHANGED
@@ -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
|
-
|
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', '
|
17
|
+
'ir.config_parameter', 'res.bank')
|
18
18
|
""",
|
19
19
|
)
|
20
20
|
openupgrade.logged_query(
|
odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_einvoice/18.0.1.0/upgrade_analysis.txt
CHANGED
@@ -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
|
@@ -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:
|
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
|
-
|
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([]):
|
@@ -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=
|
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=
|
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
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=
|
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=
|
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=
|
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=
|
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
|
@@ -261,11 +261,11 @@ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_facturae/18.0.1.0/upgrade_an
|
|
261
261
|
odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_sii/18.0.1.1/upgrade_analysis.txt,sha256=cU_8rPaLN5uBVOBEwAaaJs00-ZoLVT1hK5CQBmZ9M4E,2573
|
262
262
|
odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_tbai/18.0.1.1/upgrade_analysis.txt,sha256=3cJ1IutooQ4lIUUNZ24alWY7ifMon4_5TYUPgHop3N8,3021
|
263
263
|
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=
|
265
|
-
odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt,sha256=
|
264
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_analysis.txt,sha256=wV3sOsD8MAb6bP_wZ9pP-zGPvNjxf6ndr-zKF40qeiM,1606
|
265
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt,sha256=eIh6lH1b6LO-XywEGgOZAf1-bexeDaZnTonR_6tDqGw,198
|
266
266
|
odoo/addons/openupgrade_scripts/scripts/l10n_es_pos/18.0.1.0/upgrade_analysis.txt,sha256=FjbSnOJlcdbyBOgzF_gdsSyd5PkkdAu6lArmsW4gswo,204
|
267
267
|
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=
|
268
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py,sha256=j_YVJ2TN4Ve_8kPX2ABw4oxk8V0wtxTEgS6JF2U-CCU,788
|
269
269
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis.txt,sha256=chRTFJIVdvDpjvcdlUsK_WkFju0LTC_kQOCiDM5oxgA,245034
|
270
270
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis_work.txt,sha256=aa_PJAX_5r9htdx68izCvkltjuMNZ3A6iGnnV5tSirE,35789
|
271
271
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/post-migration.py,sha256=Z8wb_cOM9LWM4yRChdzulaZbjGFCTqKpPoh5WXC47uo,991
|
@@ -353,7 +353,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_th/18.0.2.0/upgrade_analysis.txt,sh
|
|
353
353
|
odoo/addons/openupgrade_scripts/scripts/l10n_tr/18.0.1.3/upgrade_analysis.txt,sha256=YeOGJrYH_ipTdfVaoUFT3hMEyBoAqK-9k6lcrX7fej4,373
|
354
354
|
odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera/18.0.1.0/upgrade_analysis.txt,sha256=rDiNxUR7pTQNqrKEE3FAajYzgWEFnvzUIm_sOfIhGx8,552
|
355
355
|
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=
|
356
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_einvoice/18.0.1.0/upgrade_analysis.txt,sha256=O3r89od7t3NNyRaupltxVuQ8roF331XsldNtp4MNLTY,247
|
357
357
|
odoo/addons/openupgrade_scripts/scripts/l10n_ua/18.0.1.4/noupdate_changes.xml,sha256=O-_V_Jm9NVqtle4A8d_DbUwpWIPSQLTRoMW7NEkW4KQ,157
|
358
358
|
odoo/addons/openupgrade_scripts/scripts/l10n_ug/18.0.1.0.0/upgrade_analysis.txt,sha256=GBhWa1-7y9eOHa5QUhTHVKPoK_yA2WE99qU8fBHRdUw,455
|
359
359
|
odoo/addons/openupgrade_scripts/scripts/l10n_us/18.0.1.1/pre-migration.py,sha256=SHw3hJ2UzAx3wV54YbIV__gQr7WloROv4aJKQeDotIA,411
|
@@ -383,10 +383,9 @@ odoo/addons/openupgrade_scripts/scripts/mail_group/18.0.1.1/upgrade_analysis_wor
|
|
383
383
|
odoo/addons/openupgrade_scripts/scripts/mail_plugin/18.0.1.0/upgrade_analysis.txt,sha256=OuDqjVni5xXOyXL5xwE5xuCIqVKerYmwyNLUiJF-Je4,156
|
384
384
|
odoo/addons/openupgrade_scripts/scripts/maintenance/18.0.1.0/upgrade_analysis.txt,sha256=OojMCVCVJEVFqBx97IwcNCSi1dSjGAOELMjNhZZqIXk,326
|
385
385
|
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=
|
386
|
+
odoo/addons/openupgrade_scripts/scripts/marketing_card/18.0.1.1/upgrade_analysis.txt,sha256=UeosuT3e8jAea_CyVkRYs8Way8VHRYfofdQIDIDMwYQ,9189
|
387
387
|
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/
|
389
|
-
odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/post-migrate.py,sha256=_Xp26euGs0ybDCGjLOVggr_IimAhrmZwqUvH52qzkn8,301
|
388
|
+
odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/post-migrate.py,sha256=sEm0c3F3ONHy9ccNN78y0eLFEPr0DY6xtSx71D-HR24,296
|
390
389
|
odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/upgrade_analysis.txt,sha256=9duD8Gm0FhcRLihIODYdb8lmc3CS2xM5WJkUioQhaXk,1003
|
391
390
|
odoo/addons/openupgrade_scripts/scripts/mass_mailing/18.0.2.7/upgrade_analysis_work.txt,sha256=Y_Z6myP8zlchjIfJWCyDNHbCMABG8QawCF7MNEPiZiU,1055
|
392
391
|
odoo/addons/openupgrade_scripts/scripts/mass_mailing_crm/18.0.1.0/upgrade_analysis.txt,sha256=BVrq7-HrrvKTT70fOrzoLLJcKJE9l0ha0pQFQCxIraw,171
|
@@ -458,13 +457,13 @@ odoo/addons/openupgrade_scripts/scripts/payment_stripe/18.0.2.0/upgrade_analysis
|
|
458
457
|
odoo/addons/openupgrade_scripts/scripts/payment_stripe/18.0.2.0/upgrade_analysis_work.txt,sha256=X1XcitshvmbfBzlSieWkvh81mJL1eqyNAPTZdeHzI3E,337
|
459
458
|
odoo/addons/openupgrade_scripts/scripts/payment_worldline/18.0.1.0/noupdate_changes.xml,sha256=LflkQpYo4U8SIpRl0eLjrTd2SpvwEh4Gv8RGrs1apDg,295
|
460
459
|
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=
|
460
|
+
odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/noupdate_changes.xml,sha256=dLQsaUyk0Iy7U15CGCDUjskU2Se-PpkkfvuyJsPzP5o,197
|
462
461
|
odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/upgrade_analysis.txt,sha256=dswdTCwBThSWuuprLnFB6Hko_pieTnNdQkwHxrt9jY4,382
|
463
462
|
odoo/addons/openupgrade_scripts/scripts/phone_validation/18.0.2.1/upgrade_analysis.txt,sha256=zHx1oo1qSI5f6kZeh24Jq5tPXtfnvgQYlBeO1isOOSw,171
|
464
463
|
odoo/addons/openupgrade_scripts/scripts/phone_validation/18.0.2.1/upgrade_analysis_work.txt,sha256=r6ZZxEY8udYvp3vj59JewSzKuX4SprcezFqGf4l-cys,187
|
465
464
|
odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/post-migration.py,sha256=tiyasJWrYq46M2E0i0eIrJDVx73L0gPiIi7UxVm2zCA,4380
|
466
465
|
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=
|
466
|
+
odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt,sha256=bTArE3qWvazbUkhMp2Ezr2-_JeNshFK3oIIBljY6j-I,10650
|
468
467
|
odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis_work.txt,sha256=e4BCTZe7WRAqXoNhe52PRQ7RP-wlTKTtUVSaDK66ijY,12222
|
469
468
|
odoo/addons/openupgrade_scripts/scripts/portal/18.0.1.0/noupdate_changes.xml,sha256=Du6sud3Wmb5rIn3UVwKgrB3A9CbnK5qFYugWq2qcf0E,6689
|
470
469
|
odoo/addons/openupgrade_scripts/scripts/portal/18.0.1.0/post-migration.py,sha256=Fwcg9o6OAsHbDJ46wbYs587VMKo-U-92NJDN-GsMHPc,404
|
@@ -627,14 +626,15 @@ odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard/18.0.1.0/upgrade_a
|
|
627
626
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_pos_restaurant/18.0.1.0/upgrade_analysis.txt,sha256=2sp42OSaBEMKrEhPPst4IxjffGe_2wj8nU_QM1uY3m0,292
|
628
627
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_stock_account/18.0.1.0/upgrade_analysis.txt,sha256=iJhZOolILwgrkATpb0o6L7h9lCAK8NA3fVSmO2ST1HU,394
|
629
628
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_stock_account/18.0.1.0/upgrade_analysis_work.txt,sha256=pnsuwRbNDAsdARtl_4v9WY608niDLzZWQOvRMMKGssw,516
|
629
|
+
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/end-migration.py,sha256=oiwzVAtRjiXm6rFmfPDNkfjHAY-nN3xOh_HRYp3MDlU,649
|
630
630
|
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=
|
631
|
+
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py,sha256=J_cwgQUx5BdHCdlO1c4AJoanaklhPQbjuxLK38la1_c,4112
|
632
632
|
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/pre-migration.py,sha256=sShDIPSsF_KVKPnSgf5lIo9hivzF0mBckx69vMXgHxw,4573
|
633
633
|
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=
|
634
|
+
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt,sha256=pwZgnCPaNIZ5D5G2iQ0ccSa8mVS9F3h7n8_vNfAYS2A,8454
|
635
635
|
odoo/addons/openupgrade_scripts/scripts/stock/tests/data_pull.py,sha256=Plin9Hf_-q1CYGDuMrH1e4C61K7l__vgX3FBh9KXALA,2449
|
636
636
|
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
|
637
|
+
odoo/addons/openupgrade_scripts/scripts/stock/tests/test_migration.py,sha256=-VIOjSJI3eORY_vrwCCQE1BOXsxB-cnFsG30dX4cpFw,5647
|
638
638
|
odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/end-migration.py,sha256=6-xMxCaEunqwfGsyACH-BBtNtiKHiiR3rM3ELdkq3G4,1118
|
639
639
|
odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/post-migration.py,sha256=Rtfpey0dONHUXyswMrvGK9MlwSJyal2HgfFloO4Dhs0,1213
|
640
640
|
odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/pre-migration.py,sha256=zWOya4IKLGlpWE0pVcTRh7_A5SfKA77Ro8uAHMJ23Jc,698
|
@@ -740,7 +740,7 @@ odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_a
|
|
740
740
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
741
741
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
742
742
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Jc0qAThlH5WnoSq6vPamjC8WyMkdo_9zkhDuU1qW1VI,12722
|
743
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
744
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
745
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
746
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
743
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.335.dist-info/METADATA,sha256=zPKd4H9hQ6EOzBB0xlUDmE6ZCfsxtOKkoNe5lpyNqYQ,3812
|
744
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.335.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
745
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.335.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
746
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.335.dist-info/RECORD,,
|
File without changes
|