浏览代码

Merge branch 'prod' into test

anderx 9 月之前
父节点
当前提交
b4b4973fbb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/goafanti/order/service/impl/OrderProjectServiceImpl.java

+ 1 - 1
src/main/java/com/goafanti/order/service/impl/OrderProjectServiceImpl.java

@@ -488,7 +488,7 @@ public class OrderProjectServiceImpl extends BaseMybatisDao<TOrderTaskMapper> im
 		if (ib.getOutsourceStatus() !=null) params.put("outsourceStatus", ib.getOutsourceStatus());
 		if (ib.getMemberProjectType()!=null) params.put("memberProjectType", ib.getMemberProjectType());
 		if (ib.getCid() !=null) params.put("cid", ib.getCid());
-		if (ib.getType()!=null){
+		if (StringUtils.isNotBlank(ib.getType())){
 			String[] split = ib.getType().split(",");
 			params.put("type", split);
 		}