Commit 66a30f6b by wangli

修改

1 parent a771a130
...@@ -67,6 +67,12 @@ public class OrderServiceListServiceImpl implements OrderServiceListService { ...@@ -67,6 +67,12 @@ public class OrderServiceListServiceImpl implements OrderServiceListService {
lqw.ne(OrderRequest::getAppointmentStatus, "NOT_ASSIGNED"); lqw.ne(OrderRequest::getAppointmentStatus, "NOT_ASSIGNED");
} }
if(ListUtils.isNotEmpty(reqDTO.getEngineerCodes())) {
String engineerCodes = String.join(",", reqDTO.getEngineerCodes());
String sql = String.format("select 1 from order_appointment oa where oa.order_id = order_request.order_id and oa.dt = order_request.dt and oa.engineer_code in (%s)", engineerCodes);
lqw.exists(sql);
}
// 查询工单表列表 // 查询工单表列表
orderRequestMPDao.selectPage(pg, lqw); orderRequestMPDao.selectPage(pg, lqw);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!