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': 'Human Resource Payroll',
24     'version': '1.0',
25     'category': 'Generic Modules/Human Resources',
26     'description': """Generic Payroll system
27     * Employee Details
28     * Employee Contracts
29     * Passport based Contract
30     * Allowances / Deductions
31     * Allow to configure Basic / Grows / Net Salary
32     * Employee Payslip
33     * Monthly Payroll Register
34     * Integrated with Holiday Management
35     """,
36     'author':'OpenERP SA',
37     'website':'http://www.openerp.com',
38     'depends': [
39         'hr',
40         'hr_contract',
41         'hr_holidays',
42         'decimal_precision',
43     ],
44     'init_xml': [
45     ],
46     'update_xml': [
47         'security/hr_security.xml',
48         'hr_payroll_view.xml',
49         'hr_payroll_workflow.xml',
50         'hr_payroll_sequence.xml',
51         'hr_paroll_report.xml',
52         'hr_payroll_data.xml',
53         'security/ir.model.access.csv',
54         'wizard/hr_payroll_employees_detail.xml',
55         'wizard/hr_payroll_year_salary.xml',
56     ],
57     'test': [
58          'test/payslip.yml',
59          'test/payment_advice.yml',
60          'test/payroll_register.yml',
61         # 'test/hr_payroll_report.yml',
62     ],
63     'demo_xml': [
64         'hr_payroll_demo.xml'
65     ],
66     'installable': True,
67     'active': False,
68     'certificate' : '001046261404562128861',
69 }
70
71 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: