[IMP] removal of usages of the deprecated node.getchildren call, better usage of...
[odoo/odoo.git] / addons / hr_expense / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
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
24 {
25     'name': 'Human Resources Expenses Tracking',
26     'version': '1.0',
27     'category': 'Generic Modules/Human Resources',
28     'description': """
29     This module aims to manage employee's expenses.
30
31     The whole workflow is implemented:
32     * Draft expense
33     * Confirmation of the sheet by the employee
34     * Validation by his manager
35     * Validation by the accountant and invoice creation
36     * Payment of the invoice to the employee
37
38     This module also use the analytic accounting and is compatible with
39     the invoice on timesheet module so that you will be able to automatically
40     re-invoice your customer's expenses if your work by project.
41     """,
42     'author': 'Tiny',
43     'website': 'http://www.openerp.com',
44     'depends': ['hr', 'account', 'account_tax_include'],
45     'init_xml': [],
46     'update_xml': [
47         'security/ir.model.access.csv',
48         'hr_expense_sequence.xml',
49         'hr_expense_workflow.xml',
50         'hr_expense_view.xml',
51         'hr_expense_report.xml',
52         'process/hr_expense_process.xml'
53     ],
54     'demo_xml': ['hr.expense.expense.csv'],
55     'installable': True,
56     'active': False,
57     'certificate': '0062479841789',
58 }
59 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: