odoo-addon-openupgrade-scripts 16.0.1.0.3.271__py3-none-any.whl → 16.0.1.0.3.276__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/scripts/l10n_fr_fec/16.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/microsoft_outlook/16.0.1.1/pre-migration.py +25 -0
- odoo/addons/openupgrade_scripts/scripts/microsoft_outlook/16.0.1.1/upgrade_analysis_work.txt +14 -0
- odoo/addons/openupgrade_scripts/scripts/purchase_requisition_stock/16.0.1.2/upgrade_analysis_work.txt +9 -0
- odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/16.0.1.0/upgrade_analysis_work.txt +24 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.271.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info}/METADATA +2 -5
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.271.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info}/RECORD +9 -4
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.271.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.271.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
# Copyright 2024 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
@openupgrade.migrate()
|
8
|
+
def migrate(env, version):
|
9
|
+
if openupgrade.column_exists(
|
10
|
+
env.cr, "fetchmail_server", "use_microsoft_outlook_service"
|
11
|
+
):
|
12
|
+
openupgrade.logged_query(
|
13
|
+
env.cr,
|
14
|
+
"""UPDATE fetchmail_server
|
15
|
+
SET server_type = 'outlook'
|
16
|
+
WHERE use_microsoft_outlook_service
|
17
|
+
""",
|
18
|
+
)
|
19
|
+
openupgrade.logged_query(
|
20
|
+
env.cr,
|
21
|
+
"""UPDATE ir_mail_server
|
22
|
+
SET smtp_authentication = 'outlook'
|
23
|
+
WHERE use_microsoft_outlook_service
|
24
|
+
""",
|
25
|
+
)
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---Models in module 'microsoft_outlook'---
|
2
|
+
---Fields in module 'microsoft_outlook'---
|
3
|
+
fetchmail_outlook / fetchmail.server / use_microsoft_outlook_service (boolean): DEL
|
4
|
+
microsoft_outlook / fetchmail.server / server_type (False) : NEW selection_keys: ['gmail', 'imap', 'local', 'outlook', 'pop'], mode: modify
|
5
|
+
# DONE pre-migration: set server_type value to 'outlook' if use_microsoft_outlook_service was enabled
|
6
|
+
|
7
|
+
microsoft_outlook / ir.mail_server / smtp_authentication (False) : NEW selection_keys: ['certificate', 'gmail', 'login', 'outlook'], mode: modify
|
8
|
+
microsoft_outlook / ir.mail_server / use_microsoft_outlook_service (boolean): DEL
|
9
|
+
# DONE pre-migration: set smtp_authentication value to 'outlook' if use_microsoft_outlook_service was enabled
|
10
|
+
|
11
|
+
---XML records in module 'microsoft_outlook'---
|
12
|
+
NEW ir.ui.view: microsoft_outlook.fetchmail_server_view_form
|
13
|
+
DEL ir.ui.view: fetchmail_outlook.fetchmail_server_view_form
|
14
|
+
# NOTHING TO DO: ir noupdate= 0 stuff
|
@@ -0,0 +1,9 @@
|
|
1
|
+
---Models in module 'purchase_requisition_stock'---
|
2
|
+
---Fields in module 'purchase_requisition_stock'---
|
3
|
+
purchase_requisition_stock / purchase.requisition / procurement_group_id (many2one): DEL relation: procurement.group
|
4
|
+
# NOTHING TO DO: handle at purchase_requisition: the POs being directly linked to each other
|
5
|
+
|
6
|
+
---XML records in module 'purchase_requisition_stock'---
|
7
|
+
NEW ir.ui.view: purchase_requisition_stock.purchase_order_form_inherit_purchase_requisition_stock
|
8
|
+
NEW ir.ui.view: purchase_requisition_stock.purchase_order_line_compare_tree_inherit_purchase_requisition_stock
|
9
|
+
# NOTHING TO DO: noupdate="0" records
|
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/16.0.1.0/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
---Models in module 'stock_picking_batch'---
|
2
|
+
---Fields in module 'stock_picking_batch'---
|
3
|
+
stock_picking_batch / stock.move.line / batch_id (many2one) : is now stored
|
4
|
+
# NOTHING TO DO: Resolved by ORM with an SQL query
|
5
|
+
|
6
|
+
stock_picking_batch / stock.picking.type / auto_batch (boolean) : NEW
|
7
|
+
stock_picking_batch / stock.picking.type / batch_group_by_dest_loc (boolean): NEW
|
8
|
+
stock_picking_batch / stock.picking.type / batch_group_by_destination (boolean): NEW
|
9
|
+
stock_picking_batch / stock.picking.type / batch_group_by_partner (boolean): NEW
|
10
|
+
stock_picking_batch / stock.picking.type / batch_group_by_src_loc (boolean): NEW
|
11
|
+
stock_picking_batch / stock.picking.type / batch_max_lines (integer) : NEW
|
12
|
+
stock_picking_batch / stock.picking.type / batch_max_pickings (integer) : NEW
|
13
|
+
# NOTHING TO DO: New feature for putting pickings in batches automatically. The default False for auto_batch preserves previous behavior.
|
14
|
+
|
15
|
+
stock_picking_batch / stock.picking.type / batch_auto_confirm (boolean) : NEW hasdefault: default
|
16
|
+
# NOTHING TO DO: Although the default is True, this only acts if auto_batch, so it's not a problem.
|
17
|
+
|
18
|
+
---XML records in module 'stock_picking_batch'---
|
19
|
+
NEW ir.ui.view: stock_picking_batch.stock_move_line_view_search_inherit_stock_picking_batch
|
20
|
+
NEW ir.ui.view: stock_picking_batch.stock_picking_form_inherit
|
21
|
+
NEW ir.ui.view: stock_picking_batch.view_move_line_tree_inherit_stock_picking_batch
|
22
|
+
NEW ir.ui.view: stock_picking_batch.view_picking_internal_search_inherit
|
23
|
+
NEW ir.ui.view: stock_picking_batch.view_picking_type_form_inherit
|
24
|
+
# NOTHING TO DO: New ir noupdate=0 records
|
@@ -1,12 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
|
-
Name: odoo-addon-
|
3
|
-
Version: 16.0.1.0.3.
|
2
|
+
Name: odoo-addon-openupgrade_scripts
|
3
|
+
Version: 16.0.1.0.3.276
|
4
4
|
Summary: Module that contains all the migrations analysis and scripts for migrate Odoo SA modules.
|
5
5
|
Home-page: https://github.com/OCA/OpenUpgrade
|
6
6
|
Author: Odoo Community Association (OCA)
|
7
7
|
Author-email: support@odoo-community.org
|
8
8
|
License: AGPL-3
|
9
|
-
Platform: UNKNOWN
|
10
9
|
Classifier: Programming Language :: Python
|
11
10
|
Classifier: Framework :: Odoo
|
12
11
|
Classifier: Framework :: Odoo :: 16.0
|
@@ -101,5 +100,3 @@ promote its widespread use.
|
|
101
100
|
This module is part of the `OCA/OpenUpgrade <https://github.com/OCA/OpenUpgrade/tree/16.0/openupgrade_scripts>`_ project on GitHub.
|
102
101
|
|
103
102
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
104
|
-
|
105
|
-
|
@@ -258,6 +258,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_fr/16.0.2.1/upgrade_analysis.txt,sh
|
|
258
258
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr/16.0.2.1/upgrade_analysis_work.txt,sha256=mkRkU4-eJvjnxMzzwPRS1IhLCRAH82iykrZ0Y-b_puE,6336
|
259
259
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_facturx_chorus_pro/16.0.1.0/upgrade_analysis.txt,sha256=pCTtVTixXRGAtRdfheNzj6S7NvIIcoimpk6UWyiip48,201
|
260
260
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_fec/16.0.1.0/upgrade_analysis.txt,sha256=965QMMGisRYTsw_asToJYNh4sQVPPR39fpWryP-gSIk,156
|
261
|
+
odoo/addons/openupgrade_scripts/scripts/l10n_fr_fec/16.0.1.0/upgrade_analysis_work.txt,sha256=3qHDUj0Hd9uS0hgao2A8mZqV0yr6fd72wNUW8JDDiGc,172
|
261
262
|
odoo/addons/openupgrade_scripts/scripts/l10n_fr_pos_cert/16.0.1.0/upgrade_analysis.txt,sha256=uNmsVRbRUdcWQ-cDLOhk0aYM0eTS1v6UnnGWe6cQEAU,198
|
262
263
|
odoo/addons/openupgrade_scripts/scripts/l10n_gcc_invoice/16.0.1.0.0/upgrade_analysis.txt,sha256=uSovMVe_yQRYKAdvYvZ9jMjk4gyf9bb8P6mAzbQ_pTU,171
|
263
264
|
odoo/addons/openupgrade_scripts/scripts/l10n_generic_coa/16.0.1.1/upgrade_analysis.txt,sha256=UySkY4wQGgql23iS2zexWd6xTbI8e7GIkDBxjv6XVAw,263
|
@@ -385,7 +386,9 @@ odoo/addons/openupgrade_scripts/scripts/membership/16.0.1.0/upgrade_analysis.txt
|
|
385
386
|
odoo/addons/openupgrade_scripts/scripts/membership/16.0.1.0/upgrade_analysis_work.txt,sha256=fxCJXFE66wH6ZetfmePPLMwb-frWXJbTFCsq0jccX1M,153
|
386
387
|
odoo/addons/openupgrade_scripts/scripts/microsoft_account/16.0.1.0/upgrade_analysis.txt,sha256=A-hAfz4jaf1_-Uw2-6JP4inCGDe6LXPvVvXb7Dk9Nyc,174
|
387
388
|
odoo/addons/openupgrade_scripts/scripts/microsoft_calendar/16.0.1.0/upgrade_analysis.txt,sha256=GEvJ40GxiaZFblKUEv5n83Svpb2n9Z_qHAl0cYJBRTY,177
|
389
|
+
odoo/addons/openupgrade_scripts/scripts/microsoft_outlook/16.0.1.1/pre-migration.py,sha256=2mCEtNVAvo-UTSmCW2g3YGQnW0rnt5wVYospGWVDT24,703
|
388
390
|
odoo/addons/openupgrade_scripts/scripts/microsoft_outlook/16.0.1.1/upgrade_analysis.txt,sha256=8-8kmoJvpDNDPgvZ_prT_oQkncsu69G1KaWE39vQp7w,756
|
391
|
+
odoo/addons/openupgrade_scripts/scripts/microsoft_outlook/16.0.1.1/upgrade_analysis_work.txt,sha256=_pWNlDIOvooDCCD6xEn1rLVvY31fFmH1oNQYNSS4gcU,1008
|
389
392
|
odoo/addons/openupgrade_scripts/scripts/mrp/16.0.2.0/post-migration.py,sha256=G1H22HnxlcXCgQLJEI8-Yt5GMPUIK6LoZFvlBKrM0HU,618
|
390
393
|
odoo/addons/openupgrade_scripts/scripts/mrp/16.0.2.0/pre-migration.py,sha256=-NCHIW1rVfnjwUDY171T-kFCHl7BdfHtQW3NLJ8Qqc0,1155
|
391
394
|
odoo/addons/openupgrade_scripts/scripts/mrp/16.0.2.0/upgrade_analysis.txt,sha256=VBPemDVujxvXrCTVj11v06ux4uaOXrCcTGTvcGw4Uzc,5266
|
@@ -509,6 +512,7 @@ odoo/addons/openupgrade_scripts/scripts/purchase_requisition/16.0.0.1/pre-migrat
|
|
509
512
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/16.0.0.1/upgrade_analysis.txt,sha256=hu4bNoVAuOmaDuK0IQDQV5y3J0lg4r58gCoH6fYrLEM,2295
|
510
513
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/16.0.0.1/upgrade_analysis_work.txt,sha256=4IENy2UZb-C4xYd2ZC_NGRLk7ecx3AiiXYvQ48k5tkU,2577
|
511
514
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition_stock/16.0.1.2/upgrade_analysis.txt,sha256=dmjMOLEfLnKWEfqynh-dOtbg8CmU1sLEE4gsZcsZ-ks,491
|
515
|
+
odoo/addons/openupgrade_scripts/scripts/purchase_requisition_stock/16.0.1.2/upgrade_analysis_work.txt,sha256=94jWrbWEUcJEFELwa4c4v1UXo6BC1l-kXgdVj3b18OM,623
|
512
516
|
odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/pre-migration.py,sha256=gDGPEvpqn2TY0U1qKin7w5JY2p6CokhTIq3tk-ddWfM,1539
|
513
517
|
odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/upgrade_analysis.txt,sha256=ubjqaHWBjLwCd33dZaMpR37J5PVIXWCABnw6dpWjALY,702
|
514
518
|
odoo/addons/openupgrade_scripts/scripts/purchase_stock/16.0.1.2/upgrade_analysis_work.txt,sha256=-xhjYmpVgBLSUdj8kMF0o65-rIieuWhbkrSv5Sqw4GM,1009
|
@@ -593,6 +597,7 @@ odoo/addons/openupgrade_scripts/scripts/stock_dropshipping/16.0.1.0/upgrade_anal
|
|
593
597
|
odoo/addons/openupgrade_scripts/scripts/stock_landed_costs/16.0.1.1/upgrade_analysis.txt,sha256=WFU81Vt8XuuK9wkxAIUUtohVnUdyOzBtg08-3QGxKh8,177
|
594
598
|
odoo/addons/openupgrade_scripts/scripts/stock_landed_costs/16.0.1.1/upgrade_analysis_work.txt,sha256=Go5HHuQCzgwpBFv_trXxF6i0RpzG2eK_HP4831Lcn6A,193
|
595
599
|
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/16.0.1.0/upgrade_analysis.txt,sha256=-vWDvtNd94zMYD8LIYGJT_AiaYq4lZvCh4Jv9vL4paE,1327
|
600
|
+
odoo/addons/openupgrade_scripts/scripts/stock_picking_batch/16.0.1.0/upgrade_analysis_work.txt,sha256=dvB5bbCPkl_jK0eQM9kDdzwehtouWoSoMB2ksRHinkQ,1662
|
596
601
|
odoo/addons/openupgrade_scripts/scripts/stock_sms/16.0.1.0/upgrade_analysis.txt,sha256=WmtD-QRPZnTjNKvErYIFRz_n-t4C2ttxPz_9eYkTOrw,150
|
597
602
|
odoo/addons/openupgrade_scripts/scripts/stock_sms/16.0.1.0/upgrade_analysis_work.txt,sha256=fvMhLfNLamiAHGIL_lGhW-LydBLO-uAYkX5bNJGfOu4,166
|
598
603
|
odoo/addons/openupgrade_scripts/scripts/survey/16.0.3.5/post-migration.py,sha256=6-FUi-2MkJaOtE7qff_gIJBvPHdT6ugIf_ncjfpqatA,906
|
@@ -704,7 +709,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/16.0.1.0/upgrade_analysi
|
|
704
709
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
705
710
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
706
711
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=IOWtZdzr_jN_Dja8HYIfzIxrO8NE5pFgazKJtPsLKw0,12678
|
707
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
708
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
709
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
710
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
712
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info/METADATA,sha256=i9v_vlw_wMP0wQceTvth3hnrjMP6dexqrNJXO63P93Y,3790
|
713
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
714
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
715
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.276.dist-info/RECORD,,
|
File without changes
|