flectra/addons/base_address_city/__manifest__.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

22 lines
634 B
Python

# -*- 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': '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'],
}