summaryrefslogtreecommitdiff
path: root/addons/base_address_city/__manifest__.py
blob: 261b69917a1e4053220acbb66e11354fb04108ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
    'name': 'City Addresses',
    'summary': 'Add a many2one field city on addresses',
    'sequence': '19',
    'category': 'Hidden/Tools',
    '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'],
    'license': 'LGPL-3',
}