~vauxoo/addons-vauxoo/7.0-add_project_followers_rule-dev-ernesto

« back to all changes in this revision

Viewing changes to bank_iva_report/__openerp__.py

  • Committer: Javier Duran
  • Author(s): javier at vauxoo
  • Date: 2012-01-21 01:20:12 UTC
  • Revision ID: javier@squezee-vir-20120121012012-9jjjvzimqk1p37ga
[ADD] se agrega el modulo bank_iva_report

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: Humberto Arocha           <humberto@openerp.com.ve>
 
9
#              Angelica Barrios          <angélicaisabelb@gmail.com>
 
10
#              María Gabriela Quilarque  <gabrielaquilarque97@gmail.com>
 
11
#              Javier Duran              <javier@vauxoo.com>             
 
12
#    Planified by: Nhomar Hernande
 
13
#    Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
 
14
#    Audited by: Humberto Arocha humberto@openerp.com.ve
 
15
#############################################################################
 
16
#    This program is free software: you can redistribute it and/or modify
 
17
#    it under the terms of the GNU Affero General Public License as published by
 
18
#    the Free Software Foundation, either version 3 of the License, or
 
19
#    (at your option) any later version.
 
20
#
 
21
#    This program is distributed in the hope that it will be useful,
 
22
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
23
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
24
#    GNU Affero General Public License for more details.
 
25
#
 
26
#    You should have received a copy of the GNU Affero General Public License
 
27
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
28
################################################################################
 
29
 
 
30
###  
 
31
### res_company --> account_management ver si se puede eliminar esta dependencia ####
 
32
### retencion_iva, base_vat_ve  ver si se puede eliminar esta dependencia
 
33
 
 
34
{
 
35
    "name" : "Voucher Paid support report",
 
36
    "version" : "0.2",
 
37
    "author" : "Vauxoo",
 
38
    "website" : "http://vauxoo.com",
 
39
    "category": 'Generic Modules/Accounting',
 
40
    "description": """
 
41
        Este modulo agrega al reporte del soporte de pago detallado las retenciones del Impuesto al valor agregado (IVA)
 
42
 
 
43
    """,
 
44
    'init_xml': [],
 
45
    "depends" : ["l10n_ve_withholding_iva", "bank_management"],
 
46
    'update_xml': [
 
47
        'bank_iva_report.xml',
 
48
    ],
 
49
    'demo_xml': [],
 
50
    'test': [],
 
51
    'installable': True,
 
52
    'active': False,
 
53
    'external_dependencies': {},
 
54
}
 
55
 
 
56
 
 
57
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: