~openerp-chilean-team/openerp-chile/trunk

« back to all changes in this revision

Viewing changes to l10n_cl_cities/__terp__.py

  • Committer: Juan Pizarro
  • Date: 2011-09-14 19:28:32 UTC
  • Revision ID: jpizarrom@gmail.com-20110914192832-swmnd4mn3obt9x38
add cities and states of Chile modules

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) 2011 doingIT Ltda. (http://doingit.cl) All Rights Reserved.
 
6
#                       Juan Pizarro <contacto@doingit.cl>
 
7
#
 
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' : 'Cities of Chile',
 
27
    'version' : '0.1',
 
28
    'author' : 'doingIT Ltda.',
 
29
    'category' : 'Localisation/America',
 
30
    "description": """
 
31
Este módulo esta basado en l10n_ve_cities:
 
32
  * Agrega las comunas de Chile
 
33
    """,
 
34
    'depends' : ['base','l10n_cl_states'],
 
35
    'init_xml' : [],
 
36
    'demo_xml' : [],
 
37
    'update_xml' : [
 
38
        'l10n_cities_cl_view.xml', 
 
39
        'l10n_cities_cl_data.xml',
 
40
        'country_view.xml',
 
41
        'partner_view.xml'
 
42
    ],
 
43
    'installable' : True,
 
44
    'active' : False,
 
45
}
 
46