diff --git a/ext/custom-addons/dp_custom/models/res_partner.py b/ext/custom-addons/dp_custom/models/res_partner.py index 9d8a3c9b..c6501514 100644 --- a/ext/custom-addons/dp_custom/models/res_partner.py +++ b/ext/custom-addons/dp_custom/models/res_partner.py @@ -354,7 +354,7 @@ class Partner(models.Model): return common_list elif self.env.context.get('delivery_partner', False): common_list = ['firstname', 'lastname', 'midname', 'street', 'street2', 'zip', 'city', 'country_id', 'fax', - 'phone', 'mobile', 'email', 'portal_id'] + 'phone', 'mobile', 'email', 'portal_id', 'property_product_pricelist'] return common_list else: return super(Partner, self)._get_specified_fields()