[merge]
[odoo/odoo.git] / addons / hr_payroll / __openerp__.py
1 #-*- coding:utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    d$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22 {
23     'name': 'Payroll',
24     'version': '1.0',
25     'category': 'Human Resources',
26     'complexity': "normal",
27     'description': """
28 Generic Payroll system.
29 =======================
30
31     * Employee Details
32     * Employee Contracts
33     * Passport based Contract
34     * Allowances / Deductions
35     * Allow to configure Basic / Grows / Net Salary
36     * Employee Payslip
37     * Monthly Payroll Register
38     * Integrated with Holiday Management
39     """,
40     'author':'OpenERP SA',
41     'website':'http://www.openerp.com',
42     'images': ['images/hr_company_contributions.jpeg','images/hr_salary_heads.jpeg','images/hr_salary_structure.jpeg','images/hr_employee_payslip.jpeg'],
43     'depends': [
44         'hr',
45         'hr_contract',
46         'hr_holidays',
47         'decimal_precision',
48     ],
49     'init_xml': [
50     ],
51     'update_xml': [
52         'security/hr_security.xml',
53         'wizard/hr_payroll_payslips_by_employees.xml',
54         'hr_payroll_view.xml',
55         'hr_payroll_workflow.xml',
56         'hr_payroll_sequence.xml',
57         'hr_payroll_report.xml',
58         'hr_payroll_data.xml',
59         'security/ir.model.access.csv',
60         'wizard/hr_payroll_contribution_register_report.xml',
61     ],
62     'test': [
63          'test/payslip.yml',
64 #         'test/payment_advice.yml',
65 #         'test/payroll_register.yml',
66         # 'test/hr_payroll_report.yml',
67     ],
68     'demo_xml': [
69         'hr_payroll_demo.xml'
70     ],
71     'installable': True,
72     'active': False,
73     'certificate' : '001046261404562128861',
74     'application': True,
75 }
76
77 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: