From 0c16b28027b6a115909dbc150167b9247c3f16a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= Date: Fri, 10 Dec 2021 16:29:04 +0100 Subject: [PATCH] [FIX] base_location: Since odoo/odoo#81239 it is not necessary to add the zip_id field to _address_fields() TT33047 --- base_location/models/res_partner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_location/models/res_partner.py b/base_location/models/res_partner.py index 4d6506da3..a8512287f 100644 --- a/base_location/models/res_partner.py +++ b/base_location/models/res_partner.py @@ -149,4 +149,4 @@ class ResPartner(models.Model): @api.model def _address_fields(self): - return super()._address_fields() + ["zip_id", "city_id"] + return super()._address_fields() + ["zip_id"]