~sergio-incaser/openerp-spain/openerp-spain

« back to all changes in this revision

Viewing changes to extra_addons/stock_valued/__terp__.py

  • Committer: Jordi Esteve
  • Date: 2009-12-14 17:53:50 UTC
  • mfrom: (81.1.90 lp-openerp-spain-5.0)
  • Revision ID: jesteve@zikzakmedia.com-20091214175350-6vzzt3avtsof25a2
Recuperación del estado actual del repositorio de localización española de OpenERP: Aplicación de todos los merges pendientes desde la versión 81 (15-11-2008) hasta la actual (02-12-2009)

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
 
1
25
{
2
26
    "name" : "Stock valued",
3
27
    "version" : "0.3",
4
28
    "author" : "Pablo Rocandio y ACYSOS, S.L.",
 
29
    "category": "Generic Modules/Inventory Control",
5
30
    "description": """Albaranes valorados
6
31
    """,
 
32
    "license" : "GPL-3",
7
33
    "depends" : ["base", "account", "stock", "sale"],
8
34
    "init_xml" : [],
9
35
    "update_xml" : [
10
36
        'stock_valued_view.xml',
11
37
        'stock_valued_report.xml',
12
38
                   ],
 
39
    "active": False,
13
40
    "installable": True
14
41
}
15
42