~openerp-spain-team/openerp-spain/6.0-git

« back to all changes in this revision

Viewing changes to l10n_es_extras/l10n_ES_extractos_bancarios/__terp__.py

  • Committer: Borja L.S.
  • Date: 2010-10-18 10:04:25 UTC
  • Revision ID: git-v1:271c47a993616dbba60585d48b8b98d603199d93
[REF] *: Refactorización para portar a 6.0 - Paso 1.

- Se han renombrado los módulos para usar la nomenclatura propuesta
  por OpenERP: l10n_es para el módulo base de localización (plan de 
  cuentas), l10n_es_* para el resto de módulos.

- Se eliminan los módulos extra_addons/* que deberían moverse a 
  los extra-addons genéricos (no son específicos de España).

- Se renombran los __terp__.py por __openerp__.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- encoding: utf-8 -*-
2
 
##############################################################################
3
 
#
4
 
#    OpenERP, Open Source Management Solution
5
 
#    Copyright (c) 2009 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
6
 
#                       Jordi Esteve <jesteve@zikzakmedia.com>
7
 
#    Copyright (c) 2010 Pexego Sistemas Informáticos. All Rights Reserved
8
 
#                       Borja López Soilán <borjals@pexego.es>
9
 
#    $Id$
10
 
#
11
 
#    This program is free software: you can redistribute it and/or modify
12
 
#    it under the terms of the GNU General Public License as published by
13
 
#    the Free Software Foundation, either version 3 of the License, or
14
 
#    (at your option) any later version.
15
 
#
16
 
#    This program is distributed in the hope that it will be useful,
17
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 
#    GNU General Public License for more details.
20
 
#
21
 
#    You should have received a copy of the GNU General Public License
22
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
23
 
#
24
 
##############################################################################
25
 
 
26
 
{
27
 
    "name" : "Spanish Bank Statements Importation",
28
 
    "version" : "1.0",
29
 
    "author" : "Zikzakmedia, Pexego",
30
 
    "category" : "Localisation/Accounting",
31
 
    "description" : """Module for the importation of Spanish bank statements following the C43 normative of the 'Asociación Española de la Banca'.
32
 
    
33
 
    Adds a wizard to the bank statements to perform the importation. The imported file gets attached to the given bank statement.
34
 
    It allows to define default accounting codes for the concepts defined in the C43 bank statement file.
35
 
 
36
 
    The search of the entries to reconcile (and partner) is done like this:
37
 
        1) Unreconciled entries with the given reference and amount. The reference is taken from the 'conceptos' or 'referencia2' fields of the statement.
38
 
        2) Unreconciled entries with (a partner with) the given VAT number and amount.
39
 
           These fields are tested to find a valid spanish VAT:
40
 
              - First 9 characters of 'referencia1' (Banc Sabadell)
41
 
              - First 9 characters of 'conceptos' (La Caixa)
42
 
              - Characters [21:30] of 'conceptos' (Caja Rural del Jalón)
43
 
        3) Unreconciled entries with the given amount.
44
 
 
45
 
    If no partner is found, the default account defined for the concept is used.
46
 
 
47
 
    The module also adds a wizard in Financial Management/Configuration/C43 bank statements to import the default statement concepts, that must be run after creating the spanish chart of accounts (l10n_chart_ES module).
48
 
    """,
49
 
    "website" : "www.zikzakmedia.com",
50
 
    "license" : "GPL-3",
51
 
    "depends" : ["base","account","l10n_chart_ES",],
52
 
    "init_xml" : [],
53
 
    "demo_xml" : [],
54
 
    "update_xml" : [
55
 
        "extractos_view.xml",
56
 
        "extractos_wizard.xml",
57
 
        "security/ir.model.access.csv",
58
 
        ],
59
 
    "installable" : True,
60
 
    "active" : False,
61
 
}