forked from OCA/project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
30 lines (29 loc) · 979 Bytes
/
__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
# Copyright 2016 Tecnativa - Antonio Espinosa
# Copyright 2016 Tecnativa - Sergio Teruel
# Copyright 2016-2018 Tecnativa - Pedro M. Baeza
# Copyright 2018 Tecnativa - Ernesto Tejeda
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
'name': 'Project timesheet time control',
'version': '12.0.2.1.2',
'category': 'Project',
'author': 'Tecnativa,'
'Odoo Community Association (OCA)',
'maintainers': ['ernestotejeda'],
'website': 'https://github.com/OCA/project',
'depends': [
'hr_timesheet_task_stage',
'hr_timesheet_task_domain',
'web_ir_actions_act_multi',
'web_ir_actions_act_view_reload',
],
'data': [
'views/account_analytic_line_view.xml',
'views/project_project_view.xml',
'views/project_task_view.xml',
'wizards/hr_timesheet_switch_view.xml',
],
'license': 'AGPL-3',
'installable': True,
'post_init_hook': 'post_init_hook',
}