~vauxoo/addons-vauxoo/8.0-import_tax_tariff-dev-yani-rev-2

« back to all changes in this revision

Viewing changes to hr_expense_replenishment/__openerp__.py

  • Committer: jose at vauxoo
  • Date: 2013-07-25 20:54:29 UTC
  • mfrom: (543.7.110 vaddons-70)
  • Revision ID: jose@vauxoo.com-20130725205429-tcrhjjc3og02uc0g
 
[MERGE] Merge from 7 Series to add the new features

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# -*- encoding: utf-8 -*-
 
3
###############################################################################
 
4
#    Module Writen to OpenERP, Open Source Management Solution
 
5
#    Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
 
6
#    All Rights Reserved
 
7
############# Credits #########################################################
 
8
#    Coded by: Katherine Zaoral          <kathy@vauxoo.com>
 
9
#    Planified by: Humberto Arocha       <hbto@vauxoo.com>
 
10
#    Audited by: Humberto Arocha         <hbto@vauxoo.com>
 
11
###############################################################################
 
12
#    This program is free software: you can redistribute it and/or modify
 
13
#    it under the terms of the GNU Affero General Public License as published
 
14
#    by the Free Software Foundation, either version 3 of the License, or
 
15
#    (at your option) any later version.
 
16
#
 
17
#    This program is distributed in the hope that it will be useful,
 
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
#    GNU Affero General Public License for more details.
 
21
#
 
22
#    You should have received a copy of the GNU Affero General Public License
 
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
24
###############################################################################
 
25
 
 
26
{
 
27
    "name": "Expenses Replenishment",
 
28
    "version": "0.1",
 
29
    "depends": ["hr_expense","account_invoice_line_currency"],
 
30
    "author": "Vauxoo",
 
31
    "description": """
 
32
Expenses Replenishment
 
33
======================
 
34
This module add the functionality to the HR Expense module to manage deductible
 
35
expenses by using invoices asociated to an expense document. Also make an
 
36
automation of the reconciliation process for the expense and the employee
 
37
payment.
 
38
 
 
39
Dependencies information
 
40
------------------------
 
41
 
 
42
- You can download the *account_invoice_line_currency* module from::
 
43
 
 
44
    bzr branch lp:addons-vauxoo/7.0
 
45
 
 
46
""",
 
47
    "website": "http://openerp.com.ve",
 
48
    "category": "HR Module",
 
49
    "init_xml": [],
 
50
    "demo_xml": [],
 
51
    "update_xml": [
 
52
        "wizard/hr_expense_wizard_view.xml",
 
53
        "view/account_invoice_view.xml",
 
54
        "view/hr_expense_view.xml",
 
55
    ],
 
56
    "active": False,
 
57
    "installable": True,
 
58
}