Browse Source

外包导出异常BUG修复

anderx 8 months ago
parent
commit
c0a58eb31f

+ 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 (StringUtils.isNotBlank(ib.getType())){
+		if (ib.getType()!=null){
 			String[] split = ib.getType().split(",");
 			params.put("type", split);
 		}