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