-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
__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
# 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": "14.0.1.1.0",
"license": "AGPL-3",
"category": "Payroll",
"summary": "Add payroll periods",
"author": "Savoir-faire Linux, " "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/payroll",
"depends": [
"payroll",
"date_range",
],
"data": [
"security/ir.model.access.csv",
"security/hr_period_security.xml",
"data/ir_sequence_data.xml",
"data/date_range_type.xml",
"views/menus.xml",
"views/date_range_type_view.xml",
"views/hr_period_view.xml",
"views/hr_fiscalyear_view.xml",
"views/hr_payslip_view.xml",
"views/hr_payslip_run_view.xml",
"views/hr_payslip_employee_view.xml",
],
"installable": True,
"maintainers": ["nimarosa"],
}