forked from OCA/timesheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
38 lines (37 loc) · 1.17 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
38
# Copyright 2018 Eficent
# Copyright 2018-2019 Brainbean Apps (https://brainbeanapps.com)
# Copyright 2018-2019 Onestein (<https://www.onestein.eu>)
# Copyright 2020 CorporateHub (https://corporatehub.eu)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
'name': 'HR Timesheet Sheet',
'version': '12.0.3.7.6',
'category': 'Human Resources',
'sequence': 80,
'summary': 'Timesheet Sheets, Activities',
'license': 'AGPL-3',
'author': (
'Eficent, '
'Onestein, '
'CorporateHub, '
'Odoo Community Association (OCA)'
),
'website': 'https://github.com/OCA/timesheet',
'installable': True,
'auto_install': False,
'depends': [
'hr_timesheet',
'web_widget_x2many_2d_matrix',
],
'data': [
'data/hr_timesheet_sheet_data.xml',
'security/ir.model.access.csv',
'security/hr_timesheet_sheet_security.xml',
'views/hr_timesheet_sheet_views.xml',
'views/hr_department_views.xml',
'views/hr_employee_views.xml',
'views/account_analytic_line_views.xml',
'views/res_config_settings_views.xml',
'templates/assets.xml',
],
}