forked from OCA/timesheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
28 lines (27 loc) · 841 Bytes
/
__manifest__.py
File metadata and controls
28 lines (27 loc) · 841 Bytes
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
# Copyright 2020 Brainbean Apps (https://brainbeanapps.com)
# Copyright 2020 CorporateHub (https://corporatehub.eu)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': 'HR Timesheet: Employee Cost from Contract',
'version': '12.0.1.0.2',
'category': 'Human Resources',
'website': 'https://github.com/OCA/timesheet',
'author':
'CorporateHub, '
'Odoo Community Association (OCA)',
'license': 'AGPL-3',
'installable': True,
'application': False,
'summary': 'Compute employee cost from contracts',
'depends': [
'hr_timesheet',
'hr_contract',
'hr_holidays',
],
'data': [
'views/account_analytic_line.xml',
'views/hr_contract.xml',
'views/hr_employee.xml',
'views/res_config_settings.xml'
],
}