From a743382539ca7c7167fe2b4adb04431d395887ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miquel=20Ra=C3=AFch?= Date: Mon, 3 Feb 2025 20:18:10 +0100 Subject: [PATCH] [OU-FIX] hr_holidays: forgot to call a method --- .../scripts/hr_holidays/15.0.1.5/post-migration.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openupgrade_scripts/scripts/hr_holidays/15.0.1.5/post-migration.py b/openupgrade_scripts/scripts/hr_holidays/15.0.1.5/post-migration.py index b65bfcef4bac..09efcd52ee79 100644 --- a/openupgrade_scripts/scripts/hr_holidays/15.0.1.5/post-migration.py +++ b/openupgrade_scripts/scripts/hr_holidays/15.0.1.5/post-migration.py @@ -34,6 +34,7 @@ def _map_hr_leave_allocation_state(env): @openupgrade.migrate() def migrate(env, version): + fill_hr_leave_type_requires_allocation(env) _map_hr_leave_state(env) _map_hr_leave_allocation_state(env) openupgrade.load_data(env.cr, "hr_holidays", "15.0.1.5/noupdate_changes.xml")