work on mks

This commit is contained in:
sonal
2020-07-23 17:39:55 +05:30
parent 28a15500f7
commit 6ccb9acd5e
16 changed files with 543 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# -*- 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: