Commit 42be5903 authored by zhengyi's avatar zhengyi

跟进客服因为查询条件为空不执行,这里对没有对应客户经理的跟进客服,进行非空参数添加(给-1参数),以保证不能获取数据的查询条件执行

Signed-off-by: default avatarzhengyi <landuo321@aliyun.com>
parent ee49523c
......@@ -78,7 +78,7 @@ public class OrderExceptionController {
if(CollectionUtil.isEmpty(serviceIdList)){
serviceIdList = new ArrayList<>();
// 避免因为查询条件为空不执行,这里对没有对应客户经理的跟进客服,进行非空参数添加,以保证不能获取数据的查询条件执行
serviceIdList.add("0");
serviceIdList.add("-1");
}
List<String> customerServiceList = query.getCustomerIds();
if (null == customerServiceList) {
......
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