odoo-addon-openupgrade-scripts 17.0.1.0.1.423__py3-none-any.whl → 17.0.1.0.1.429__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/point_of_sale/17.0.1.0.1/pre-migration.py +1 -0
- odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/upgrade_analysis_work.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/pos_restaurant/17.0.1.0/post-migration.py +19 -0
- odoo/addons/openupgrade_scripts/scripts/pos_restaurant/17.0.1.0/upgrade_analysis_work.txt +47 -0
- odoo/addons/openupgrade_scripts/scripts/website_crm_livechat/17.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/post-migration.py +15 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/pre-migration.py +19 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/upgrade_analysis_work.txt +12 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.423.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.423.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info}/RECORD +12 -6
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.423.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.423.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info}/top_level.txt +0 -0
@@ -45,7 +45,7 @@ point_of_sale / pos.order / config_id (many2one) : is no
|
|
45
45
|
# DONE: pre-migration: it's a related field, let's fill it session_id.config_id
|
46
46
|
|
47
47
|
point_of_sale / pos.order / last_order_preparation_change (char): NEW
|
48
|
-
#
|
48
|
+
# DONE: pre-migration: renamed from multiprint_resume (pos_restaurant)
|
49
49
|
|
50
50
|
point_of_sale / pos.order / shipping_date (date) : NEW
|
51
51
|
point_of_sale / pos.order / to_ship (boolean) : DEL
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _restaurant_floor_convert_field_m2o_to_m2m(env):
|
7
|
+
# Convert m2o to m2m in 'restaurant.floor'
|
8
|
+
openupgrade.m2o_to_x2m(
|
9
|
+
env.cr,
|
10
|
+
env["restaurant.floor"],
|
11
|
+
"restaurant_floor",
|
12
|
+
"pos_config_ids",
|
13
|
+
"pos_config_id",
|
14
|
+
)
|
15
|
+
|
16
|
+
|
17
|
+
@openupgrade.migrate()
|
18
|
+
def migrate(env, version):
|
19
|
+
_restaurant_floor_convert_field_m2o_to_m2m(env)
|
@@ -0,0 +1,47 @@
|
|
1
|
+
---Models in module 'pos_restaurant'---
|
2
|
+
obsolete model restaurant.printer (renamed to pos.printer in module point_of_sale)
|
3
|
+
# NOTHING TO DO: handled in the point_of_sale module migration scripts
|
4
|
+
|
5
|
+
---Fields in module 'pos_restaurant'---
|
6
|
+
pos_restaurant / pos.config / is_table_management (boolean) : DEL
|
7
|
+
# NOTHING TO DO: Odoo dropped these fields in https://github.com/odoo/odoo/commit/e3ad1eb058db6329b7f6b8e4880e3610eee22dd9
|
8
|
+
|
9
|
+
pos_restaurant / pos.config / module_pos_restaurant_appointment (boolean): NEW
|
10
|
+
# NOTHING TO DO: new feature used to install the pos_restaurant_appointment module in Enterprise
|
11
|
+
|
12
|
+
pos_restaurant / pos.order / multiprint_resume (char) : DEL
|
13
|
+
pos_restaurant / pos.order.line / mp_skip (boolean) : DEL
|
14
|
+
# NOTHING TO DO: handled in the point_of_sale module migration scripts
|
15
|
+
# https://github.com/OCA/OpenUpgrade/blob/03bd8c9c4be30e276162ebf861cd6a5f4527df41/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/pre-migration.py#L13
|
16
|
+
|
17
|
+
pos_restaurant / pos.config / is_order_printer (boolean) : module is now 'point_of_sale' ('pos_restaurant')
|
18
|
+
pos_restaurant / pos.config / printer_ids (many2many) : module is now 'point_of_sale' ('pos_restaurant')
|
19
|
+
pos_restaurant / pos.config / printer_ids (many2many) : relation is now 'pos.printer' ('restaurant.printer') [nothing to do]
|
20
|
+
pos_restaurant / pos.order.line / uuid (char) : module is now 'point_of_sale' ('pos_restaurant')
|
21
|
+
# NOTHING TO DO: moved to the point_of_sale module
|
22
|
+
|
23
|
+
pos_restaurant / pos.config / floor_ids (one2many) : table is now 'pos_config_restaurant_floor_rel' ('False')
|
24
|
+
pos_restaurant / pos.config / floor_ids (one2many) : type is now 'many2many' ('one2many')
|
25
|
+
pos_restaurant / restaurant.floor / pos_config_id (many2one) : DEL relation: pos.config
|
26
|
+
pos_restaurant / restaurant.floor / pos_config_ids (many2many) : NEW relation: pos.config
|
27
|
+
# DONE: post-migration: convert m2o to m2m
|
28
|
+
|
29
|
+
pos_restaurant / restaurant.printer / _order : module is now 'point_of_sale' ('pos_restaurant')
|
30
|
+
pos_restaurant / restaurant.printer / display_name (char) : module is now 'point_of_sale' ('pos_restaurant')
|
31
|
+
pos_restaurant / restaurant.printer / name (char) : module is now 'point_of_sale' ('pos_restaurant')
|
32
|
+
pos_restaurant / restaurant.printer / printer_type (selection) : module is now 'point_of_sale' ('pos_restaurant')
|
33
|
+
pos_restaurant / restaurant.printer / product_categories_ids (many2many): module is now 'point_of_sale' ('pos_restaurant')
|
34
|
+
pos_restaurant / restaurant.printer / proxy_ip (char) : module is now 'point_of_sale' ('pos_restaurant')
|
35
|
+
# NOTHING TO DO: handled in the point_of_sale module migration scripts
|
36
|
+
|
37
|
+
---XML records in module 'pos_restaurant'---
|
38
|
+
DEL ir.actions.act_window: pos_restaurant.action_restaurant_printer_form
|
39
|
+
DEL ir.model.access: pos_restaurant.access_restaurant_printer
|
40
|
+
DEL ir.model.access: pos_restaurant.access_restaurant_printer_manager
|
41
|
+
DEL ir.ui.menu: pos_restaurant.menu_restaurant_printer_all
|
42
|
+
DEL ir.ui.view: pos_restaurant.view_restaurant_printer
|
43
|
+
DEL ir.ui.view: pos_restaurant.view_restaurant_printer_form
|
44
|
+
# NOTHING TO DO: moved to the point_of_sale module
|
45
|
+
|
46
|
+
NEW pos.config: pos_restaurant.pos_config_main_restaurant (noupdate)
|
47
|
+
# NOTHING TO DO: new feature
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
@openupgrade.migrate()
|
8
|
+
def migrate(env, version):
|
9
|
+
openupgrade.load_data(env, "website_sale_picking", "17.0.1.0/noupdate_changes.xml")
|
10
|
+
openupgrade.delete_record_translations(
|
11
|
+
env.cr,
|
12
|
+
"website_sale_picking",
|
13
|
+
["onsite_delivery_product"],
|
14
|
+
["description"],
|
15
|
+
)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
_noupdate_xmlids = ["payment_provider_onsite"]
|
6
|
+
_xmlid_renames = [
|
7
|
+
(
|
8
|
+
"website_sale_picking.checkout_payment",
|
9
|
+
"website_sale_picking.payment_method_form",
|
10
|
+
)
|
11
|
+
]
|
12
|
+
|
13
|
+
|
14
|
+
@openupgrade.migrate()
|
15
|
+
def migrate(env, version):
|
16
|
+
openupgrade.set_xml_ids_noupdate_value(
|
17
|
+
env, "website_sale_picking", _noupdate_xmlids, False
|
18
|
+
)
|
19
|
+
openupgrade.rename_xmlids(env.cr, _xmlid_renames)
|
odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
---Models in module 'website_sale_picking'---
|
2
|
+
---Fields in module 'website_sale_picking'---
|
3
|
+
---XML records in module 'website_sale_picking'---
|
4
|
+
NEW ir.ui.view: website_sale_picking.payment_method_form
|
5
|
+
DEL ir.ui.view: website_sale_picking.checkout_payment
|
6
|
+
# DONE: pre-migration: XML-ID renamed
|
7
|
+
|
8
|
+
NEW payment.method: website_sale_picking.payment_method_pay_on_site
|
9
|
+
# NOTHING TO DO: New record used to set in payment.provider payment_provider_onsite
|
10
|
+
|
11
|
+
payment.provider: website_sale_picking.payment_provider_onsite (noupdate switched)
|
12
|
+
# DONE: pre-migration: Switch noupdate flag
|
@@ -522,9 +522,9 @@ odoo/addons/openupgrade_scripts/scripts/phone_validation/17.0.2.1/upgrade_analys
|
|
522
522
|
odoo/addons/openupgrade_scripts/scripts/phone_validation/17.0.2.1/upgrade_analysis_work.txt,sha256=VS_n-bjkpdTtxZ8tQvMq0VwECZqBC01wi14VESpYnAI,261
|
523
523
|
odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/noupdate_changes.xml,sha256=yTGwS7WST6St0wS8EDetb3JIhd-MQIbp_NaLC81ENJ4,1710
|
524
524
|
odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/post-migration.py,sha256=co5rgYK9m2GlJch1V46aHxWWdEN-kzQvhU15stWO4KI,1659
|
525
|
-
odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/pre-migration.py,sha256=
|
525
|
+
odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/pre-migration.py,sha256=I7eDU4NYet4pGLCTYz2yymRCWwK5d14PnziYUKCvjuo,2044
|
526
526
|
odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/upgrade_analysis.txt,sha256=PrjHgYQgSXWUYtmS8esVwWUu732JufVTKdfOvBsVcLs,9247
|
527
|
-
odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/upgrade_analysis_work.txt,sha256=
|
527
|
+
odoo/addons/openupgrade_scripts/scripts/point_of_sale/17.0.1.0.1/upgrade_analysis_work.txt,sha256=k73p9V4jdq6RK6df5DKt5oZToyG6A8R3TUy6P3HvmCU,10317
|
528
528
|
odoo/addons/openupgrade_scripts/scripts/portal/17.0.1.0/noupdate_changes.xml,sha256=C95FpUACAYgKGXgvgM_1k2M9KWQf388BMez1aezBpnM,6652
|
529
529
|
odoo/addons/openupgrade_scripts/scripts/portal/17.0.1.0/post-migration.py,sha256=Mebdop5Dm2kizE6EoUJWRjNPjVeeWPZT1qoqHLXG1d8,301
|
530
530
|
odoo/addons/openupgrade_scripts/scripts/portal/17.0.1.0/upgrade_analysis.txt,sha256=wLTw9lAe0ygJ5AZXFtYBI2YBF8s6yRyOrGdh9dB_Mxg,774
|
@@ -545,7 +545,9 @@ odoo/addons/openupgrade_scripts/scripts/pos_online_payment/17.0.1.0/upgrade_anal
|
|
545
545
|
odoo/addons/openupgrade_scripts/scripts/pos_online_payment_self_order/17.0.1.0/upgrade_analysis.txt,sha256=mnClgb82R34_OsFAvyMexVHsC31BZZAuF7r1vlrB_4s,524
|
546
546
|
odoo/addons/openupgrade_scripts/scripts/pos_paytm/17.0.1.0/upgrade_analysis.txt,sha256=L919F_OMTaimxlqwIwm5obBmcLm0DV5yO2pRrvqejP8,1403
|
547
547
|
odoo/addons/openupgrade_scripts/scripts/pos_razorpay/17.0.1.0/upgrade_analysis.txt,sha256=4sobPz7dRnyzVabeE4g4xu63fVz-ziArt0q2Q7zBif4,1368
|
548
|
+
odoo/addons/openupgrade_scripts/scripts/pos_restaurant/17.0.1.0/post-migration.py,sha256=2JEWery3v6pwRhGdwsg8lITUS0s34k7lTgCUbrWlSYc,514
|
548
549
|
odoo/addons/openupgrade_scripts/scripts/pos_restaurant/17.0.1.0/upgrade_analysis.txt,sha256=uMd2fGcQECQvPHErvAS8LUiZWlLUfqsGUpHh5kCrEdw,2711
|
550
|
+
odoo/addons/openupgrade_scripts/scripts/pos_restaurant/17.0.1.0/upgrade_analysis_work.txt,sha256=OUtBMuua7c4fnED8_bwZYoXX6R01ZfVOeL05yxP0Nl4,3483
|
549
551
|
odoo/addons/openupgrade_scripts/scripts/pos_restaurant_adyen/17.0.1.0/upgrade_analysis.txt,sha256=Tm2XlP6Xsn-oIwmeP2NtJVhLNxYn4BPoB3nw8b7CMJ4,183
|
550
552
|
odoo/addons/openupgrade_scripts/scripts/pos_sale/17.0.1.1/upgrade_analysis.txt,sha256=7y3xpcTs8PhH6C_P4n6MaH4MFNXEbMx940jxajG4qQA,147
|
551
553
|
odoo/addons/openupgrade_scripts/scripts/pos_sale/17.0.1.1/upgrade_analysis_work.txt,sha256=ECZFmY7wtAJYh7O-x9KG3RiwltSBFq0Rqs9BP9sA7M8,163
|
@@ -723,6 +725,7 @@ odoo/addons/openupgrade_scripts/scripts/website_crm/17.0.2.1/upgrade_analysis wo
|
|
723
725
|
odoo/addons/openupgrade_scripts/scripts/website_crm/17.0.2.1/upgrade_analysis.txt,sha256=y6ZeGUo8Je1ompJpIV8Yn_mMeHTD4TtOGTAnwAArIHo,156
|
724
726
|
odoo/addons/openupgrade_scripts/scripts/website_crm_iap_reveal/17.0.1.1/upgrade_analysis.txt,sha256=6dkVtQb1BZFoAJ8vq1BVh72DQgR-NTj5UJUYX_nZ_68,189
|
725
727
|
odoo/addons/openupgrade_scripts/scripts/website_crm_livechat/17.0.1.0/upgrade_analysis.txt,sha256=GAii12o9_VRFYIAM7-IkJjfOqnyuKJAPRzMd6aH1UEI,183
|
728
|
+
odoo/addons/openupgrade_scripts/scripts/website_crm_livechat/17.0.1.0/upgrade_analysis_work.txt,sha256=ghkEm1rJ5_2bKjUNByS5Jy2qIMxZOrmAp2bHRe5hdUM,200
|
726
729
|
odoo/addons/openupgrade_scripts/scripts/website_crm_partner_assign/17.0.1.2/upgrade_analysis.txt,sha256=Y3DLpC8wNPscsQj-3XGZB2kGiktdZWkKCCYgmJFnvAE,300
|
727
730
|
odoo/addons/openupgrade_scripts/scripts/website_customer/17.0.1.0/upgrade_analysis.txt,sha256=ml1mfj5PM97j8y7LfCPPth7JblWYmkrfbyKGGTYkN8o,617
|
728
731
|
odoo/addons/openupgrade_scripts/scripts/website_event/17.0.1.4/noupdate_changes.xml,sha256=gGQrjDSSR2tbBNI1ZWxgjyyvhLXa6EY545sKlmZ-X4k,672
|
@@ -776,7 +779,10 @@ odoo/addons/openupgrade_scripts/scripts/website_sale_loyalty/17.0.1.0/upgrade_an
|
|
776
779
|
odoo/addons/openupgrade_scripts/scripts/website_sale_loyalty/17.0.1.0/upgrade_analysis_work.txt,sha256=ZS8rS4HDLDWza7UEb9w9LxC-K4H6ntD4DM2bktov2H4,199
|
777
780
|
odoo/addons/openupgrade_scripts/scripts/website_sale_mondialrelay/17.0.0.1/upgrade_analysis.txt,sha256=Fpp9J2ckhIKHJaaw36279bmBOIOPcBsON5PKwHa9_Zk,1020
|
778
781
|
odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/noupdate_changes.xml,sha256=enRwfnuelKkwji2xHfFZd6_fybpaAzKRALRk6ZKx4_U,181
|
782
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/post-migration.py,sha256=-2g8DP2yZ77GZ_xUCHgsGMhy2c8w1RJeYSpiyihPAhU,451
|
783
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/pre-migration.py,sha256=T0c23omLI9SleXldJL5FHGfo4ulDG3SUBu0NveEhAYk,549
|
779
784
|
odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/upgrade_analysis.txt,sha256=QFmAuMEs1aKofEWJCCXQ8-5Z-uviliKiwoSg8cB_WS4,405
|
785
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_picking/17.0.1.0/upgrade_analysis_work.txt,sha256=HxpEszVXd0dKIh7OGmknn08YtoXNjfn8Hi4qcPFjxEA,573
|
780
786
|
odoo/addons/openupgrade_scripts/scripts/website_sale_product_configurator/17.0.1.0/upgrade_analysis.txt,sha256=YG9z6ZZ57_niOK0hyT9oBR3qsOgp7uk137B_VfeLKzY,811
|
781
787
|
odoo/addons/openupgrade_scripts/scripts/website_sale_slides/17.0.1.0/upgrade_analysis.txt,sha256=zSCD3PSy3II0eoBSPAjfyFHDix1gwSJebRjGnbVny8c,375
|
782
788
|
odoo/addons/openupgrade_scripts/scripts/website_sale_slides/17.0.1.0/upgrade_analysis_work.txt,sha256=Z0MiJFccyeSml8JujGkPqCjTeNEU5UMxlXkRTXy-bD4,439
|
@@ -801,7 +807,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/17.0.1.0/upgrade_analysi
|
|
801
807
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
802
808
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
803
809
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=iV41-zYBM4uvZPuunpcr7bQeRgBaojVsKo_gkeyJyA4,12639
|
804
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
805
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
806
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
807
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
810
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info/METADATA,sha256=HaqcjD4g7wuibvgF2V72b-qDXtlo9BAZ8UzoV89MINU,3823
|
811
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
812
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
813
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.429.dist-info/RECORD,,
|
File without changes
|