blob: a17e1a7008bffb6b6bfefb3f6b0129faef8131d3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Part of Odoo. See LICENSE file for full copyright and licensing details
from odoo import fields, models
class ResPartner(models.Model):
_inherit = 'res.partner'
l10n_pe_district = fields.Many2one(
'l10n_pe.res.city.district', string='District',
help='Districts are part of a province or city.')
|