39 lines
1.1 KiB
Python
39 lines
1.1 KiB
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/hr-tools",
|
|
"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",
|
|
],
|
|
"qweb": [],
|
|
"external_dependencies": {
|
|
"python": [],
|
|
},
|
|
# always loaded
|
|
"data": [
|
|
"security/ir.model.access.csv",
|
|
"views/hr_leave_timeoff_day_views.xml",
|
|
"data/hr_leave_timeoff_day_cron.xml",
|
|
],
|
|
# only loaded in demonstration mode
|
|
"demo": [],
|
|
"js": [],
|
|
"css": [],
|
|
"installable": True,
|
|
# Install this module automatically if all dependency have been previously
|
|
# and independently installed. Used for synergetic or glue modules.
|
|
"auto_install": False,
|
|
"application": False,
|
|
}
|