From 8c3129cf6128bd8fb247837d877a5f33e9b8c0f8 Mon Sep 17 00:00:00 2001 From: Andreas Osim Date: Wed, 23 May 2018 11:52:40 +0200 Subject: [PATCH] add 'info_uid' for sst_11 (res_partner) --- ext/custom-addons/dp_custom/models/res_partner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/custom-addons/dp_custom/models/res_partner.py b/ext/custom-addons/dp_custom/models/res_partner.py index a3b53bf7..10c4d60f 100644 --- a/ext/custom-addons/dp_custom/models/res_partner.py +++ b/ext/custom-addons/dp_custom/models/res_partner.py @@ -261,7 +261,7 @@ class Partner(models.Model): common_list.extend(['name', 'name2', 'info_kundennr', 'info_uid', 'comment', 'retail_partner_id']) return common_list elif self.env.context.get('sst_11', False): - common_list.extend(['name', 'ref', 'partner_sector_id', 'comment', 'vat', 'property_payment_term_id', + common_list.extend(['name', 'ref', 'partner_sector_id', 'info_uid', 'comment', 'vat', 'property_payment_term_id', 'date_vat_check', 'active', 'property_product_pricelist', 'retail_partner_id', 'is_retailer', 'name2', 'carrier_id', 'collective_bill', 'fiscal_position']) return common_list