|
@@ -239,14 +239,13 @@ public class FlowQueryServiceImpl implements FlowQueryService {
|
|
|
.filter(s -> !(s.getNodeStatus().equals(1)))
|
|
|
.collect(Collectors.toMap(GetBoxCodeRes.FlowBean::getAbnormalType, flowBean -> flowBean));
|
|
|
|
|
|
-
|
|
|
FlowStatusEnum flowStatus = MapUtil.isEmpty(abnormalNodeMap) ? FlowStatusEnum.ABNORMAL : FlowStatusEnum.NORMAL;
|
|
|
|
|
|
//查询类型
|
|
|
Integer queryType = req.getQueryType();
|
|
|
- AddFlowQueryRecordReq addReq = new AddFlowQueryRecordReq(flowStatus.getCode(),queryType);
|
|
|
- //addReq.setFlowStatus();
|
|
|
- //addReq.setQueryType();
|
|
|
+ AddFlowQueryRecordReq addReq = new AddFlowQueryRecordReq();
|
|
|
+ addReq.setFlowStatus(flowStatus.getCode());
|
|
|
+ addReq.setQueryType(queryType);
|
|
|
|
|
|
|
|
|
// 箱码 查询类型为箱码时必传
|