|
@@ -1056,7 +1056,9 @@ public class OrderProjectServiceImpl extends BaseMybatisDao<TOrderTaskMapper> im
|
|
|
if (in.getOrderNo()!=null) map.put("orderNo", in.getOrderNo());
|
|
if (in.getOrderNo()!=null) map.put("orderNo", in.getOrderNo());
|
|
|
if (in.getContractNo()!=null) map.put("contartNo", in.getContractNo());
|
|
if (in.getContractNo()!=null) map.put("contartNo", in.getContractNo());
|
|
|
if (in.getPname()!=null) map.put("pname", in.getPname());
|
|
if (in.getPname()!=null) map.put("pname", in.getPname());
|
|
|
- if (in.getDepId()!=null) map.put("depId", in.getDepId());
|
|
|
|
|
|
|
+ if (in.getDeps()!=null) {
|
|
|
|
|
+ map.put("deps", departmentService.parseArray(in.getDeps()));
|
|
|
|
|
+ }
|
|
|
map.put("aid", TokenManager.getAdminId());
|
|
map.put("aid", TokenManager.getAdminId());
|
|
|
return (Pagination<OutProjectCheck>)findPage("selectProjectCheck", "countProjectCheck", map, in.getPageNo(), in.getPageSize());
|
|
return (Pagination<OutProjectCheck>)findPage("selectProjectCheck", "countProjectCheck", map, in.getPageNo(), in.getPageSize());
|
|
|
}
|
|
}
|