diff --git a/docsource/modules180-190.rst b/docsource/modules180-190.rst index 513393d744c6..f5203cc16a6c 100644 --- a/docsource/modules180-190.rst +++ b/docsource/modules180-190.rst @@ -186,27 +186,27 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | |del| hr_holidays_contract | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_homeworking | | | +| hr_homeworking |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | hr_homeworking_calendar | |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+ | hr_hourly_cost |Nothing to do |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_livechat | | | +| hr_livechat |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | hr_maintenance |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | hr_org_chart |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_presence | | | +| hr_presence |Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | hr_recruitment |Done | | +---------------------------------------------------+----------------------+-------------------------------------------------+ | hr_recruitment_skills | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_recruitment_sms | | | +| hr_recruitment_sms |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_recruitment_survey | |No DB layout changes. | +| hr_recruitment_survey |Done |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+ | hr_skills | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ @@ -224,7 +224,7 @@ Module coverage 18.0 -> 19.0 +---------------------------------------------------+----------------------+-------------------------------------------------+ | |del| hr_work_entry_contract | | | +---------------------------------------------------+----------------------+-------------------------------------------------+ -| hr_work_entry_holidays | |No DB layout changes. | +| hr_work_entry_holidays |Done |No DB layout changes. | +---------------------------------------------------+----------------------+-------------------------------------------------+ | |new| html_builder |Nothing to do | | +---------------------------------------------------+----------------------+-------------------------------------------------+ diff --git a/openupgrade_scripts/scripts/hr_homeworking/19.0.2.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/hr_homeworking/19.0.2.0/upgrade_analysis_work.txt new file mode 100644 index 000000000000..85d5777d0ac2 --- /dev/null +++ b/openupgrade_scripts/scripts/hr_homeworking/19.0.2.0/upgrade_analysis_work.txt @@ -0,0 +1,5 @@ +---Models in module 'hr_homeworking'--- +---Fields in module 'hr_homeworking'--- +---XML records in module 'hr_homeworking'--- +NEW ir.ui.view: hr_homeworking.res_users_view_form +# NOTHING TO DO diff --git a/openupgrade_scripts/scripts/hr_livechat/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/hr_livechat/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 000000000000..ec6b925bc31a --- /dev/null +++ b/openupgrade_scripts/scripts/hr_livechat/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,7 @@ +---Models in module 'hr_livechat'--- +---Fields in module 'hr_livechat'--- +---XML records in module 'hr_livechat'--- +NEW ir.ui.view: hr_livechat.discuss_channel_looking_for_help_view_search +NEW ir.ui.view: hr_livechat.im_livechat_report_channel_view_search +NEW ir.ui.view: hr_livechat.website_livechat_agent_history_view_search +# NOTHING TO DO diff --git a/openupgrade_scripts/scripts/hr_presence/19.0.1.0/post-migration.py b/openupgrade_scripts/scripts/hr_presence/19.0.1.0/post-migration.py new file mode 100644 index 000000000000..1b8c2b3dc872 --- /dev/null +++ b/openupgrade_scripts/scripts/hr_presence/19.0.1.0/post-migration.py @@ -0,0 +1,9 @@ +# Copyright 2026 ForgeFlow S.L. (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.load_data(env, "hr_presence", "19.0.1.0/noupdate_changes.xml") diff --git a/openupgrade_scripts/scripts/hr_presence/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/hr_presence/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 000000000000..dacd53fbe222 --- /dev/null +++ b/openupgrade_scripts/scripts/hr_presence/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,5 @@ +---Models in module 'hr_presence'--- +---Fields in module 'hr_presence'--- +---XML records in module 'hr_presence'--- +DEL ir.ui.view: hr_presence.hr_employee_view_tree +# NOTHING TO DO diff --git a/openupgrade_scripts/scripts/hr_recruitment_sms/19.0.1.0/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/hr_recruitment_sms/19.0.1.0/upgrade_analysis_work.txt new file mode 100644 index 000000000000..bd7b6ee7183a --- /dev/null +++ b/openupgrade_scripts/scripts/hr_recruitment_sms/19.0.1.0/upgrade_analysis_work.txt @@ -0,0 +1,7 @@ +---Models in module 'hr_recruitment_sms'--- +---Fields in module 'hr_recruitment_sms'--- +---XML records in module 'hr_recruitment_sms'--- +DEL ir.actions.act_window: hr_recruitment_sms.action_hr_applicant_mass_sms +DEL ir.actions.act_window: hr_recruitment_sms.action_hr_candidate_mass_sms +NEW ir.actions.server: hr_recruitment_sms.action_applicant_send_sms +# NOTHING TO DO diff --git a/openupgrade_scripts/scripts/hr_recruitment_survey/19.0.1.0/post-migration.py b/openupgrade_scripts/scripts/hr_recruitment_survey/19.0.1.0/post-migration.py new file mode 100644 index 000000000000..10f635a44ee5 --- /dev/null +++ b/openupgrade_scripts/scripts/hr_recruitment_survey/19.0.1.0/post-migration.py @@ -0,0 +1,16 @@ +# Copyright 2026 ForgeFlow S.L. (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.load_data(env, "hr_recruitment_survey", "19.0.1.0/noupdate_changes.xml") + openupgrade.delete_record_translations( + env.cr, + "hr_recruitment_survey", + [ + "mail_template_applicant_interview_invite", + ], + ) diff --git a/openupgrade_scripts/scripts/hr_work_entry_holidays/19.0.1.0/post-migration.py b/openupgrade_scripts/scripts/hr_work_entry_holidays/19.0.1.0/post-migration.py new file mode 100644 index 000000000000..62484f551c3f --- /dev/null +++ b/openupgrade_scripts/scripts/hr_work_entry_holidays/19.0.1.0/post-migration.py @@ -0,0 +1,11 @@ +# Copyright 2026 ForgeFlow S.L. (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.load_data( + env, "hr_work_entry_holidays", "19.0.1.0/noupdate_changes.xml" + )