2021-07-22 15:21:38 +00:00
|
|
|
# Copyright 2011-2017 Camptocamp SA
|
2021-07-16 14:21:21 +00:00
|
|
|
# Copyright 2014 Olivier Jossen (brain-tec AG)
|
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
|
|
'name': 'Switzerland - Postal codes (ZIP) list',
|
2021-10-04 10:45:36 +00:00
|
|
|
'version': '2.0.1.0.0',
|
2021-07-16 14:21:21 +00:00
|
|
|
'author': '''
|
|
|
|
Camptocamp,
|
|
|
|
brain-tec AG,
|
|
|
|
copadoMEDIA UG,
|
2021-11-17 13:48:42 +00:00
|
|
|
Odoo Community Association (OCA),
|
|
|
|
2BIT GmbH
|
2021-07-22 15:21:38 +00:00
|
|
|
''',
|
2021-07-16 14:21:21 +00:00
|
|
|
'category': 'Localisation',
|
2021-07-22 15:21:38 +00:00
|
|
|
'website': 'https://gitlab.com/flectra-community/l10n-switzerland',
|
2021-07-16 14:21:21 +00:00
|
|
|
'license': 'AGPL-3',
|
|
|
|
'summary': 'Provides all Swiss postal codes for auto-completion',
|
|
|
|
'depends': [
|
|
|
|
'base',
|
|
|
|
'base_location', # in https://github.com/OCA/partner-contact/
|
|
|
|
'l10n_ch_states', # in https://github.com/OCA/l10n-switzerland/
|
|
|
|
],
|
|
|
|
# We use csv file as xml is too slow
|
|
|
|
# unfortunately it doesn't work with noupdate thus we use a post_init hook
|
|
|
|
# 'init': ['data/res.better.zip.csv'],
|
|
|
|
'post_init_hook': 'post_init',
|
2021-07-22 15:21:38 +00:00
|
|
|
'images': [],
|
|
|
|
'demo': [],
|
|
|
|
'auto_install': False,
|
|
|
|
'installable': True,
|
2021-07-16 14:21:21 +00:00
|
|
|
'application': True,
|
2021-11-17 13:48:42 +00:00
|
|
|
"data": [
|
|
|
|
"views/res_partner_view.xml"
|
|
|
|
]
|
2021-07-16 14:21:21 +00:00
|
|
|
}
|