-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__manifest__.py
executable file
·37 lines (35 loc) · 1.13 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
{
'name': 'Work schedule',
'version': '1.0',
'author': 'Daniel Demedziuk',
'sequence': 110,
'summary': 'Projects, Employees, Schedule',
'company': 'Daniel Demedziuk',
'description': """
Work schedule of employees
==================================
This module provides insight into employee involvement in company projects. Load the number of working hours on a project.
The module allows you to verify vacations and availability for new tasks. It allows for effective and convenient personnel management by observing the progress and project load of individual employees.
If you need help, contact the author of the module.
email: [email protected]
""",
'website': 'website',
'category': 'Tool',
'depends': [
'project',
'base',
'mail',
'hr_holidays',
'web_timeline'
],
'data': [
'views/work_schedule_view.xml',
'views/server_action.xml',
'security/work_schedule_security.xml',
'security/ir.model.access.csv',
],
'auto_install': False,
'application': True,
'installable': True,
}