mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-16 19:12:04 +00:00
14a109dc87
[ADD] l10n_ch_zip [ADD] l10n_ch_bank_statement_import_postfinance
28 lines
974 B
Python
28 lines
974 B
Python
# Copyright 2011-2019 Camptocamp SA
|
|
# 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',
|
|
'version': '2.0.1.0.0',
|
|
'author': '''
|
|
Camptocamp,
|
|
brain-tec AG,
|
|
copadoMEDIA UG,
|
|
Odoo Community Association (OCA)
|
|
, 2BIT GmbH''',
|
|
'category': 'Localisation',
|
|
'website': 'https://gitlab.com/flectra-community/flectra',
|
|
'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',
|
|
'application': True,
|
|
}
|