[MERGE] merged with trunk-development-branch
[odoo/odoo.git] / addons / hr_expense / __openerp__.py
index 8311355..4e91155 100644 (file)
 
 
 {
-    'name': 'Human Resources Expenses Tracking',
+    'name': 'Expenses Management',
     'version': '1.0',
-    'category': 'Generic Modules/Human Resources',
+    'category': 'Human Resources',
+    'complexity': "easy",
     'description': """
-    This module aims to manage employee's expenses.
+This module aims to manage employee's expenses.
+===============================================
 
-    The whole workflow is implemented:
+The whole workflow is implemented:
     * Draft expense
     * Confirmation of the sheet by the employee
     * Validation by his manager
     * Validation by the accountant and invoice creation
     * Payment of the invoice to the employee
 
-    This module also uses the analytic accounting and is compatible with
-    the invoice on timesheet module so that you will be able to automatically
-    re-invoice your customer's expenses if your work by project.
+This module also uses the analytic accounting and is compatible with
+the invoice on timesheet module so that you will be able to automatically
+re-invoice your customer's expenses if your work by project.
     """,
-    'author': 'Tiny',
+    'author': 'OpenERP SA',
     'website': 'http://www.openerp.com',
-    'depends': ['hr', 'account', 'account_tax_include'],
+    'images': ['images/hr_expenses_analysis.jpeg', 'images/hr_expenses.jpeg'],
+    'depends': ['hr', 'account'],
     'init_xml': [],
     'update_xml': [
         'security/ir.model.access.csv',
+        'hr_expense_data.xml',
         'hr_expense_sequence.xml',
         'hr_expense_workflow.xml',
         'hr_expense_view.xml',
         'hr_expense_report.xml',
         'process/hr_expense_process.xml',
-        'report/hr_expense_report_view.xml'
+        'security/ir_rule.xml',
+        'report/hr_expense_report_view.xml',
+        'board_hr_expense_view.xml',
+        'board_hr_expense_manager_view.xml',
+        'hr_expense_installer_view.xml',
     ],
-    'demo_xml': ['hr_expense_demo.xml',
-#                'hr.expense.expense.csv'
-                ],
-    'test': ['test/test_hr_expense.yml'],            
+    'demo_xml': [
+        'hr_expense_demo.xml',
+        ],
+    'test': [
+             'test/expense_demo.yml',
+             'test/expense_process.yml',
+             ],
     'installable': True,
     'active': False,
     'certificate': '0062479841789',
+    'application': True,
 }
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: