You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
566 B
18 lines
566 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2016 Nicolas Bessi, Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
zip_id = fields.Many2one('res.better.zip', 'City/Location')
|
|
|
|
@api.onchange('zip_id')
|
|
def onchange_zip_id(self):
|
|
if self.zip_id:
|
|
self.zip = self.zip_id.name
|
|
self.city = self.zip_id.city
|
|
self.state_id = self.zip_id.state_id
|
|
self.country_id = self.zip_id.country_id
|