[TYPO] Set the right category for the Point Of Sale
[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     '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         'res_config_view.xml',
62     ],
63     'test': [
64          'test/payslip.yml',
65 #         'test/payment_advice.yml',
66 #         'test/payroll_register.yml',
67         # 'test/hr_payroll_report.yml',
68     ],
69     'demo_xml': [
70         'hr_payroll_demo.xml'
71     ],
72     'installable': True,
73     'auto_install': False,
74     'certificate' : '001046261404562128861',
75     'application': False,
76 }
77
78 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: