Files
hr-tools/hr_holidays_timeoff_analysis/__manifest__.py

31 lines
847 B
Python

# Copyright 2025 Elabore ()
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "hr_holidays_timeoff_analysis",
"version": "18.0.1.0.0",
"author": "Elabore",
"website": "https://git.elabore.coop/elabore/elabore-addons",
"maintainer": "Elabore",
"license": "AGPL-3",
"category": "HR",
"summary": (
"indicate day by day if a date is timeoff"
" or not and generate an analyses pivot by employee"
),
# any module necessary for this one to work correctly
"depends": [
"base",
"hr_holidays",
],
# always loaded
"data": [
"security/ir.model.access.csv",
"views/hr_leave_timeoff_day_views.xml",
"data/hr_leave_timeoff_day_cron.xml",
],
"installable": True,
"auto_install": False,
"application": False,
}