~lambdasoftware/openerp-spain/7.0

« back to all changes in this revision

Viewing changes to extra_addons/stock_valued/__terp__.py

  • Committer: Borja L.S.
  • Date: 2010-10-18 10:04:25 UTC
  • Revision ID: borjals@pexego.es-20101018100425-w1oxyw3qqkv3s90o
[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) 2008 ACYSOS S.L. (http://acysos.com) All Rights Reserved.
6
 
#                       Pedro Tarrafeta <pedro@acysos.com>
7
 
#    Copyright (c) 2008 Pablo Rocandio. All Rights Reserved.
8
 
#    $Id$
9
 
#
10
 
#    This program is free software: you can redistribute it and/or modify
11
 
#    it under the terms of the GNU General Public License as published by
12
 
#    the Free Software Foundation, either version 3 of the License, or
13
 
#    (at your option) any later version.
14
 
#
15
 
#    This program is distributed in the hope that it will be useful,
16
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
#    GNU General Public License for more details.
19
 
#
20
 
#    You should have received a copy of the GNU General Public License
21
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 
#
23
 
##############################################################################
24
 
 
25
 
{
26
 
    "name" : "Stock valued",
27
 
    "version" : "0.3",
28
 
    "author" : "Pablo Rocandio y ACYSOS, S.L.",
29
 
    "category": "Generic Modules/Inventory Control",
30
 
    "description": """Albaranes valorados
31
 
    """,
32
 
    "license" : "GPL-3",
33
 
    "depends" : ["base", "account", "stock", "sale"],
34
 
    "init_xml" : [],
35
 
    "update_xml" : [
36
 
        'stock_valued_view.xml',
37
 
        'stock_valued_report.xml',
38
 
                   ],
39
 
    "active": False,
40
 
    "installable": True
41
 
}
42
 
 
43
 
 
44
 
 
45