From beb64d034d29a1301c4805be217a8ffe6e204205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phan=20Sainl=C3=A9ger?= Date: Fri, 21 Feb 2025 16:18:07 +0100 Subject: [PATCH] [FIX] hr_usability: add missing add-ons dependency to hr_holidays --- hr_usability/__manifest__.py | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/hr_usability/__manifest__.py b/hr_usability/__manifest__.py index eff0bcd..58d520a 100644 --- a/hr_usability/__manifest__.py +++ b/hr_usability/__manifest__.py @@ -1,15 +1,18 @@ -# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. { - 'name': "hr_usability Elabore", - 'version': '16.0.1.0.0', - 'depends': ['base','hr'], - 'author': "Élabore", - 'category': 'Human Resources/Employees', - 'summary' : "In times off type form view, add 'create_calendar_meeting' field", - 'description': """ - + "name": "hr_usability Elabore", + "version": "16.0.1.0.0", + "depends": [ + "base", + "hr", + "hr_holidays", + ], + "author": "Élabore", + "category": "Human Resources/Employees", + "summary": "In times off type form view, add 'create_calendar_meeting' field", + "description": """ + Go to Times off app > "Setings" > "Type time off" Select a type The 'create_calendar_meeting' is check by default @@ -18,11 +21,10 @@ One the checkbox is unchecked for a time off type, the next approuved times off (of that type) won't be created as a meeting and won't appear in the calendar """, - 'data': [ - 'views/hr_leave_type_views.xml', + "data": [ + "views/hr_leave_type_views.xml", ], - 'demo': [ - ], - 'application': False, - 'license': 'LGPL-3', -} \ No newline at end of file + "demo": [], + "application": False, + "license": "LGPL-3", +}