Commit e92983ac by guos

会员标签4.0

parent 999b77e4
......@@ -211,7 +211,7 @@ public class TagValueParser {
String val=conditionValDTO.getVal();
Map<String,List<String>> storeMap = JSONObject.parseObject(val,HashMap.class);
for(List<String>lts:storeMap.values()){
lts.forEach(store->storeList.add(store));
storeList.addAll(lts);
}
}else if(Pattern.compile("timeRange").matcher(conditionValDTO.getKey()).find()){
......@@ -570,7 +570,12 @@ public class TagValueParser {
switch (keys[1].replaceAll("\\.","")){
case TagConstant.TAG_STATISTICS_CHANNEL:
request.setStatisticsType(StatisticsType.CHANNEL);
request.setStatisticsValList(Arrays.asList(vals));
List<String> storeList=new ArrayList();
Map<String,List<String>> storeMap = JSONObject.parseObject(val,HashMap.class);
for(List<String>lts:storeMap.values()){
storeList.addAll(lts);
}
request.setStatisticsValList(storeList);
break;
case TagConstant.TAG_STATISTICS_COMMODITY_BRAND:
request.setStatisticsType(StatisticsType.COMMODITYBRAND);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment