|
@@ -60,7 +60,6 @@ public class CustomerApiController {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
@GetMapping("/getCustomerList")
|
|
|
@ResponseBody
|
|
|
public AjaxResult getCustomerList(@RequestParam(defaultValue = "1") int pageNum,@RequestParam(defaultValue = "10") int pageSize,
|
|
@@ -327,7 +326,7 @@ public class CustomerApiController {
|
|
|
Long userId = SecurityUtils.getUserId();
|
|
|
SysUser sysUser = userService.selectUserById(userId);
|
|
|
String deptCode = null;
|
|
|
-
|
|
|
+
|
|
|
if (StringUtils.isNotEmpty(sysUser.getDept().getDeptCode()) && ! "0".equals(sysUser.getDept().getDeptCode())) {
|
|
|
deptCode = sysUser.getDept().getDeptCode();
|
|
|
}
|
|
@@ -1435,37 +1434,18 @@ public class CustomerApiController {
|
|
|
private Map<String, Object> getPublicLabels(Map<String, Object> source) {
|
|
|
Map<String, Object> rst = new HashMap<>();
|
|
|
|
|
|
- List<String> publicLabels = new ArrayList<>();
|
|
|
- publicLabels.add("label1");
|
|
|
- publicLabels.add("label2");
|
|
|
- publicLabels.add("label3");
|
|
|
- publicLabels.add("label4");
|
|
|
- publicLabels.add("label9");
|
|
|
- publicLabels.add("label10");
|
|
|
- publicLabels.add("label21");
|
|
|
- publicLabels.add("Label67");
|
|
|
- publicLabels.add("Label69");
|
|
|
- publicLabels.add("Label70");
|
|
|
- publicLabels.add("Label71");
|
|
|
- publicLabels.add("Label74");
|
|
|
- publicLabels.add("label77");
|
|
|
- publicLabels.add("Label80");
|
|
|
- publicLabels.add("Label96");
|
|
|
- publicLabels.add("Label97");
|
|
|
- publicLabels.add("Label100");
|
|
|
- publicLabels.add("Label101");
|
|
|
- publicLabels.add("Label103");
|
|
|
- publicLabels.add("Label104");
|
|
|
- publicLabels.add("Label105");
|
|
|
- publicLabels.add("Label106");
|
|
|
+ List<String> publicLabels =getpublicLabels();
|
|
|
|
|
|
for (Map.Entry<String, Object> entry : source.entrySet()){
|
|
|
String key = entry.getKey();
|
|
|
logger.info("getPublicLabels------>"+key);
|
|
|
if(key.startsWith("label")){
|
|
|
- if(publicLabels.contains(key.toLowerCase())||publicLabels.contains(StringUtils.capitalize(key))){
|
|
|
+ if(publicLabels.contains(key)){
|
|
|
|
|
|
+ logger.info("以label开头的公共标签------>"+key);
|
|
|
rst.put(key,entry.getValue());
|
|
|
+ }else{
|
|
|
+ logger.info("分渠道标签------>"+key);
|
|
|
}
|
|
|
|
|
|
}else{
|
|
@@ -1491,12 +1471,14 @@ public class CustomerApiController {
|
|
|
JSONObject jsonObject = JSON.parseObject(result);
|
|
|
JSONObject hitsobject = (JSONObject) jsonObject.get("hits");
|
|
|
JSONArray array = JSON.parseArray(hitsobject.get("hits").toString());
|
|
|
+ List<String> publicLabels = getpublicLabels();
|
|
|
for (int i = 0; i <array.size() ; i++) {
|
|
|
JSONObject json = (JSONObject)array.get(i);
|
|
|
Map<String, Object> source = JSON.parseObject(json.getString("_source"), Map.class);
|
|
|
for (Map.Entry<String, Object> entry : source.entrySet()){
|
|
|
String key = entry.getKey();
|
|
|
- if(key.startsWith("label")){
|
|
|
+ if(key.startsWith("label")&&!publicLabels.contains(key)){
|
|
|
+ logger.info("分渠道标签添加--->"+key+"__"+entry.getValue());
|
|
|
rst.put(key, entry.getValue());
|
|
|
}
|
|
|
}
|
|
@@ -1963,4 +1945,32 @@ public class CustomerApiController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ private List<String> getpublicLabels(){
|
|
|
+ List<String> publicLabels = new ArrayList<>();
|
|
|
+ publicLabels.add("label1");
|
|
|
+ publicLabels.add("label2");
|
|
|
+ publicLabels.add("label3");
|
|
|
+ publicLabels.add("label4");
|
|
|
+ publicLabels.add("label9");
|
|
|
+ publicLabels.add("label10");
|
|
|
+ publicLabels.add("label21");
|
|
|
+ publicLabels.add("label67");
|
|
|
+ publicLabels.add("label69");
|
|
|
+ publicLabels.add("label70");
|
|
|
+ publicLabels.add("label71");
|
|
|
+ publicLabels.add("label74");
|
|
|
+ publicLabels.add("label77");
|
|
|
+ publicLabels.add("label80");
|
|
|
+ publicLabels.add("label96");
|
|
|
+ publicLabels.add("label97");
|
|
|
+ publicLabels.add("label100");
|
|
|
+ publicLabels.add("label101");
|
|
|
+ publicLabels.add("label103");
|
|
|
+ publicLabels.add("label104");
|
|
|
+ publicLabels.add("label105");
|
|
|
+ publicLabels.add("label106");
|
|
|
+ return publicLabels;
|
|
|
+ }
|
|
|
+
|
|
|
}
|