forked from OCA/hr
-
Notifications
You must be signed in to change notification settings - Fork 7
/
__manifest__.py
32 lines (31 loc) · 1 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
# -*- coding: utf-8 -*-
# Copyright 2015 Savoir-faire Linux. All Rights Reserved.
# Copyright 2017 Serpent Consulting Services Pvt. Ltd.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'HR Payroll Period',
'version': '10.0.1.1.0',
'license': 'AGPL-3',
'category': 'Generic Modules/Human Resources',
'summary': "Add payroll periods",
'author': "Savoir-faire Linux, "
"Odoo Community Association (OCA)",
'website': 'https://github.com/OCA/hr',
'depends': [
'hr_payroll',
'date_range',
],
'data': [
'data/ir_sequence_data.xml',
'data/date_range_type.xml',
'security/hr_period_security.xml',
'security/ir.model.access.csv',
'views/hr_period_view.xml',
'views/hr_fiscalyear_view.xml',
'views/date_range_type_view.xml',
'views/hr_payslip_view.xml',
'views/hr_payslip_run_view.xml',
'views/hr_payslip_employee_view.xml',
],
'installable': True,
}