[ADD] timesheet_exception: timesheet created should not exceed 8 in spent hours

H11047
This commit is contained in:
percyhibou
2022-10-01 04:11:39 +00:00
parent 58666c3806
commit 368770f814
12 changed files with 340 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
{
'name': "Timesheet Exception Rule",
'version': '15.0.1.0.0',
'author': "Hibou Corp.",
'license': 'OPL-1',
'category': 'Generic Modules',
'summary': """
Module for Timesheet Exception Rule""",
'description': """
The ability to run and trigger exceptions to block the moving of a timesheet based on rules
""",
'website': "http://www.hibou.io/",
'depends': [
'base_exception_user',
'timesheet_grid',
'sale_timesheet' # We need to clarify if this module has to be installed/present to run the Tests
],
'data': [
'security/ir.model.access.csv',
'views/timesheet_views.xml',
'wizard/timesheet_exception_confirm_views.xml',
],
'demo': [
'demo/timesheet_exception_demo.xml',
],
'installable': True,
'auto_install': False,
}