|
|
@@ -162,7 +162,7 @@ public class FundManagerOrderServiceImpl extends BaseMybatisDao<TOrderNewMapper>
|
|
|
}
|
|
|
if (order.getOutsource()==null)order.setOutsource(0);//默认非外包
|
|
|
params.put("o", order);
|
|
|
- if (order.getDepartmentId()!=null){
|
|
|
+ if (StringUtils.isNotBlank(order.getDepartmentId())){
|
|
|
params.put("deps", departmentService.getLowerDep(order.getDepartmentId()));
|
|
|
}
|
|
|
Pagination<OrderListBo> data = (Pagination<OrderListBo>)findPage("financeList", "financeCount", params, pageNo, pageSize);
|