Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docsource/modules180-190.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand All @@ -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 | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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")
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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",
],
)
Original file line number Diff line number Diff line change
@@ -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"
)
Loading