mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
[ADD] timesheet_exception: timesheet created should not exceed 8 in spent hours
H11047
This commit is contained in:
30
timesheet_exception/__manifest__.py
Normal file
30
timesheet_exception/__manifest__.py
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user