[FIX]: reviwe payroll and recall lost changes during the 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 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 General Public License for more details.
17 #
18 #    You should have received a copy of the GNU 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':'Tiny/Axelor',
37     'website':'http://www.openerp.com',
38     'depends': [
39         'hr',
40         'account',
41         'hr_contract',
42         'hr_holidays',
43         'hr_expense'
44     ],
45     'init_xml': [
46     ],
47     'update_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         'wizard/hr_payroll_create_analytic.xml',
54         'wizard/hr_payroll_employees_detail.xml',
55         'wizard/hr_payroll_year_salary.xml',
56
57     ],
58     'demo_xml': [
59         'hr_payroll_demo.xml'
60     ],
61     'installable': True,
62     'active': False,
63 }
64
65 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: