odoo-addon-openupgrade-scripts 18.0.1.0.0.98__py3-none-any.whl → 18.0.1.0.0.109__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 +3 -0
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/noupdate_changes.xml +4 -0
- odoo/addons/openupgrade_scripts/scripts/account_debit_note/18.0.1.0/upgrade_analysis.txt +0 -3
- odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/noupdate_changes.xml +0 -1
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt +4 -4
- odoo/addons/openupgrade_scripts/scripts/iap/18.0.1.1/upgrade_analysis.txt +2 -2
- odoo/addons/openupgrade_scripts/scripts/l10n_ar_withholding/18.0.1.0/upgrade_analysis.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/l10n_ee/18.0.1.3/upgrade_analysis.txt +9 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis.txt +0 -6
- odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/upgrade_analysis.txt +6 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_jo_edi_extended/18.0.1.0/upgrade_analysis.txt +11 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_sa/18.0.2.0/upgrade_analysis.txt +5 -1
- odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py +12 -0
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/pre-migration.py +60 -4
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/stock/tests/data_pull.py +79 -0
- odoo/addons/openupgrade_scripts/scripts/stock/tests/data_push.py +72 -0
- odoo/addons/openupgrade_scripts/scripts/stock/tests/test_migration.py +137 -0
- odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/upgrade_analysis.txt +3 -3
- odoo/addons/openupgrade_scripts/scripts/web_hierarchy/18.0.1.0/upgrade_analysis_work.txt +6 -0
- odoo/addons/openupgrade_scripts/scripts/web_tour/18.0.1.0/upgrade_analysis.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/website_sale/18.0.1.1/upgrade_analysis.txt +2 -2
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info}/RECORD +30 -25
- odoo/addons/openupgrade_scripts/scripts/l10n_ee/18.0.1.2/upgrade_analysis.txt +0 -4
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info}/top_level.txt +0 -0
@@ -19,6 +19,9 @@ renamed_modules = {
|
|
19
19
|
"product_supplierinfo_for_customer": "product_customerinfo",
|
20
20
|
"product_template_tags_code": "product_tags_code",
|
21
21
|
"stock_packaging_calculator": "product_packaging_calculator",
|
22
|
+
# OCA/project
|
23
|
+
"project_stock": "project_task_stock",
|
24
|
+
"project_stock_product_set": "project_task_stock_product_set",
|
22
25
|
# OCA/sale-workflow
|
23
26
|
"product_supplierinfo_for_customer_sale": "product_customerinfo_sale",
|
24
27
|
"sale_product_set_sale_by_packaging": "product_set_sell_only_by_packaging",
|
@@ -9,6 +9,9 @@
|
|
9
9
|
<record id="account_payment_method_manual_out" model="account.payment.method">
|
10
10
|
<field name="name">Manual Payment</field>
|
11
11
|
</record>
|
12
|
+
<record id="email_template_edi_credit_note" model="mail.template">
|
13
|
+
<field name="report_template_ids" eval="[]"/>
|
14
|
+
</record>
|
12
15
|
<record id="email_template_edi_invoice" model="mail.template">
|
13
16
|
<field name="body_html" type="html">
|
14
17
|
<div style="margin: 0px; padding: 0px;">
|
@@ -53,6 +56,7 @@
|
|
53
56
|
</p>
|
54
57
|
</div>
|
55
58
|
</field>
|
59
|
+
<field name="report_template_ids" eval="[]"/>
|
56
60
|
</record>
|
57
61
|
<record id="journal_group_comp_rule" model="ir.rule">
|
58
62
|
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'parent_of', company_ids)]</field>
|
@@ -2,7 +2,4 @@
|
|
2
2
|
---Fields in module 'account_debit_note'---
|
3
3
|
account_debit_note / account.journal / debit_sequence (boolean) : NEW hasdefault: compute
|
4
4
|
---XML records in module 'account_debit_note'---
|
5
|
-
NEW ir.ui.view: account_debit_note.view_account_invoice_filter_debit
|
6
5
|
NEW ir.ui.view: account_debit_note.view_account_journal_form_inherit_debit_note
|
7
|
-
NEW ir.ui.view: account_debit_note.view_account_move_filter_debit
|
8
|
-
NEW ir.ui.view: account_debit_note.view_account_move_line_filter_debit
|
@@ -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 is now '['0002', '0007', '0009', '0037', '0060', '0088', '0096', '0097', '0106', '0130', '0135', '0142', '0151', '0183', '0184', '0188', '0190', '0191', '0192', '0193', '0195', '0196', '0198', '0199', '0200', '0201', '0202', '0204', '0208', '0209', '0210', '0211', '0213', '0216', '0221', '0230', '9910', '9913', '9914', '9915', '9918', '9919', '9920', '9922', '9923', '9924', '9925', '9926', '9927', '9928', '9929', '9930', '9931', '9932', '9933', '9934', '9935', '9936', '9937', '9938', '9939', '9940', '9941', '9942', '9943', '9944', '9945', '9946', '9947', '9948', '9949', '9950', '9951', '9952', '9953', '9955', '9957', '9959']' ('['0002', '0007', '0009', '0037', '0060', '0088', '0096', '0097', '0106', '0130', '0135', '0142', '0151', '0183', '0184', '0188', '0190', '0191', '0192', '0193', '0195', '0196', '0198', '0199', '0200', '0201', '0202', '0204', '0208', '0209', '0210', '0211', '0212', '0213', '0215', '0216', '0221', '0230', '9901', '9910', '9913', '9914', '9915', '9918', '9919', '9920', '9922', '9923', '9924', '9925', '9926', '9927', '9928', '9929', '9930', '9931', '9932', '9933', '9934', '9935', '9936', '9937', '9938', '9939', '9940', '9941', '9942', '9943', '9944', '9945', '9946', '9947', '9948', '9949', '9950', '9951', '9952', '9953', '9955', '9957', '9959']')
|
6
|
+
account_edi_ubl_cii / res.partner / peppol_eas (selection) : selection_keys is now '['0002', '0007', '0009', '0037', '0060', '0088', '0096', '0097', '0106', '0130', '0135', '0142', '0151', '0183', '0184', '0188', '0190', '0191', '0192', '0193', '0195', '0196', '0198', '0199', '0200', '0201', '0202', '0204', '0208', '0209', '0210', '0211', '0213', '0216', '0221', '0230', '9910', '9913', '9914', '9915', '9918', '9919', '9920', '9922', '9923', '9924', '9925', '9926', '9927', '9928', '9929', '9930', '9931', '9932', '9933', '9934', '9935', '9936', '9937', '9938', '9939', '9940', '9941', '9942', '9943', '9944', '9945', '9946', '9947', '9948', '9949', '9950', '9951', '9952', '9953', '9955', '9957', '9959', 'AN', 'AQ', 'AS', 'AU', 'EM']' ('['0002', '0007', '0009', '0037', '0060', '0088', '0096', '0097', '0106', '0130', '0135', '0142', '0151', '0183', '0184', '0188', '0190', '0191', '0192', '0193', '0195', '0196', '0198', '0199', '0200', '0201', '0202', '0204', '0208', '0209', '0210', '0211', '0212', '0213', '0215', '0216', '0221', '0230', '9901', '9910', '9913', '9914', '9915', '9918', '9919', '9920', '9922', '9923', '9924', '9925', '9926', '9927', '9928', '9929', '9930', '9931', '9932', '9933', '9934', '9935', '9936', '9937', '9938', '9939', '9940', '9941', '9942', '9943', '9944', '9945', '9946', '9947', '9948', '9949', '9950', '9951', '9952', '9953', '9955', '9957', '9959', 'AN', 'AQ', 'AS', 'AU', 'EM']')
|
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'---
|
@@ -1,6 +1,5 @@
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
2
2
|
<odoo>
|
3
|
-
<!-- Nothing to do. See https://github.com/odoo/odoo/commit/ac106704f3c2d3e3fa94415134b9d5522b325378 -->
|
4
3
|
<record id="onboarding_onboarding_step_payment_provider" model="onboarding.onboarding.step">
|
5
4
|
<field name="onboarding_ids"/>
|
6
5
|
</record>
|
@@ -33,7 +33,7 @@ base / ir.embedded.actions / default_view_mode (char) : NEW
|
|
33
33
|
base / ir.embedded.actions / domain (char) : NEW hasdefault: default
|
34
34
|
base / ir.embedded.actions / filter_ids (one2many) : NEW relation: ir.filters
|
35
35
|
base / ir.embedded.actions / groups_ids (many2many) : NEW relation: res.groups
|
36
|
-
base / ir.embedded.actions / name (char) : NEW
|
36
|
+
base / ir.embedded.actions / name (char) : NEW translate
|
37
37
|
base / ir.embedded.actions / parent_action_id (many2one) : NEW relation: ir.actions.act_window, required
|
38
38
|
base / ir.embedded.actions / parent_res_id (integer) : NEW
|
39
39
|
base / ir.embedded.actions / parent_res_model (char) : NEW required
|
@@ -1,5 +1,5 @@
|
|
1
1
|
---Models in module 'general'---
|
2
|
-
obsolete model account.fr.fec [module
|
2
|
+
obsolete model account.fr.fec [module l10n_fr_account]
|
3
3
|
obsolete model account.tour.upload.bill [module account]
|
4
4
|
obsolete model account.tour.upload.bill.email.confirm [module account]
|
5
5
|
obsolete model account.unreconcile [module account]
|
@@ -113,13 +113,13 @@ new model website.custom_blocked_third_party_domains [module website]
|
|
113
113
|
new model website.page.properties [module website]
|
114
114
|
new model website.page.properties.base [module website]
|
115
115
|
---Fields in module 'general'---
|
116
|
-
#
|
117
|
-
# Direct match:
|
116
|
+
# 13372 fields matched,
|
117
|
+
# Direct match: 13272
|
118
118
|
# Found in other module with different type: 0
|
119
119
|
# Found in other module: 92
|
120
120
|
# Found with different type: 8
|
121
121
|
# In obsolete models: 34
|
122
|
-
# New columns:
|
122
|
+
# New columns: 1549
|
123
123
|
# Not matched: 821
|
124
124
|
---XML records in module 'general'---
|
125
125
|
ERROR: module not in list of installed modules:
|
@@ -14,11 +14,11 @@ iap / iap.account / state (selection) : NEW se
|
|
14
14
|
iap / iap.account / warning_threshold (float) : is now stored
|
15
15
|
iap / iap.account / warning_threshold (float) : not related anymore
|
16
16
|
iap / iap.account / warning_user_ids (many2many) : NEW relation: res.users
|
17
|
-
iap / iap.service / description (char) : NEW required
|
17
|
+
iap / iap.service / description (char) : NEW required, translate
|
18
18
|
iap / iap.service / integer_balance (boolean) : NEW required
|
19
19
|
iap / iap.service / name (char) : NEW required
|
20
20
|
iap / iap.service / technical_name (char) : NEW required
|
21
|
-
iap / iap.service / unit_name (char) : NEW required
|
21
|
+
iap / iap.service / unit_name (char) : NEW required, translate
|
22
22
|
---XML records in module 'iap'---
|
23
23
|
NEW iap.service: iap.iap_service_reveal
|
24
24
|
NEW ir.model.access: iap.access_iap_service_manager
|
@@ -10,7 +10,7 @@ l10n_ar_withholding / account.tax / l10n_ar_scale_id (many2one) :
|
|
10
10
|
l10n_ar_withholding / account.tax / l10n_ar_state_id (many2one) : NEW relation: res.country.state
|
11
11
|
l10n_ar_withholding / account.tax / l10n_ar_tax_type (selection) : NEW selection_keys: ['earnings', 'earnings_scale', 'iibb_total', 'iibb_untaxed']
|
12
12
|
l10n_ar_withholding / l10n_ar.earnings.scale / line_ids (one2many) : NEW relation: l10n_ar.earnings.scale.line
|
13
|
-
l10n_ar_withholding / l10n_ar.earnings.scale / name (char) : NEW required
|
13
|
+
l10n_ar_withholding / l10n_ar.earnings.scale / name (char) : NEW required, translate
|
14
14
|
l10n_ar_withholding / l10n_ar.earnings.scale.line / currency_id (many2one) : NEW relation: res.currency, hasdefault: default, stored: False
|
15
15
|
l10n_ar_withholding / l10n_ar.earnings.scale.line / excess_amount (float) : NEW
|
16
16
|
l10n_ar_withholding / l10n_ar.earnings.scale.line / fixed_amount (float) : NEW
|
@@ -0,0 +1,9 @@
|
|
1
|
+
---Models in module 'l10n_ee'---
|
2
|
+
---Fields in module 'l10n_ee'---
|
3
|
+
---XML records in module 'l10n_ee'---
|
4
|
+
NEW account.report.expression: l10n_ee.tax_report_line_1_24_tag
|
5
|
+
NEW account.report.expression: l10n_ee.tax_report_line_1_24_tax_tag
|
6
|
+
NEW account.report.expression: l10n_ee.tax_report_line_1_2_tag
|
7
|
+
NEW account.report.expression: l10n_ee.tax_report_line_1_2_tax_tag
|
8
|
+
NEW account.report.line: l10n_ee.tax_report_line_1_2
|
9
|
+
NEW account.report.line: l10n_ee.tax_report_line_1_24
|
@@ -1,5 +1,4 @@
|
|
1
1
|
---Models in module 'l10n_fr'---
|
2
|
-
obsolete model account.fr.fec [transient]
|
3
2
|
---Fields in module 'l10n_fr'---
|
4
3
|
l10n_fr / res.company / l10n_fr_rounding_difference_loss_account_id (many2one): module is now 'l10n_fr_account' ('l10n_fr')
|
5
4
|
l10n_fr / res.company / l10n_fr_rounding_difference_profit_account_id (many2one): module is now 'l10n_fr_account' ('l10n_fr')
|
@@ -366,10 +365,5 @@ DEL account.report.line: l10n_fr.tax_report_tva_brute_import [renamed to l10n_fr
|
|
366
365
|
DEL account.report.line: l10n_fr.tax_report_tva_brute_metropo [renamed to l10n_fr_account module]
|
367
366
|
DEL account.report.line: l10n_fr.tax_report_tva_brute_petrolier [renamed to l10n_fr_account module]
|
368
367
|
DEL account.report.line: l10n_fr.tax_report_tva_deductible [renamed to l10n_fr_account module]
|
369
|
-
DEL ir.actions.act_window: l10n_fr_fec.account_fr_fec_action
|
370
368
|
DEL ir.config_parameter: l10n_fr.display_name_in_footer_param [renamed to l10n_fr_account module]
|
371
|
-
DEL ir.model.access: l10n_fr_fec.access_account_fr_fec
|
372
|
-
DEL ir.rule: l10n_fr_fec.account_fr_fec_rule (noupdate)
|
373
369
|
DEL ir.ui.menu: l10n_fr.account_reports_fr_statements_menu [renamed to l10n_fr_account module]
|
374
|
-
DEL ir.ui.menu: l10n_fr_fec.account_fr_fec_menu
|
375
|
-
DEL ir.ui.view: l10n_fr_fec.account_fr_fec_view
|
@@ -1,4 +1,5 @@
|
|
1
1
|
---Models in module 'l10n_fr_account'---
|
2
|
+
obsolete model account.fr.fec [transient]
|
2
3
|
new model l10n_fr.fec.export.wizard [transient]
|
3
4
|
---Fields in module 'l10n_fr_account'---
|
4
5
|
l10n_fr_account / res.company / l10n_fr_rounding_difference_loss_account_id (many2one): previously in module l10n_fr
|
@@ -366,12 +367,17 @@ NEW account.report.line: l10n_fr_account.tax_report_tva_brute_import [renamed fr
|
|
366
367
|
NEW account.report.line: l10n_fr_account.tax_report_tva_brute_metropo [renamed from l10n_fr module]
|
367
368
|
NEW account.report.line: l10n_fr_account.tax_report_tva_brute_petrolier [renamed from l10n_fr module]
|
368
369
|
NEW account.report.line: l10n_fr_account.tax_report_tva_deductible [renamed from l10n_fr module]
|
370
|
+
DEL ir.actions.act_window: l10n_fr_fec.account_fr_fec_action
|
369
371
|
NEW ir.config_parameter: l10n_fr_account.display_name_in_footer_param [renamed from l10n_fr module]
|
370
372
|
NEW ir.model.access: l10n_fr_account.access_l10n_fr_fec_export_wizard
|
373
|
+
DEL ir.model.access: l10n_fr_fec.access_account_fr_fec
|
374
|
+
DEL ir.rule: l10n_fr_fec.account_fr_fec_rule (noupdate)
|
371
375
|
NEW ir.ui.menu: l10n_fr_account.account_reports_fr_statements_menu [renamed from l10n_fr module]
|
376
|
+
DEL ir.ui.menu: l10n_fr_fec.account_fr_fec_menu
|
372
377
|
NEW ir.ui.view: l10n_fr_account.fec_export_wizard_view
|
373
378
|
NEW ir.ui.view: l10n_fr_account.report_invoice_document
|
374
379
|
NEW ir.ui.view: l10n_fr_account.res_partner_form_l10n_fr
|
380
|
+
DEL ir.ui.view: l10n_fr_fec.account_fr_fec_view
|
375
381
|
DEL ir.ui.view: l10n_fr_invoice_addr.report_invoice_document
|
376
382
|
NEW res.bank: l10n_fr_account.bank_fr_aaadfrp1
|
377
383
|
NEW res.bank: l10n_fr_account.bank_fr_aaagfrp1
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---Models in module 'l10n_jo_edi_extended'---
|
2
|
+
---Fields in module 'l10n_jo_edi_extended'---
|
3
|
+
l10n_jo_edi_extended / account.move / l10n_jo_edi_invoice_type (selection): NEW selection_keys: ['development', 'export', 'local'], hasdefault: compute
|
4
|
+
l10n_jo_edi_extended / account.move / l10n_jo_edi_state (False) : NEW selection_keys: ['demo', 'sent', 'to_send'], mode: modify
|
5
|
+
l10n_jo_edi_extended / res.company / l10n_jo_edi_demo_mode (boolean): NEW
|
6
|
+
---XML records in module 'l10n_jo_edi_extended'---
|
7
|
+
NEW ir.ui.view: l10n_jo_edi_extended.res_config_settings_view_form
|
8
|
+
NEW ir.ui.view: l10n_jo_edi_extended.view_account_invoice_filter
|
9
|
+
NEW ir.ui.view: l10n_jo_edi_extended.view_move_form
|
10
|
+
NEW ir.ui.view: l10n_jo_edi_extended.view_out_credit_note_tree
|
11
|
+
NEW ir.ui.view: l10n_jo_edi_extended.view_out_invoice_tree
|
@@ -1,4 +1,8 @@
|
|
1
1
|
---Models in module 'l10n_sa'---
|
2
2
|
---Fields in module 'l10n_sa'---
|
3
3
|
---XML records in module 'l10n_sa'---
|
4
|
-
|
4
|
+
DEL ir.ui.view: l10n_sa.l10n_sa_additional_footer
|
5
|
+
DEL ir.ui.view: l10n_sa.l10n_sa_external_layout_bold
|
6
|
+
DEL ir.ui.view: l10n_sa.l10n_sa_external_layout_boxed
|
7
|
+
DEL ir.ui.view: l10n_sa.l10n_sa_external_layout_standard
|
8
|
+
DEL ir.ui.view: l10n_sa.l10n_sa_external_layout_striped
|
@@ -74,7 +74,7 @@ point_of_sale / product.product / combo_ids (many2many) : modul
|
|
74
74
|
point_of_sale / product.template / color (False) : NEW mode: modify, hasdefault: compute
|
75
75
|
point_of_sale / product.template / combo_ids (many2many) : module is now 'product' ('point_of_sale')
|
76
76
|
point_of_sale / product.template / detailed_type (False) : DEL selection_keys: ['combo', 'consu', 'product', 'service'], mode: modify
|
77
|
-
point_of_sale / product.template / public_description (html) : NEW
|
77
|
+
point_of_sale / product.template / public_description (html) : NEW translate
|
78
78
|
point_of_sale / product.template / type (False) : DEL selection_keys: ['combo', 'consu', 'product', 'service'], mode: modify
|
79
79
|
point_of_sale / res.company / point_of_sale_ticket_portal_url_display_mode (selection): NEW required, selection_keys: ['qr_code', 'qr_code_and_url', 'url'], hasdefault: default
|
80
80
|
---XML records in module 'point_of_sale'---
|
@@ -88,11 +88,23 @@ 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
|
+
|
91
102
|
@openupgrade.migrate()
|
92
103
|
def migrate(env, version):
|
93
104
|
convert_company_dependent(env)
|
94
105
|
_create_default_new_types_for_all_warehouses(env)
|
95
106
|
_set_inter_company_locations(env)
|
107
|
+
fill_stock_picking_type_default_locations(env)
|
96
108
|
openupgrade.load_data(env, "stock", "18.0.1.1/noupdate_changes.xml")
|
97
109
|
openupgrade.delete_records_safely_by_xml_id(
|
98
110
|
env, ["stock.property_stock_customer", "stock.property_stock_supplier"]
|
@@ -2,6 +2,10 @@
|
|
2
2
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
3
|
from openupgradelib import openupgrade
|
4
4
|
|
5
|
+
_columns_copy = {
|
6
|
+
"stock_move": [("location_dest_id", None, None)],
|
7
|
+
}
|
8
|
+
|
5
9
|
_field_renames = [
|
6
10
|
("stock.move", "stock_move", "location_dest_id", "location_final_id"),
|
7
11
|
(
|
@@ -51,12 +55,63 @@ def fill_stock_move_location_dest_id(env):
|
|
51
55
|
openupgrade.logged_query(
|
52
56
|
env.cr,
|
53
57
|
"""
|
58
|
+
WITH RECURSIVE sub AS (
|
59
|
+
(SELECT rel.move_orig_id, rel.move_dest_id
|
60
|
+
FROM stock_move_move_rel rel
|
61
|
+
LEFT JOIN stock_move_move_rel rel2 ON rel.move_dest_id = rel2.move_orig_id
|
62
|
+
WHERE rel2.move_orig_id IS NULL)
|
63
|
+
UNION
|
64
|
+
(SELECT rel.move_orig_id, sub.move_dest_id
|
65
|
+
FROM stock_move_move_rel rel
|
66
|
+
JOIN sub ON sub.move_orig_id = rel.move_dest_id)
|
67
|
+
)
|
68
|
+
UPDATE stock_move sm2
|
69
|
+
SET location_final_id = sm.location_final_id
|
70
|
+
FROM stock_rule sr, stock_move sm
|
71
|
+
JOIN sub ON sub.move_dest_id = sm.id
|
72
|
+
WHERE sm2.rule_id = sr.id AND sub.move_orig_id = sm2.id
|
73
|
+
AND sr.action IN ('push', 'pull_push')
|
74
|
+
""",
|
75
|
+
)
|
76
|
+
openupgrade.logged_query(
|
77
|
+
env.cr,
|
78
|
+
"""
|
79
|
+
WITH sub AS (
|
80
|
+
UPDATE stock_move sm
|
81
|
+
SET location_final_id = sr.location_dest_id
|
82
|
+
FROM stock_rule sr
|
83
|
+
WHERE sm.rule_id = sr.id AND sr.location_dest_id IS NOT NULL
|
84
|
+
AND sr.location_dest_id != sm.location_final_id
|
85
|
+
AND sr.location_dest_id != sm.location_dest_id
|
86
|
+
AND sr.action IN ('pull', 'pull_push')
|
87
|
+
RETURNING rule_id
|
88
|
+
), sub2 AS (
|
89
|
+
SELECT rule_id
|
90
|
+
FROM sub
|
91
|
+
GROUP BY rule_id
|
92
|
+
)
|
54
93
|
UPDATE stock_rule sr
|
55
94
|
SET location_dest_from_rule = TRUE
|
56
|
-
FROM
|
57
|
-
WHERE
|
58
|
-
|
59
|
-
|
95
|
+
FROM sub2
|
96
|
+
WHERE sub2.rule_id = sr.id
|
97
|
+
""",
|
98
|
+
)
|
99
|
+
openupgrade.logged_query(
|
100
|
+
env.cr,
|
101
|
+
"""
|
102
|
+
WITH sub AS (
|
103
|
+
SELECT sm.rule_id
|
104
|
+
FROM stock_move sm
|
105
|
+
JOIN stock_move_move_rel rel ON
|
106
|
+
rel.move_orig_id = sm.id OR rel.move_dest_id = sm.id
|
107
|
+
JOIN stock_rule sr ON sm.rule_id = sr.id
|
108
|
+
WHERE sr.action IN ('pull', 'pull_push')
|
109
|
+
GROUP BY sm.rule_id
|
110
|
+
)
|
111
|
+
UPDATE stock_rule sr
|
112
|
+
SET location_dest_from_rule = TRUE
|
113
|
+
FROM sub
|
114
|
+
WHERE sub.rule_id = sr.id
|
60
115
|
""",
|
61
116
|
)
|
62
117
|
|
@@ -73,6 +128,7 @@ def fill_stock_putaway_rule_sublocation(env):
|
|
73
128
|
|
74
129
|
@openupgrade.migrate()
|
75
130
|
def migrate(env, version=None):
|
131
|
+
openupgrade.copy_columns(env.cr, _columns_copy)
|
76
132
|
openupgrade.rename_fields(env, _field_renames)
|
77
133
|
openupgrade.rename_xmlids(env.cr, _xmlid_renames)
|
78
134
|
openupgrade.add_columns(env, _new_columns)
|
@@ -36,7 +36,7 @@ stock / stock.rule / location_dest_from_rule (boolean): NEW
|
|
36
36
|
stock / stock.rule / push_domain (char) : NEW
|
37
37
|
stock / stock.scrap / scrap_reason_tag_ids (many2many): NEW relation: stock.scrap.reason.tag
|
38
38
|
stock / stock.scrap.reason.tag / color (char) : NEW hasdefault: default
|
39
|
-
stock / stock.scrap.reason.tag / name (char) : NEW required
|
39
|
+
stock / stock.scrap.reason.tag / name (char) : NEW required, translate
|
40
40
|
stock / stock.scrap.reason.tag / sequence (integer) : NEW hasdefault: default
|
41
41
|
stock / stock.warehouse / qc_type_id (many2one) : NEW relation: stock.picking.type
|
42
42
|
stock / stock.warehouse / store_type_id (many2one) : NEW relation: stock.picking.type
|
@@ -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
|
-
#
|
51
|
+
# DONE: post-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
|
@@ -0,0 +1,79 @@
|
|
1
|
+
env = locals().get("env")
|
2
|
+
# create two step pull route, procure a product with it
|
3
|
+
intermediate_location = env["stock.location"].create(
|
4
|
+
{
|
5
|
+
"name": "Intermediate location",
|
6
|
+
"usage": "internal",
|
7
|
+
}
|
8
|
+
)
|
9
|
+
env["ir.model.data"]._update_xmlids(
|
10
|
+
[
|
11
|
+
{
|
12
|
+
"xml_id": "openupgrade_test_stock.intermediate_pull_location",
|
13
|
+
"record": intermediate_location,
|
14
|
+
}
|
15
|
+
]
|
16
|
+
)
|
17
|
+
two_step_route = env["stock.route"].create(
|
18
|
+
{
|
19
|
+
"name": "2 steps",
|
20
|
+
"rule_ids": [
|
21
|
+
(
|
22
|
+
0,
|
23
|
+
0,
|
24
|
+
{
|
25
|
+
"name": "Stock → Intermediate",
|
26
|
+
"location_src_id": env.ref("stock.stock_location_stock").id,
|
27
|
+
"location_dest_id": intermediate_location.id,
|
28
|
+
"picking_type_id": env.ref("stock.picking_type_internal").id,
|
29
|
+
"action": "pull",
|
30
|
+
# 'location_dest_from_rule': True, # v18
|
31
|
+
},
|
32
|
+
),
|
33
|
+
(
|
34
|
+
0,
|
35
|
+
0,
|
36
|
+
{
|
37
|
+
"name": "Intermediate → Customer",
|
38
|
+
"location_src_id": intermediate_location.id,
|
39
|
+
"location_dest_id": env.ref("stock.stock_location_customers").id,
|
40
|
+
"picking_type_id": env.ref("stock.picking_type_internal").id,
|
41
|
+
"procure_method": "make_to_order",
|
42
|
+
"action": "pull",
|
43
|
+
# 'location_dest_from_rule': True, # v18
|
44
|
+
},
|
45
|
+
),
|
46
|
+
],
|
47
|
+
}
|
48
|
+
)
|
49
|
+
product = env["product.product"].create(
|
50
|
+
{
|
51
|
+
"name": "2 step product (pull)",
|
52
|
+
"type": "product",
|
53
|
+
# 'type': 'consu', # v18
|
54
|
+
"route_ids": [(6, 0, two_step_route.ids)],
|
55
|
+
}
|
56
|
+
)
|
57
|
+
env["ir.model.data"]._update_xmlids(
|
58
|
+
[{"xml_id": "openupgrade_test_stock.pull_product", "record": product}]
|
59
|
+
)
|
60
|
+
procurement_group = env["procurement.group"].create(
|
61
|
+
{
|
62
|
+
"name": "2 step procurement",
|
63
|
+
}
|
64
|
+
)
|
65
|
+
env["procurement.group"].run(
|
66
|
+
[
|
67
|
+
env["procurement.group"].Procurement(
|
68
|
+
product_id=product,
|
69
|
+
product_qty=42,
|
70
|
+
product_uom=product.uom_id,
|
71
|
+
location_id=env.ref("stock.stock_location_customers"),
|
72
|
+
name="2 step procurement",
|
73
|
+
origin="/",
|
74
|
+
company_id=env.company,
|
75
|
+
values={"group_id": procurement_group},
|
76
|
+
),
|
77
|
+
]
|
78
|
+
)
|
79
|
+
env.cr.commit()
|
@@ -0,0 +1,72 @@
|
|
1
|
+
env = locals().get("env")
|
2
|
+
# create two step push route, move a product there
|
3
|
+
intermediate_location = env["stock.location"].create(
|
4
|
+
{
|
5
|
+
"name": "Intermediate location",
|
6
|
+
"usage": "internal",
|
7
|
+
}
|
8
|
+
)
|
9
|
+
env["ir.model.data"]._update_xmlids(
|
10
|
+
[
|
11
|
+
{
|
12
|
+
"xml_id": "openupgrade_test_stock.intermediate_push_location",
|
13
|
+
"record": intermediate_location,
|
14
|
+
}
|
15
|
+
]
|
16
|
+
)
|
17
|
+
two_step_route = env["stock.route"].create(
|
18
|
+
{
|
19
|
+
"name": "2 steps",
|
20
|
+
"rule_ids": [
|
21
|
+
(
|
22
|
+
0,
|
23
|
+
0,
|
24
|
+
{
|
25
|
+
"name": "Stock → Intermediate",
|
26
|
+
"location_src_id": env.ref("stock.stock_location_stock").id,
|
27
|
+
"location_dest_id": intermediate_location.id,
|
28
|
+
"picking_type_id": env.ref("stock.picking_type_internal").id,
|
29
|
+
"action": "push",
|
30
|
+
},
|
31
|
+
),
|
32
|
+
(
|
33
|
+
0,
|
34
|
+
0,
|
35
|
+
{
|
36
|
+
"name": "Intermediate → Customer",
|
37
|
+
"location_src_id": intermediate_location.id,
|
38
|
+
"location_dest_id": env.ref("stock.stock_location_customers").id,
|
39
|
+
"picking_type_id": env.ref("stock.picking_type_out").id,
|
40
|
+
"action": "push",
|
41
|
+
},
|
42
|
+
),
|
43
|
+
],
|
44
|
+
}
|
45
|
+
)
|
46
|
+
product = env["product.product"].create(
|
47
|
+
{
|
48
|
+
"name": "2 step product (push)",
|
49
|
+
"type": "product",
|
50
|
+
# 'type': 'consu', # v18
|
51
|
+
"route_ids": [(6, 0, two_step_route.ids)],
|
52
|
+
}
|
53
|
+
)
|
54
|
+
env["ir.model.data"]._update_xmlids(
|
55
|
+
[{"xml_id": "openupgrade_test_stock.push_product", "record": product}]
|
56
|
+
)
|
57
|
+
in_move = env["stock.move"].create(
|
58
|
+
{
|
59
|
+
"name": "in",
|
60
|
+
"location_id": env.ref("stock.stock_location_suppliers").id,
|
61
|
+
"location_dest_id": env.ref("stock.stock_location_stock").id,
|
62
|
+
# 'location_final_id': env.ref('stock.stock_location_customers').id,
|
63
|
+
"route_ids": [(6, 0, two_step_route.ids)],
|
64
|
+
"product_id": product.id,
|
65
|
+
"quantity": 42,
|
66
|
+
"product_uom_qty": 42,
|
67
|
+
"picked": True,
|
68
|
+
}
|
69
|
+
)
|
70
|
+
in_move._action_done()
|
71
|
+
in_move.move_dest_ids._action_done()
|
72
|
+
env.cr.commit()
|
@@ -0,0 +1,137 @@
|
|
1
|
+
from odoo.tests import TransactionCase
|
2
|
+
|
3
|
+
from odoo.addons.openupgrade_framework import openupgrade_test
|
4
|
+
|
5
|
+
|
6
|
+
@openupgrade_test
|
7
|
+
class TestStockMigration(TransactionCase):
|
8
|
+
def test_picking_type_required_fields(self):
|
9
|
+
"""Test that newly required fields are set"""
|
10
|
+
for picking_type in self.env["stock.picking.type"].search([]):
|
11
|
+
self.assertTrue(picking_type.default_location_src_id)
|
12
|
+
self.assertTrue(picking_type.default_location_dest_id)
|
13
|
+
|
14
|
+
def test_pull_moves(self):
|
15
|
+
"""
|
16
|
+
Test that pull moves have been migrated correctly and new moves yield the
|
17
|
+
same result
|
18
|
+
"""
|
19
|
+
product = self.env.ref("openupgrade_test_stock.pull_product")
|
20
|
+
stock_location = self.env.ref("stock.stock_location_stock")
|
21
|
+
intermediate_location = self.env.ref(
|
22
|
+
"openupgrade_test_stock.intermediate_pull_location"
|
23
|
+
)
|
24
|
+
customer_location = self.env.ref("stock.stock_location_customers")
|
25
|
+
|
26
|
+
moves = self.env["stock.move"].search([("product_id", "=", product.id)])
|
27
|
+
from_stock = moves.filtered(lambda x: x.location_id == stock_location)
|
28
|
+
from_intermediate = moves.filtered(
|
29
|
+
lambda x: x.location_id == intermediate_location
|
30
|
+
)
|
31
|
+
|
32
|
+
self.assertEqual(from_stock.location_dest_id, intermediate_location)
|
33
|
+
self.assertEqual(from_stock.location_final_id, intermediate_location)
|
34
|
+
|
35
|
+
self.assertEqual(from_intermediate.location_dest_id, customer_location)
|
36
|
+
self.assertEqual(from_intermediate.location_final_id, customer_location)
|
37
|
+
|
38
|
+
rules = self.env["stock.rule"].search(
|
39
|
+
[
|
40
|
+
"|",
|
41
|
+
("location_src_id", "=", intermediate_location.id),
|
42
|
+
("location_dest_id", "=", intermediate_location.id),
|
43
|
+
]
|
44
|
+
)
|
45
|
+
for rule in rules:
|
46
|
+
self.assertEqual(rule.location_dest_from_rule, True)
|
47
|
+
|
48
|
+
procurement_group = self.env["procurement.group"].create(
|
49
|
+
{
|
50
|
+
"name": "2 step procurement v18",
|
51
|
+
}
|
52
|
+
)
|
53
|
+
self.env["procurement.group"].run(
|
54
|
+
[
|
55
|
+
self.env["procurement.group"].Procurement(
|
56
|
+
product_id=product,
|
57
|
+
product_qty=42,
|
58
|
+
product_uom=product.uom_id,
|
59
|
+
location_id=customer_location,
|
60
|
+
name="2 step procurement",
|
61
|
+
origin="/",
|
62
|
+
company_id=self.env.company,
|
63
|
+
values={"group_id": procurement_group},
|
64
|
+
),
|
65
|
+
]
|
66
|
+
)
|
67
|
+
|
68
|
+
new_moves = (
|
69
|
+
self.env["stock.move"].search([("product_id", "=", product.id)]) - moves
|
70
|
+
)
|
71
|
+
from_stock = new_moves.filtered(lambda x: x.location_id == stock_location)
|
72
|
+
from_intermediate = new_moves.filtered(
|
73
|
+
lambda x: x.location_id == intermediate_location
|
74
|
+
)
|
75
|
+
|
76
|
+
self.assertEqual(from_stock.location_dest_id, intermediate_location)
|
77
|
+
self.assertEqual(from_stock.location_final_id, intermediate_location)
|
78
|
+
|
79
|
+
self.assertEqual(from_intermediate.location_dest_id, customer_location)
|
80
|
+
self.assertEqual(from_intermediate.location_final_id, customer_location)
|
81
|
+
|
82
|
+
def test_push_moves(self):
|
83
|
+
"""
|
84
|
+
Test that push moves have been migrated correctly and new moves yield the
|
85
|
+
same result
|
86
|
+
"""
|
87
|
+
product = self.env.ref("openupgrade_test_stock.push_product")
|
88
|
+
stock_location = self.env.ref("stock.stock_location_stock")
|
89
|
+
intermediate_location = self.env.ref(
|
90
|
+
"openupgrade_test_stock.intermediate_push_location"
|
91
|
+
)
|
92
|
+
customer_location = self.env.ref("stock.stock_location_customers")
|
93
|
+
|
94
|
+
moves = self.env["stock.move"].search([("product_id", "=", product.id)])
|
95
|
+
|
96
|
+
from_stock = moves.filtered(lambda x: x.location_id == stock_location)
|
97
|
+
from_intermediate = moves.filtered(
|
98
|
+
lambda x: x.location_id == intermediate_location
|
99
|
+
)
|
100
|
+
|
101
|
+
self.assertEqual(from_stock.location_dest_id, intermediate_location)
|
102
|
+
self.assertEqual(from_stock.location_final_id, customer_location)
|
103
|
+
|
104
|
+
self.assertEqual(from_intermediate.location_dest_id, customer_location)
|
105
|
+
self.assertEqual(from_intermediate.location_final_id, customer_location)
|
106
|
+
|
107
|
+
in_move = self.env["stock.move"].create(
|
108
|
+
{
|
109
|
+
"name": "in",
|
110
|
+
"location_id": self.env.ref("stock.stock_location_suppliers").id,
|
111
|
+
"location_dest_id": stock_location.id,
|
112
|
+
"location_final_id": customer_location.id,
|
113
|
+
"route_ids": [(6, 0, moves.route_ids.ids)],
|
114
|
+
"product_id": product.id,
|
115
|
+
"quantity": 42,
|
116
|
+
"product_uom_qty": 42,
|
117
|
+
"picked": True,
|
118
|
+
}
|
119
|
+
)
|
120
|
+
in_move._action_done()
|
121
|
+
in_move.move_dest_ids.picked = True
|
122
|
+
in_move.move_dest_ids._action_done()
|
123
|
+
|
124
|
+
new_moves = (
|
125
|
+
self.env["stock.move"].search([("product_id", "=", product.id)]) - moves
|
126
|
+
)
|
127
|
+
|
128
|
+
from_stock = new_moves.filtered(lambda x: x.location_id == stock_location)
|
129
|
+
from_intermediate = new_moves.filtered(
|
130
|
+
lambda x: x.location_id == intermediate_location
|
131
|
+
)
|
132
|
+
|
133
|
+
self.assertEqual(from_stock.location_dest_id, intermediate_location)
|
134
|
+
self.assertEqual(from_stock.location_final_id, customer_location)
|
135
|
+
|
136
|
+
self.assertEqual(from_intermediate.location_dest_id, customer_location)
|
137
|
+
self.assertEqual(from_intermediate.location_final_id, customer_location)
|
@@ -3,10 +3,10 @@
|
|
3
3
|
survey / survey.question / is_time_customized (boolean) : NEW
|
4
4
|
survey / survey.question / question_type (selection) : selection_keys is now '['char_box', 'date', 'datetime', 'matrix', 'multiple_choice', 'numerical_box', 'scale', 'simple_choice', 'text_box']' ('['char_box', 'date', 'datetime', 'matrix', 'multiple_choice', 'numerical_box', 'simple_choice', 'text_box']')
|
5
5
|
survey / survey.question / scale_max (integer) : NEW hasdefault: default
|
6
|
-
survey / survey.question / scale_max_label (char) : NEW
|
7
|
-
survey / survey.question / scale_mid_label (char) : NEW
|
6
|
+
survey / survey.question / scale_max_label (char) : NEW translate
|
7
|
+
survey / survey.question / scale_mid_label (char) : NEW translate
|
8
8
|
survey / survey.question / scale_min (integer) : NEW hasdefault: default
|
9
|
-
survey / survey.question / scale_min_label (char) : NEW
|
9
|
+
survey / survey.question / scale_min_label (char) : NEW translate
|
10
10
|
survey / survey.survey / restrict_user_ids (many2many) : NEW relation: res.users
|
11
11
|
survey / survey.survey / session_speed_rating_time_limit (integer): NEW
|
12
12
|
survey / survey.user_input.line / answer_type (selection) : selection_keys is now '['char_box', 'date', 'datetime', 'numerical_box', 'scale', 'suggestion', 'text_box']' ('['char_box', 'date', 'datetime', 'numerical_box', 'suggestion', 'text_box']')
|
@@ -0,0 +1,6 @@
|
|
1
|
+
---Models in module 'web_hierarchy'---
|
2
|
+
---Fields in module 'web_hierarchy'---
|
3
|
+
web_hierarchy / ir.actions.act_window.view / view_mode (False) : selection_keys is now '['calendar', 'form', 'graph', 'hierarchy', 'kanban', 'list', 'pivot']' ('['calendar', 'form', 'gantt', 'graph', 'hierarchy', 'kanban', 'pivot', 'tree']')
|
4
|
+
web_hierarchy / ir.ui.view / type (False) : selection_keys is now '['calendar', 'form', 'graph', 'hierarchy', 'kanban', 'list', 'pivot', 'qweb', 'search']' ('['calendar', 'form', 'gantt', 'graph', 'hierarchy', 'kanban', 'pivot', 'qweb', 'search', 'tree']')
|
5
|
+
# NOTHING TO DO: added view type hierarchy, was already there in v17
|
6
|
+
---XML records in module 'web_hierarchy'---
|
@@ -4,7 +4,7 @@ new model web_tour.tour.step
|
|
4
4
|
web_tour / res.users / tour_enabled (boolean) : NEW hasdefault: compute
|
5
5
|
web_tour / web_tour.tour / _order : _order is now 'sequence, name, id' ('id')
|
6
6
|
web_tour / web_tour.tour / custom (boolean) : NEW
|
7
|
-
web_tour / web_tour.tour / rainbow_man_message (html) : NEW hasdefault: default
|
7
|
+
web_tour / web_tour.tour / rainbow_man_message (html) : NEW hasdefault: default, translate
|
8
8
|
web_tour / web_tour.tour / sequence (integer) : NEW hasdefault: default
|
9
9
|
web_tour / web_tour.tour / step_ids (one2many) : NEW relation: web_tour.tour.step
|
10
10
|
web_tour / web_tour.tour / url (char) : NEW hasdefault: default
|
@@ -2,11 +2,11 @@
|
|
2
2
|
---Fields in module 'website_sale'---
|
3
3
|
website_sale / product.product / ribbon_id (many2one) : DEL relation: product.ribbon
|
4
4
|
website_sale / product.product / variant_ribbon_id (many2one) : NEW relation: product.ribbon
|
5
|
-
website_sale / product.public.category / website_footer (html) : NEW
|
5
|
+
website_sale / product.public.category / website_footer (html) : NEW translate
|
6
6
|
website_sale / product.ribbon / bg_color (char) : now required
|
7
7
|
website_sale / product.ribbon / html (html) : DEL required
|
8
8
|
website_sale / product.ribbon / html_class (char) : DEL required
|
9
|
-
website_sale / product.ribbon / name (char) : NEW required
|
9
|
+
website_sale / product.ribbon / name (char) : NEW required, translate
|
10
10
|
website_sale / product.ribbon / position (selection) : NEW required, selection_keys: ['left', 'right'], hasdefault: default
|
11
11
|
website_sale / product.ribbon / text_color (char) : now required
|
12
12
|
website_sale / sale.order / access_point_address (json) : DEL
|
@@ -1,11 +1,11 @@
|
|
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=NmC3_CrJfCuh4IvzWSTb97cQu7-wFkUmFiePQxo7MlI,3553
|
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
|
-
odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/noupdate_changes.xml,sha256=
|
8
|
+
odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/noupdate_changes.xml,sha256=givzahE7VAv9gM1TkNDHs3qhNh3AZacox5q-hDuDjIU,4078
|
9
9
|
odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/post-migration.py,sha256=1owo0nPgYcTKkcreMZXqpD7ncjX9NSksKvdpQmODCDA,6054
|
10
10
|
odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/pre-migration.py,sha256=PhJf_Lde2fk6EjaWUL_TmlGoPY--2WCT3zcbx1ZlaGU,6863
|
11
11
|
odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis.txt,sha256=vbyBRym4DSEQxqxhMH_InF37tEvmv4ZNXvHue0n3OW0,22056
|
@@ -13,13 +13,13 @@ odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis_work.t
|
|
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
|
16
|
-
odoo/addons/openupgrade_scripts/scripts/account_debit_note/18.0.1.0/upgrade_analysis.txt,sha256=
|
16
|
+
odoo/addons/openupgrade_scripts/scripts/account_debit_note/18.0.1.0/upgrade_analysis.txt,sha256=Z1DVY-mEDrxLxaBHF8A1A63ia9kPAvDDmoh1fI-Fke0,321
|
17
17
|
odoo/addons/openupgrade_scripts/scripts/account_edi/18.0.1.0/upgrade_analysis.txt,sha256=9oOTmiRvFNMJlJ4jUcwZex9bu9H2ubgwgQI22Ep_dyI,156
|
18
18
|
odoo/addons/openupgrade_scripts/scripts/account_edi_proxy_client/18.0.1.0/upgrade_analysis.txt,sha256=H9U9Nkn05WkI7C6e9u9Q7XE8b4ZwxDN7t91AM12pWKg,409
|
19
|
-
odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis.txt,sha256=
|
19
|
+
odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis.txt,sha256=7tubSx-al-2jHB2kCH5Ozw02HuogmbvvWMiwSvyMves,2784
|
20
20
|
odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii_tax_extension/18.0.1.0/upgrade_analysis.txt,sha256=rcCuXHU-maa0y4sBG1MYAvfXxjQq8MTzxIDcAxyKJTc,222
|
21
21
|
odoo/addons/openupgrade_scripts/scripts/account_fleet/18.0.1.0/upgrade_analysis.txt,sha256=10CCDsJ4PtBUMqMk7HIqAcydbtz834S7czvftaUDQjc,534
|
22
|
-
odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/noupdate_changes.xml,sha256=
|
22
|
+
odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/noupdate_changes.xml,sha256=Pk4cPPyZPYny1BuacSqXpuMpd2WCgmzMWh0KI0qcCPw,196
|
23
23
|
odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/upgrade_analysis.txt,sha256=v2_DjSKVkR4OAwcPapt4rDWAipoMPnWdlvIq6UTjH5U,544
|
24
24
|
odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/upgrade_analysis_work.txt,sha256=f6_XQdfTic1_uCSsiqyGDcJ0uUPKzkvzy6l_yvRlI4c,560
|
25
25
|
odoo/addons/openupgrade_scripts/scripts/account_peppol/18.0.1.1/upgrade_analysis.txt,sha256=xtMggz3y7y1A-0M3A91KDhyRZdfTbkeRCTYO0sv3--8,2239
|
@@ -48,9 +48,9 @@ odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/end-migration.py,sha256=95
|
|
48
48
|
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/noupdate_changes.xml,sha256=48aPMEOX4HfGytRcO_Q2-m9N1kVnY0uaa7iJux6GoVI,16910
|
49
49
|
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/post-migration.py,sha256=T9RbmhHjbXKeELR74o322RYhYZQjHXkcSNXX1lU3ku0,840
|
50
50
|
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/pre-migration.py,sha256=9SlJGjX-IMrs6ddtmDIFNv8uUXhMnSmUiErhrW0QGNk,2044
|
51
|
-
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis.txt,sha256=
|
51
|
+
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis.txt,sha256=Elkg_WiZV8hJsan89InMB7Ao4ZHRNQNl3NaZ5aWZ9OE,22729
|
52
52
|
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis_work.txt,sha256=DtjRkyr9Xu9MZt-NvAOmUYdd9kgJErm-KOfzZOriBXc,23232
|
53
|
-
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt,sha256=
|
53
|
+
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt,sha256=4V6XlFijk2iGfR6Zq3sMaLGQVQt3is2KAXWBBz8DnYY,11401
|
54
54
|
odoo/addons/openupgrade_scripts/scripts/base/tests/data_base_migration.py,sha256=G4qE5if25WvkEBxDp3S9QfVRFiD4MV7bZFeagvp5qL8,302
|
55
55
|
odoo/addons/openupgrade_scripts/scripts/base/tests/test_base_migration.py,sha256=jj1GMmV4SX_5q9t-PvIlD1pSR6_swUcpcKKe3r2ZT4E,703
|
56
56
|
odoo/addons/openupgrade_scripts/scripts/base_address_extended/18.0.1.1/upgrade_analysis.txt,sha256=ZOyM6AVCXejBYRawvroMqOMDKsira10CnD6UG46UG7U,186
|
@@ -158,7 +158,7 @@ odoo/addons/openupgrade_scripts/scripts/html_editor/18.0.1.0/upgrade_analysis.tx
|
|
158
158
|
odoo/addons/openupgrade_scripts/scripts/html_editor/18.0.1.0/upgrade_analysis_work.txt,sha256=Ex8yOknGgG7uN6qAhmapz0M9cR8gnzgOplOlONBPviE,708
|
159
159
|
odoo/addons/openupgrade_scripts/scripts/iap/18.0.1.1/end-migration.py,sha256=li_6QfXp1wyRHtLhdQaqnxXvMXknfnILKrIjraUtQxk,771
|
160
160
|
odoo/addons/openupgrade_scripts/scripts/iap/18.0.1.1/pre-migration.py,sha256=DgOYxx85vAI2kS4PALKcWcoI6614kbEoVRb5begoKjk,474
|
161
|
-
odoo/addons/openupgrade_scripts/scripts/iap/18.0.1.1/upgrade_analysis.txt,sha256=
|
161
|
+
odoo/addons/openupgrade_scripts/scripts/iap/18.0.1.1/upgrade_analysis.txt,sha256=rZIqfEtANBWAdNwU0Qvjp4aww8TZtTvWumAOe3MGhdc,2049
|
162
162
|
odoo/addons/openupgrade_scripts/scripts/iap/18.0.1.1/upgrade_analysis_work.txt,sha256=PS-_VvzhmMI--2O_wWxSDtjDY9QMG8e4N_TbwTrewBc,2400
|
163
163
|
odoo/addons/openupgrade_scripts/scripts/iap_crm/18.0.1.0/upgrade_analysis.txt,sha256=Qxdh9V6HQd4HpmXsmxEMxN3Vu7y8Q6v0NWL3ZrRK1oA,144
|
164
164
|
odoo/addons/openupgrade_scripts/scripts/iap_mail/18.0.1.0/upgrade_analysis.txt,sha256=g7RJbU2YvBYxo7L9iJFULEF3NKglvNQoI0SF7PFCe5U,359
|
@@ -169,7 +169,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_ae/18.0.1.0/upgrade_analysis.txt,sh
|
|
169
169
|
odoo/addons/openupgrade_scripts/scripts/l10n_anz_ubl_pint/18.0.1.0/upgrade_analysis.txt,sha256=On6g4ASlgXA7nn_Z8yOU8dObLpP9A3a_B9SQGQ_6_0Y,586
|
170
170
|
odoo/addons/openupgrade_scripts/scripts/l10n_ar/18.0.3.7/upgrade_analysis.txt,sha256=gM85eo48lcw1JGLZ6dftSQmUJe9OpF5WojuXc8utc0w,319
|
171
171
|
odoo/addons/openupgrade_scripts/scripts/l10n_ar_website_sale/18.0.1.0/upgrade_analysis.txt,sha256=cIfjermH_yZb7TZ9s3lLE75Wh52vc8UnCzvwe9mRgdc,205
|
172
|
-
odoo/addons/openupgrade_scripts/scripts/l10n_ar_withholding/18.0.1.0/upgrade_analysis.txt,sha256=
|
172
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_ar_withholding/18.0.1.0/upgrade_analysis.txt,sha256=qserMcoW6F8aIAAvZvRqWtyXOM1WqM7Rl0H6_CRVAcM,4799
|
173
173
|
odoo/addons/openupgrade_scripts/scripts/l10n_au/18.0.1.1/upgrade_analysis.txt,sha256=gYY0Cue_VXfyE6pMSRvFKSSLgWmzvrXYku3OTlObtT8,1656
|
174
174
|
odoo/addons/openupgrade_scripts/scripts/l10n_be/18.0.2.0/upgrade_analysis.txt,sha256=bRVxKV2x0hVVPzlK3iUhHRmoqk8Wk7B8-Qls6VOvjTs,252
|
175
175
|
odoo/addons/openupgrade_scripts/scripts/l10n_bg_ledger/18.0.1.0/upgrade_analysis.txt,sha256=HudZFYQE7om411ehJ6FR6b50GR2_eU8MVYMI4nUDQKg,983
|
@@ -192,7 +192,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_dk/18.0.1.3/upgrade_analysis.txt,sh
|
|
192
192
|
odoo/addons/openupgrade_scripts/scripts/l10n_dk_oioubl/18.0.0.1/upgrade_analysis.txt,sha256=0B8EnhRIr1EabvvzBhgG1Nmsg_RH_P1qSXXv9jDoDRU,599
|
193
193
|
odoo/addons/openupgrade_scripts/scripts/l10n_ec/18.0.3.9/upgrade_analysis.txt,sha256=plDiRJzBMA3pjTvgy6zTJiunYDX-mfNbn2dQ059lBH0,144
|
194
194
|
odoo/addons/openupgrade_scripts/scripts/l10n_ec_website_sale/18.0.1.0/upgrade_analysis.txt,sha256=r9qpaxwclYPxjBd-X6SW93Aa18ci7LzdvQ1jB4h-AqQ,248
|
195
|
-
odoo/addons/openupgrade_scripts/scripts/l10n_ee/18.0.1.
|
195
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_ee/18.0.1.3/upgrade_analysis.txt,sha256=Ulds-dOZouqOpD9bq_r5Px0dHsfTO3xRaAZbNt03jhc,473
|
196
196
|
odoo/addons/openupgrade_scripts/scripts/l10n_eg/18.0.1.0/upgrade_analysis.txt,sha256=51_t54Tm_IwWUUFvtrB3XmMNkzLggWl2_bb3iSckLGE,144
|
197
197
|
odoo/addons/openupgrade_scripts/scripts/l10n_eg_edi_eta/18.0.0.2/upgrade_analysis.txt,sha256=f2AaXZRdCljxh7HjEHarlfgonOcm-NqVuLmhfAR_y4c,168
|
198
198
|
odoo/addons/openupgrade_scripts/scripts/l10n_es/18.0.5.4/upgrade_analysis.txt,sha256=9M4rNqV6rvP2uFZtXPAOLlSONYBzZS2RT_35vSClxSs,4212
|
@@ -204,11 +204,11 @@ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_tbai_pos/18.0.1.0/upgrade_an
|
|
204
204
|
odoo/addons/openupgrade_scripts/scripts/l10n_es_pos/18.0.1.0/upgrade_analysis.txt,sha256=FjbSnOJlcdbyBOgzF_gdsSyd5PkkdAu6lArmsW4gswo,204
|
205
205
|
odoo/addons/openupgrade_scripts/scripts/l10n_fi/18.0.13.0.2/upgrade_analysis.txt,sha256=zlmqm9DBVj0aAfRbvzL-IqnnKumlDntIcxLhLeBYbvE,144
|
206
206
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py,sha256=Jta8is5FZGgU6h7m6ZLbZMvD3vjwSfXy1ezQJlLAfuY,32595
|
207
|
-
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis.txt,sha256=
|
207
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis.txt,sha256=sSLcYizrMBDiCMpUkRsihCV7vrzgXpSC0PcyetXtepM,35169
|
208
208
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis_work.txt,sha256=aa_PJAX_5r9htdx68izCvkltjuMNZ3A6iGnnV5tSirE,35789
|
209
209
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/post-migration.py,sha256=Z8wb_cOM9LWM4yRChdzulaZbjGFCTqKpPoh5WXC47uo,991
|
210
210
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/pre-migration.py,sha256=DSsawjDKo6UdIvakNT-Tgm6pxjqdWzI3qcqvQgD05i0,602
|
211
|
-
odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/upgrade_analysis.txt,sha256=
|
211
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/upgrade_analysis.txt,sha256=fH8TqmJ3H6jq_tW75vkqN5bTfOfRe8zOfBvtFoJ7D24,168043
|
212
212
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/upgrade_analysis_work.txt,sha256=GI1nS0rupg_lkDU1gIjVlIGxiRrT-av3M7aJZpqNg9o,168136
|
213
213
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_facturx_chorus_pro/18.0.1.0/upgrade_analysis.txt,sha256=pCTtVTixXRGAtRdfheNzj6S7NvIIcoimpk6UWyiip48,201
|
214
214
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_hr_holidays/18.0.1.0/upgrade_analysis.txt,sha256=6zIGM2GlquI7A6Q8BS3JsoofFuXuTkeYPaHnBwenkSU,180
|
@@ -242,6 +242,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_it_edi_sale/18.0.1.0/upgrade_analys
|
|
242
242
|
odoo/addons/openupgrade_scripts/scripts/l10n_it_edi_withholding/18.0.0.1/upgrade_analysis.txt,sha256=SFhWsU8sXdY8naajsfeDYN09y-56w7UXEmksYMmlYkY,238
|
243
243
|
odoo/addons/openupgrade_scripts/scripts/l10n_it_stock_ddt/18.0.0.1/upgrade_analysis.txt,sha256=IS3Qs6krllkgHhzEZbo2CWjzErAp4v1TYTc2YTD5HB8,174
|
244
244
|
odoo/addons/openupgrade_scripts/scripts/l10n_jo_edi/18.0.1.0/upgrade_analysis.txt,sha256=LlFCmuQx7C5JsNbZca6_slUJgvEADLMvtwgT6bDCZZA,167
|
245
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_jo_edi_extended/18.0.1.0/upgrade_analysis.txt,sha256=E-jEc2E2abZzEBKareWc4BO4vM0nJ3U4cSNmU076RWU,844
|
245
246
|
odoo/addons/openupgrade_scripts/scripts/l10n_jp_ubl_pint/18.0.1.0/upgrade_analysis.txt,sha256=jQJyHIVtF-zssN1yvdwz_81R8sqIVE4BguOTDyySbuU,515
|
246
247
|
odoo/addons/openupgrade_scripts/scripts/l10n_ke/18.0.1.0/upgrade_analysis.txt,sha256=77IIp7EhPQB2hIljCU6E4fDiEXEDYKqgazUnz64y-5Q,4020
|
247
248
|
odoo/addons/openupgrade_scripts/scripts/l10n_ke_edi_tremol/18.0.1.0/upgrade_analysis.txt,sha256=AhO-0qgM3bvpJ_u0mw1LNlNItr7B0XkqS63X9IuB5c8,222
|
@@ -276,7 +277,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_ro_edi_stock_batch/18.0.1.0/upgrade
|
|
276
277
|
odoo/addons/openupgrade_scripts/scripts/l10n_rs/18.0.1.0/upgrade_analysis.txt,sha256=smwyaMl0lSBSb0vij4QI9qTJpwv_4XJKFlKuEqv8sDk,144
|
277
278
|
odoo/addons/openupgrade_scripts/scripts/l10n_rs_edi/18.0.1.0/upgrade_analysis.txt,sha256=HJKgN9B19dQn_aTMpESBntv0XWWASFycUf6BJnAGEwg,167
|
278
279
|
odoo/addons/openupgrade_scripts/scripts/l10n_sa/18.0.2.0/noupdate_changes.xml,sha256=RMvN5KadQtMee2knz8wc4Zc5Hkk-PXPCGkNzhpESTD0,297
|
279
|
-
odoo/addons/openupgrade_scripts/scripts/l10n_sa/18.0.2.0/upgrade_analysis.txt,sha256=
|
280
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_sa/18.0.2.0/upgrade_analysis.txt,sha256=cDB9dpOGO3vjB6fTvJ86vGg7IFScRiuSyQQW-5NXJHI,374
|
280
281
|
odoo/addons/openupgrade_scripts/scripts/l10n_sa_edi/18.0.0.1/upgrade_analysis.txt,sha256=cucezUyCuhxTPam6_IDRJN9isOiQTFuOfrESfP7Db7w,947
|
281
282
|
odoo/addons/openupgrade_scripts/scripts/l10n_se/18.0.1.1/upgrade_analysis.txt,sha256=0YcSpwh9MVP1NB4LIFtfaM5TWkyKvSYJamiQUpOFZGs,144
|
282
283
|
odoo/addons/openupgrade_scripts/scripts/l10n_sg/18.0.2.2/upgrade_analysis.txt,sha256=9XUQPbP8I_MDcuAv-woGCOWH9mApY7D5GYWkVN_6fK4,144
|
@@ -362,7 +363,7 @@ odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/noupdate_changes
|
|
362
363
|
odoo/addons/openupgrade_scripts/scripts/payment_xendit/18.0.1.0/upgrade_analysis.txt,sha256=WolBiFs4QXy3c3L6_aKMad18SgHsOMFoKeJt6INImX4,706
|
363
364
|
odoo/addons/openupgrade_scripts/scripts/phone_validation/18.0.2.1/upgrade_analysis.txt,sha256=zHx1oo1qSI5f6kZeh24Jq5tPXtfnvgQYlBeO1isOOSw,171
|
364
365
|
odoo/addons/openupgrade_scripts/scripts/phone_validation/18.0.2.1/upgrade_analysis_work.txt,sha256=r6ZZxEY8udYvp3vj59JewSzKuX4SprcezFqGf4l-cys,187
|
365
|
-
odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt,sha256=
|
366
|
+
odoo/addons/openupgrade_scripts/scripts/point_of_sale/18.0.1.0.2/upgrade_analysis.txt,sha256=QTdvrzHNIbalT39qfy6xXVFMmIPj7DYxVA9vFV7OOqI,10427
|
366
367
|
odoo/addons/openupgrade_scripts/scripts/portal/18.0.1.0/noupdate_changes.xml,sha256=Du6sud3Wmb5rIn3UVwKgrB3A9CbnK5qFYugWq2qcf0E,6689
|
367
368
|
odoo/addons/openupgrade_scripts/scripts/portal/18.0.1.0/post-migration.py,sha256=Fwcg9o6OAsHbDJ46wbYs587VMKo-U-92NJDN-GsMHPc,404
|
368
369
|
odoo/addons/openupgrade_scripts/scripts/portal/18.0.1.0/upgrade_analysis.txt,sha256=7O30PHT9l9Td7LxfMio-JerP-3PwiLKtSnACDV9DyPk,958
|
@@ -477,10 +478,13 @@ odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard/18.0.1.0/upgrade_a
|
|
477
478
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_pos_restaurant/18.0.1.0/upgrade_analysis.txt,sha256=2sp42OSaBEMKrEhPPst4IxjffGe_2wj8nU_QM1uY3m0,292
|
478
479
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_stock_account/18.0.1.0/upgrade_analysis.txt,sha256=iJhZOolILwgrkATpb0o6L7h9lCAK8NA3fVSmO2ST1HU,394
|
479
480
|
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/noupdate_changes.xml,sha256=D5zrp_FcweU-CigDEwOGh0yIrn7lRkhfXVaUzeq7pko,209
|
480
|
-
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py,sha256=
|
481
|
-
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/pre-migration.py,sha256
|
482
|
-
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis.txt,sha256=
|
483
|
-
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt,sha256=
|
481
|
+
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py,sha256=fo2VSz9k6wdmccfOaOrOVnBxoM0XmmCEhs3TWghWCpI,4545
|
482
|
+
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/pre-migration.py,sha256=QK_lSnzYKH3btdAH5VrysCEcTnYPgSXhuk2zyiN6yus,4310
|
483
|
+
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis.txt,sha256=XhtFlo2DnIQECRF-TqECbsgA25cG1TCAkWcGs-yT5nE,7072
|
484
|
+
odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt,sha256=jvIp9uqycvsNvH4nFxTwz_5drHY6QL_yGb5-myhba9g,8455
|
485
|
+
odoo/addons/openupgrade_scripts/scripts/stock/tests/data_pull.py,sha256=Plin9Hf_-q1CYGDuMrH1e4C61K7l__vgX3FBh9KXALA,2449
|
486
|
+
odoo/addons/openupgrade_scripts/scripts/stock/tests/data_push.py,sha256=zmfRrv-YO5rHRDFtL_N1ZGWuvnCmCpe4Lc3EHrG3RA4,2231
|
487
|
+
odoo/addons/openupgrade_scripts/scripts/stock/tests/test_migration.py,sha256=mgGE-xxvgWY8iKgIawgqznPWIDWuaQT59uWXK3iN9Sw,5565
|
484
488
|
odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/end-migration.py,sha256=opAeXNeSconzN37tBDW9tMPMrb4PrHJ0MH6-88yJ28o,925
|
485
489
|
odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/post-migration.py,sha256=Rtfpey0dONHUXyswMrvGK9MlwSJyal2HgfFloO4Dhs0,1213
|
486
490
|
odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/pre-migration.py,sha256=zWOya4IKLGlpWE0pVcTRh7_A5SfKA77Ro8uAHMJ23Jc,698
|
@@ -493,7 +497,7 @@ odoo/addons/openupgrade_scripts/scripts/stock_landed_costs/18.0.1.1/upgrade_anal
|
|
493
497
|
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/18.0.1.0/upgrade_analysis.txt,sha256=13RmqW-BJ6S1Bd66om7Cfg65MtB7Gn9p6Ts846iIrhw,1461
|
494
498
|
odoo/addons/openupgrade_scripts/scripts/stock_sms/18.0.1.0/upgrade_analysis.txt,sha256=WmtD-QRPZnTjNKvErYIFRz_n-t4C2ttxPz_9eYkTOrw,150
|
495
499
|
odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/noupdate_changes.xml,sha256=Ansb5uS_jmq_YeoS4MNYrI7yzsG83ON1k1av7ZJZRFA,977
|
496
|
-
odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/upgrade_analysis.txt,sha256=
|
500
|
+
odoo/addons/openupgrade_scripts/scripts/survey/18.0.3.7/upgrade_analysis.txt,sha256=kHmRtpgZtd_WWqQ0eBuSR4_4QFpnEho8nYnehG8ZPAo,3111
|
497
501
|
odoo/addons/openupgrade_scripts/scripts/transifex/18.0.1.0/upgrade_analysis.txt,sha256=9js2BMOhvgwKRc7amc1kIms0LLC9u6-SmqbXAl4MlUk,150
|
498
502
|
odoo/addons/openupgrade_scripts/scripts/uom/18.0.1.0/upgrade_analysis.txt,sha256=QNpF0ZKtfvAQ5CYA-S7iCVvfMBnNQZXwNhgtA6am5JM,132
|
499
503
|
odoo/addons/openupgrade_scripts/scripts/uom/18.0.1.0/upgrade_analysis_work.txt,sha256=AqU3yszlr_TyWcTURJB9vZfFuKg8ZeGnJ5ncywVygyE,148
|
@@ -504,9 +508,10 @@ odoo/addons/openupgrade_scripts/scripts/web/18.0.1.0/upgrade_analysis_work.txt,s
|
|
504
508
|
odoo/addons/openupgrade_scripts/scripts/web_editor/18.0.1.0/upgrade_analysis.txt,sha256=XwWLr4ECjOl0-2rW3R4CgsJmj4QYYo0vY9kgk3ql6Rc,757
|
505
509
|
odoo/addons/openupgrade_scripts/scripts/web_editor/18.0.1.0/upgrade_analysis_work.txt,sha256=YOhr-HiEpBSOqnmIXzam3CFU6RZadCIPU2e9SVccbGY,790
|
506
510
|
odoo/addons/openupgrade_scripts/scripts/web_hierarchy/18.0.1.0/upgrade_analysis.txt,sha256=XMF1MYAL4CZcW5-lcpiQd8TMEdf0_TN9FBF79siwF9g,664
|
511
|
+
odoo/addons/openupgrade_scripts/scripts/web_hierarchy/18.0.1.0/upgrade_analysis_work.txt,sha256=x0PCzDDVs4fENWGbRQ7qswqL_ekMvDe-LTAodT6waQg,733
|
507
512
|
odoo/addons/openupgrade_scripts/scripts/web_tour/18.0.1.0/end-migration.py,sha256=3a9vlJg7n_XYwsb-HWu9hec6gGNazxsRPMK-cjHUpKs,576
|
508
513
|
odoo/addons/openupgrade_scripts/scripts/web_tour/18.0.1.0/pre-migration.py,sha256=pMcHF6q-I4vEHS0XeYDKDBRiF4LprKYoM0OSqivhQMc,752
|
509
|
-
odoo/addons/openupgrade_scripts/scripts/web_tour/18.0.1.0/upgrade_analysis.txt,sha256=
|
514
|
+
odoo/addons/openupgrade_scripts/scripts/web_tour/18.0.1.0/upgrade_analysis.txt,sha256=tWnaWyTdImODovflHxxHZZJI2a4froOhoQUWzl6-NnE,2237
|
510
515
|
odoo/addons/openupgrade_scripts/scripts/web_tour/18.0.1.0/upgrade_analysis_work.txt,sha256=ghNCJaPp5qyUZaw52zJ7W6YC0n6U0IbpUR0hPEOdamY,2373
|
511
516
|
odoo/addons/openupgrade_scripts/scripts/website/18.0.1.0/upgrade_analysis.txt,sha256=dTglvaoSlCVU3m8zMQITZ1hKKHqnMnFMJbSv-uFuh18,9903
|
512
517
|
odoo/addons/openupgrade_scripts/scripts/website_blog/18.0.1.1/upgrade_analysis.txt,sha256=qhbcPVY5UzFSgPey9shgJNHq4vSPYF_BKmIGrIk77IM,492
|
@@ -536,7 +541,7 @@ odoo/addons/openupgrade_scripts/scripts/website_payment/18.0.1.0/upgrade_analysi
|
|
536
541
|
odoo/addons/openupgrade_scripts/scripts/website_profile/18.0.1.0/upgrade_analysis.txt,sha256=siOOqbaEcB45tSl9L_pzsyiniZ5boTfHMhNymzsIA2Q,168
|
537
542
|
odoo/addons/openupgrade_scripts/scripts/website_project/18.0.1.0/upgrade_analysis.txt,sha256=1Qbh3ljDvSBRMsm-psuIoz2T3Qm5E6ohJzHd3jj1AJY,872
|
538
543
|
odoo/addons/openupgrade_scripts/scripts/website_sale/18.0.1.1/noupdate_changes.xml,sha256=qukbj42hSRKTQMbCI2-0MfVUN624uIBgPdOOd6QlgK8,2485
|
539
|
-
odoo/addons/openupgrade_scripts/scripts/website_sale/18.0.1.1/upgrade_analysis.txt,sha256=
|
544
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale/18.0.1.1/upgrade_analysis.txt,sha256=s8qAsFXp0YcDG2DhFRbD9BqbPC2XQjbUXPI9oooIFk0,4244
|
540
545
|
odoo/addons/openupgrade_scripts/scripts/website_sale_autocomplete/18.0.1.0/upgrade_analysis.txt,sha256=YswdVijMPe2DoMTSlJqSbdFd1ZcTK4PfRvXvm1cd3XM,198
|
541
546
|
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/upgrade_analysis.txt,sha256=IbumrMYaLBnQCZ9dUeB_-EExrk-UpC30GjvlhcL4ucc,2332
|
542
547
|
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/18.0.1.0/upgrade_analysis.txt,sha256=bTSciAg2bCbBcVYoostlp6AjqbFEez1xnVHLYZFdeM0,274
|
@@ -553,7 +558,7 @@ odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_a
|
|
553
558
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
554
559
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
555
560
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Jc0qAThlH5WnoSq6vPamjC8WyMkdo_9zkhDuU1qW1VI,12722
|
556
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
557
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
558
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
559
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
561
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info/METADATA,sha256=xWxvv-aEPBiWNmdw39E9RVE9rVlE0E2yv-3eO936TI0,3775
|
562
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
|
563
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
564
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.109.dist-info/RECORD,,
|
File without changes
|