-
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) · 882 Bytes
/
__manifest__.py
File metadata and controls
28 lines (27 loc) · 882 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 (C) 2018 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 Employee Health',
'version': '12.0.1.0.0',
'category': 'Human Resources',
'website': 'https://github.com/OCA/hr',
'author':
'CorporateHub, '
'Odoo Community Association (OCA)',
'license': 'AGPL-3',
'installable': True,
'application': False,
'summary': 'Allows storing information about employee\'s health',
'depends': [
'hr',
],
'data': [
'security/ir.model.access.csv',
'data/data_health_condition_type.xml',
'data/data_health_condition_severity.xml',
'data/data_blood_type.xml',
'views/hr_employee.xml',
'views/hr_employee_health_condition.xml',
],
}