mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
23 lines
537 B
Python
23 lines
537 B
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# OpenERP, Open Source Management Solution
|
|
#
|
|
#
|
|
##############################################################################
|
|
|
|
from odoo import models, fields, api,_
|
|
from odoo.exceptions import ValidationError
|
|
|
|
class res_partner(models.Model):
|
|
_inherit='res.partner'
|
|
|
|
city_id = fields.Many2one('city.city',string="City")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|