|
@@ -1383,6 +1383,9 @@ public class CustomerApiController {
|
|
|
|
|
|
|
|
|
String salecom = source.getString("salecom");
|
|
|
+ if (salecom == null) {
|
|
|
+ salecom = "";
|
|
|
+ }
|
|
|
String[] salecoms = salecom.split(",");
|
|
|
Arrays.sort(salecoms);
|
|
|
Map<String, Object> sourceMap = JSON.parseObject(jsonObject.getString("_source"), Map.class);
|
|
@@ -1393,6 +1396,9 @@ public class CustomerApiController {
|
|
|
|
|
|
mpInfo.putAll(getPublicLabels(sourceMap));
|
|
|
mpInfo.putAll(getSalecomLabels(source.getString("scustid"), deptCode));
|
|
|
+ } else {
|
|
|
+
|
|
|
+ logger.info(String.format("登录渠道和客户所属渠道不匹配,不返回渠道标签,登录渠道 [%s],客户所属渠道 [%s]", deptCode, salecom));
|
|
|
}
|
|
|
|
|
|
if(mpInfo.containsKey("birthday")){
|