Browse Source

BUG修改

anderx 3 years ago
parent
commit
3e62c02873

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

@@ -1084,7 +1084,7 @@ public class OrderProjectServiceImpl extends BaseMybatisDao<TOrderTaskMapper> im
 	private void addParam(InputMemberList in, HashMap<String, Object> map) {
 		if(in.getOrderNo()!=null) map.put("orderNo", in.getOrderNo());
 		if(in.getUserName()!=null) map.put("userName", in.getUserName());
-		if(!in.getDeps().isEmpty()){
+		if(in.getDeps()!=null&&!in.getDeps().isEmpty()){
 			map.put("deps", in.getDeps());
 		}
 		if(in.getContractNo()!=null) map.put("contractNo", in.getContractNo());