2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
{
|
|
|
|
'name': 'City Addresses',
|
|
|
|
'summary': 'Add a many2one field city on addresses',
|
|
|
|
'sequence': '19',
|
|
|
|
'category': 'Base',
|
|
|
|
'complexity': 'easy',
|
|
|
|
'description': """
|
|
|
|
City Management in Addresses
|
|
|
|
============================
|
|
|
|
|
|
|
|
This module allows to enforce users to choose the city of a partner inside a given list instead of a free text field.
|
|
|
|
""",
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'views/res_city_view.xml',
|
|
|
|
'views/res_country_view.xml',
|
|
|
|
],
|
|
|
|
'depends': ['base'],
|
|
|
|
}
|