Przeglądaj źródła

部门搜索修改

anderx 3 lat temu
rodzic
commit
646c801061

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

@@ -638,7 +638,9 @@ public class OrderNewServiceImpl extends BaseMybatisDao<TOrderNewMapper> impleme
 				departmentList=departmentService.selectMyDeps();
 			}
 		}
-		if (!in.getDeps().isEmpty())params.put("deps",in.getDeps());
+		if (in.getDeps()!=null) {
+			params.put("deps",departmentList);
+		}
 		if (StringUtils.isNotBlank(in.getContractNo())) {
 			params.put("contractNo", in.getContractNo());
 		}