odoo-addon-openupgrade-scripts 17.0.1.0.1.32__py3-none-any.whl → 17.0.1.0.1.34__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/calendar/17.0.1.1/post-migration.py +9 -0
- odoo/addons/openupgrade_scripts/scripts/calendar/17.0.1.1/upgrade_analysis_work.txt +30 -0
- odoo/addons/openupgrade_scripts/scripts/resource/17.0.1.1/post-migration.py +17 -0
- odoo/addons/openupgrade_scripts/scripts/resource/17.0.1.1/pre-migration.py +16 -0
- odoo/addons/openupgrade_scripts/scripts/resource/17.0.1.1/upgrade_analysis_work.txt +21 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.32.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.32.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info}/RECORD +9 -4
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.32.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.32.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
# Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
|
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, "calendar", "17.0.1.1/noupdate_changes.xml")
|
@@ -0,0 +1,30 @@
|
|
1
|
+
---Models in module 'calendar'---
|
2
|
+
new model calendar.popover.delete.wizard [transient]
|
3
|
+
# NOTHING TO DO
|
4
|
+
|
5
|
+
---Fields in module 'calendar'---
|
6
|
+
calendar / calendar.event / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
7
|
+
# NOTHING TO DO
|
8
|
+
|
9
|
+
calendar / calendar.event / rrule_type_ui (selection) : NEW selection_keys: ['custom', 'daily', 'monthly', 'weekly', 'yearly'], hasdefault: compute
|
10
|
+
# NOTHING TO DO: new field, compute non-store
|
11
|
+
|
12
|
+
calendar / calendar.event / videocall_channel_id (many2one): relation is now 'discuss.channel' ('mail.channel') [nothing to do]
|
13
|
+
calendar / calendar.recurrence / trigger_id (many2one) : NEW relation: ir.cron.trigger
|
14
|
+
# NOTHING TO DO
|
15
|
+
|
16
|
+
---XML records in module 'calendar'---
|
17
|
+
NEW ir.actions.act_window: calendar.action_view_start_calendar_sync
|
18
|
+
NEW ir.actions.act_window: calendar.calendar_settings_action
|
19
|
+
NEW ir.model.access: calendar.access_calendar_attendee_employee_delete_wizard
|
20
|
+
# NOTHING TO DO
|
21
|
+
|
22
|
+
NEW ir.ui.menu: calendar.calendar_event_menu
|
23
|
+
NEW ir.ui.menu: calendar.menu_calendar_settings
|
24
|
+
NEW ir.ui.view: calendar.calendar_popover_delete_view
|
25
|
+
NEW ir.ui.view: calendar.mail_activity_schedule_view_form
|
26
|
+
NEW ir.ui.view: calendar.res_config_settings_view_form
|
27
|
+
NEW ir.ui.view: calendar.view_calendar_event_form_quick_create
|
28
|
+
NEW onboarding.onboarding: calendar.onboarding_onboarding_calendar (noupdate)
|
29
|
+
NEW onboarding.onboarding.step: calendar.onboarding_onboarding_step_setup_calendar_integration (noupdate)
|
30
|
+
# NOTHING TO DO
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
_deleted_xml_records = [
|
7
|
+
"resource.resource_calendar_std_35h",
|
8
|
+
"resource.resource_calendar_std_38h",
|
9
|
+
]
|
10
|
+
|
11
|
+
|
12
|
+
@openupgrade.migrate()
|
13
|
+
def migrate(env, version):
|
14
|
+
openupgrade.delete_records_safely_by_xml_id(
|
15
|
+
env,
|
16
|
+
_deleted_xml_records,
|
17
|
+
)
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
|
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.set_xml_ids_noupdate_value(
|
10
|
+
env,
|
11
|
+
"resource",
|
12
|
+
[
|
13
|
+
"resource_calendar_std",
|
14
|
+
],
|
15
|
+
True,
|
16
|
+
)
|
@@ -0,0 +1,21 @@
|
|
1
|
+
---Models in module 'resource'---
|
2
|
+
---Fields in module 'resource'---
|
3
|
+
resource / resource.calendar / hours_per_day (float) : now a function
|
4
|
+
# Nothing To Do, compute non-stored
|
5
|
+
|
6
|
+
resource / resource.calendar.attendance / _order : _order is now 'sequence, week_type, dayofweek, hour_from' ('week_type, dayofweek, hour_from')
|
7
|
+
# Nothing To Do, default order when search
|
8
|
+
|
9
|
+
resource / resource.calendar.attendance / day_period (selection) : selection_keys is now '['afternoon', 'lunch', 'morning']' ('['afternoon', 'morning']')
|
10
|
+
# Nothing To Do, new option: lunch
|
11
|
+
|
12
|
+
resource / resource.calendar.attendance / duration_days (float) : NEW hasdefault: compute
|
13
|
+
# Nothing To Do, no need precomputation
|
14
|
+
|
15
|
+
---XML records in module 'resource'---
|
16
|
+
resource.calendar: resource.resource_calendar_std (noupdate) (noupdate switched)
|
17
|
+
# DONE: switched noupdate
|
18
|
+
|
19
|
+
DEL resource.calendar: resource.resource_calendar_std_35h (noupdate)
|
20
|
+
DEL resource.calendar: resource.resource_calendar_std_38h (noupdate)
|
21
|
+
# DONE: safely delete in post-migration
|
@@ -58,7 +58,9 @@ odoo/addons/openupgrade_scripts/scripts/board/17.0.1.0/upgrade_analysis.txt,sha2
|
|
58
58
|
odoo/addons/openupgrade_scripts/scripts/bus/17.0.1.0/upgrade_analysis.txt,sha256=SPdBhavq0qsW3s3Uj-NEYd5ba_DDDwkvoVXy6NBbxfA,132
|
59
59
|
odoo/addons/openupgrade_scripts/scripts/bus/17.0.1.0/upgrade_analysis_work.txt,sha256=2SECsFgKnv-kPuyEXGOLY0blbnQkVazOxdGZxo5bHyg,146
|
60
60
|
odoo/addons/openupgrade_scripts/scripts/calendar/17.0.1.1/noupdate_changes.xml,sha256=QDtRQpvidkYIghSt_LecB0564FYjAiyppsfxElOSxG0,16199
|
61
|
+
odoo/addons/openupgrade_scripts/scripts/calendar/17.0.1.1/post-migration.py,sha256=c5FjXG_27aiiLSp4_5T5iypumNxh0J7JkkkRdNWDljE,303
|
61
62
|
odoo/addons/openupgrade_scripts/scripts/calendar/17.0.1.1/upgrade_analysis.txt,sha256=cDu39zIqNTZgZZPI9bWXjBkFfOa3yKd8NbuRYs9rPoQ,1395
|
63
|
+
odoo/addons/openupgrade_scripts/scripts/calendar/17.0.1.1/upgrade_analysis_work.txt,sha256=9Cs4S3AqZ0G10G4K4pSqSLMSwRRGNBTnaJEeu-dy32E,1526
|
62
64
|
odoo/addons/openupgrade_scripts/scripts/calendar_sms/17.0.1.1/upgrade_analysis.txt,sha256=ov0HAtIQqr4W1AZIQ-NMGlXb_gSZsbqm5mq-kn2Zre4,199
|
63
65
|
odoo/addons/openupgrade_scripts/scripts/crm/17.0.1.8/upgrade_analysis.txt,sha256=ZsCcp6uA15KE3LExKlK3aCCSzenNfiPoOTcVWmZh-wk,1483
|
64
66
|
odoo/addons/openupgrade_scripts/scripts/crm_iap_enrich/17.0.1.1/noupdate_changes.xml,sha256=-izWXk6Bj_LdL2MvG6TYJSV4HWy4PuI8vOLeK4ET9Q0,645
|
@@ -404,7 +406,10 @@ odoo/addons/openupgrade_scripts/scripts/rating/17.0.1.1/upgrade_analysis.txt,sha
|
|
404
406
|
odoo/addons/openupgrade_scripts/scripts/rating/17.0.1.1/upgrade_analysis_work.txt,sha256=AG_gRxWXjup776lKThpZ4499ojtMVej_7cT_1LN9xr0,1990
|
405
407
|
odoo/addons/openupgrade_scripts/scripts/repair/17.0.1.0/noupdate_changes.xml,sha256=SsODI46tUtKZGQdz1meM6VsGmT_udVIzdxrWu34fPEs,202
|
406
408
|
odoo/addons/openupgrade_scripts/scripts/repair/17.0.1.0/upgrade_analysis.txt,sha256=9nq-cpzaimD41mz-A6Y30DYJmblITlWDqShK6AYvufg,9290
|
409
|
+
odoo/addons/openupgrade_scripts/scripts/resource/17.0.1.1/post-migration.py,sha256=WyZ_LtqxscUMf_J7-iANYC0xKxu4ROuAcJbSOPhYaPE,437
|
410
|
+
odoo/addons/openupgrade_scripts/scripts/resource/17.0.1.1/pre-migration.py,sha256=JU6S2pAAe7NVlTikvyf98HzKBk0rpsptV8psPjgfhZg,382
|
407
411
|
odoo/addons/openupgrade_scripts/scripts/resource/17.0.1.1/upgrade_analysis.txt,sha256=rvmI4wkqwRY0Mz3mI_oMf9DsqwKny69cgGNasFv6BpU,854
|
412
|
+
odoo/addons/openupgrade_scripts/scripts/resource/17.0.1.1/upgrade_analysis_work.txt,sha256=4PZlu1CMt097grYRprqQgGnIjBfhQGmvMD0ZXCO_KpM,1079
|
408
413
|
odoo/addons/openupgrade_scripts/scripts/sale/17.0.1.2/noupdate_changes.xml,sha256=wh7d2nRJLcvN16KYMDdTiNqRT0O8siPsNpKlyQGRNxc,13187
|
409
414
|
odoo/addons/openupgrade_scripts/scripts/sale/17.0.1.2/upgrade_analysis.txt,sha256=bzIP0uZgpiCqOmfzU1XVfmbi8wAwbA0OoNAAI2quN2w,6014
|
410
415
|
odoo/addons/openupgrade_scripts/scripts/sale_async_emails/17.0.1.0/upgrade_analysis.txt,sha256=JkvRgvp29pq_FGyqKSyInOfmQf2N9MCheOEXHc_BHfQ,361
|
@@ -507,7 +512,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/17.0.1.0/upgrade_analysi
|
|
507
512
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
508
513
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
509
514
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=iV41-zYBM4uvZPuunpcr7bQeRgBaojVsKo_gkeyJyA4,12639
|
510
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
511
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
512
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
513
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
515
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info/METADATA,sha256=PNAjb597AOOqQO4Nhqa8vd71EA8KFx-Jy-eZPwhtfw0,3785
|
516
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
|
517
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
518
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.34.dist-info/RECORD,,
|
File without changes
|