|
|
|
@ -6,6 +6,7 @@ import com.glxp.api.entity.trace.MqTraceMessage;
|
|
|
|
|
import com.glxp.api.entity.trace.TraceProductDetailEntity;
|
|
|
|
|
import com.glxp.api.entity.trace.TraceRecordLogEntity;
|
|
|
|
|
import com.glxp.api.entity.trace.TraceTaskNoticeEntity;
|
|
|
|
|
import com.glxp.api.req.basic.FilterUdiRelRequest;
|
|
|
|
|
import com.glxp.api.req.trace.TraceRecordRequest;
|
|
|
|
|
import com.glxp.api.res.basic.BasicUdiRelResponse;
|
|
|
|
|
import com.glxp.api.service.basic.BasicUdiProductService;
|
|
|
|
@ -109,21 +110,28 @@ public class UdiTraceService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//1.查询生产订单信息是否已上传
|
|
|
|
|
if (traceProductDetailEntity.getManuStatus() != 3) {
|
|
|
|
|
//生产订单关联关系
|
|
|
|
|
if (traceProductDetailEntity.getManuStatus() == 2) {
|
|
|
|
|
TraceTaskNoticeEntity taskNoticeEntity = traceTaskNoticeService.findTask(1, traceProductDetailEntity.getId());
|
|
|
|
|
if (taskNoticeEntity == null) {
|
|
|
|
|
createTraceNotice(1, traceProductDetailEntity, companyId);
|
|
|
|
|
pushMq(traceProductDetailEntity, companyId);
|
|
|
|
|
} else if (taskNoticeEntity.getStatus() == 4) {
|
|
|
|
|
//任务超时未处理,重新推送消息
|
|
|
|
|
pushMq(traceProductDetailEntity, companyId);
|
|
|
|
|
}
|
|
|
|
|
//生产订单关联关系
|
|
|
|
|
if (traceProductDetailEntity.getManuStatus() == 1) { //生产订单未处理
|
|
|
|
|
createTraceNotice(1, traceProductDetailEntity, companyId);
|
|
|
|
|
pushMq(traceProductDetailEntity, companyId);
|
|
|
|
|
} else if (traceProductDetailEntity.getManuStatus() == 2) { //生产订单处理未完成
|
|
|
|
|
TraceTaskNoticeEntity taskNoticeEntity = traceTaskNoticeService.findTask(1, traceProductDetailEntity.getId());
|
|
|
|
|
if (taskNoticeEntity == null) {
|
|
|
|
|
createTraceNotice(1, traceProductDetailEntity, companyId);
|
|
|
|
|
pushMq(traceProductDetailEntity, companyId);
|
|
|
|
|
} else if (taskNoticeEntity.getStatus() == 4) {
|
|
|
|
|
//任务超时未处理,重新推送消息
|
|
|
|
|
pushMq(traceProductDetailEntity, companyId);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//2.查询出入库单消息是否已经上传
|
|
|
|
|
if (traceProductDetailEntity.getStatus() == 1) { //出入库订单未处理
|
|
|
|
|
createTraceNotice(2, traceProductDetailEntity, companyId);
|
|
|
|
|
pushMq(traceProductDetailEntity, companyId);
|
|
|
|
|
} else if (traceProductDetailEntity.getStatus() == 2) { //出入库订单未处理完成
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -146,8 +154,9 @@ public class UdiTraceService {
|
|
|
|
|
traceTaskNoticeEntity.setExpireDate(traceProductDetailEntity.getExpireDate());
|
|
|
|
|
traceTaskNoticeEntity.setSerialNo(traceProductDetailEntity.getSerialNo());
|
|
|
|
|
traceTaskNoticeEntity.setCreateTime(new Date());
|
|
|
|
|
// List<String> diList = basicUdiRelService.getBaseMapper().findDiList(basicUdiRelResponse.getUuid());
|
|
|
|
|
// traceTaskNoticeEntity.setDiList(diList);
|
|
|
|
|
FilterUdiRelRequest filterUdiRelRequest = new FilterUdiRelRequest();
|
|
|
|
|
List<String> diList = basicUdiRelService.findDiListByProduct(filterUdiRelRequest);
|
|
|
|
|
traceTaskNoticeEntity.setDiList(diList);
|
|
|
|
|
traceTaskNoticeService.save(traceTaskNoticeEntity);
|
|
|
|
|
return traceTaskNoticeEntity;
|
|
|
|
|
}
|
|
|
|
|