Launchpad automatic translations update.
[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     'sequence': 38,
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/Gross/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     'data': [
50         'security/hr_security.xml',
51         'wizard/hr_payroll_payslips_by_employees.xml',
52         'hr_payroll_view.xml',
53         'hr_payroll_workflow.xml',
54         'hr_payroll_sequence.xml',
55         'hr_payroll_report.xml',
56         'hr_payroll_data.xml',
57         'security/ir.model.access.csv',
58         'wizard/hr_payroll_contribution_register_report.xml',
59         'res_config_view.xml',
60     ],
61     'test': [
62         'test/payslip.yml',
63 #        'test/payment_advice.yml',
64 #        'test/payroll_register.yml',
65        # 'test/hr_payroll_report.yml',
66     ],
67     'demo': ['hr_payroll_demo.xml'],
68     'installable': True,
69     'auto_install': False,
70     'application': False,
71 }
72
73 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: