|
|
|
@ -6,6 +6,7 @@ import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.ConstantStatus;
|
|
|
|
|
import com.glxp.api.constant.ConstantType;
|
|
|
|
|
import com.glxp.api.entity.basic.BasicBussinessTypeEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiEntity;
|
|
|
|
|
import com.glxp.api.entity.inout.*;
|
|
|
|
|
import com.glxp.api.entity.inv.InvPreinDetailEntity;
|
|
|
|
|
import com.glxp.api.res.inout.IoOrderCheckResultResponse;
|
|
|
|
@ -16,6 +17,7 @@ import com.glxp.api.service.inv.InvPreinDetailService;
|
|
|
|
|
import com.glxp.api.service.inv.InvPreinOrderService;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
@ -156,6 +158,49 @@ public class IoCheckInoutService {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
IoCodeLostService codeLostService;
|
|
|
|
|
|
|
|
|
|
@Async
|
|
|
|
|
public void genLostCode(String orderId) {
|
|
|
|
|
List<IoCodeEntity> ioCodeEntities = codeService.findByOrderId(orderId);
|
|
|
|
|
for (IoCodeEntity codeEntity : ioCodeEntities) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(codeEntity.getCode());
|
|
|
|
|
|
|
|
|
|
IoCodeLostEntity codeLostEntity = codeLostService.findByCode(codeEntity.getCode());
|
|
|
|
|
if (codeLostEntity == null)
|
|
|
|
|
codeLostEntity = new IoCodeLostEntity();
|
|
|
|
|
|
|
|
|
|
//校验是否写入缺失表
|
|
|
|
|
boolean isTrue = false;
|
|
|
|
|
if (udiEntity != null) {
|
|
|
|
|
if (!StrUtil.trimToEmpty(codeEntity.getBatchNo()).equals(StrUtil.trimToEmpty(udiEntity.getBatchNo()))) {
|
|
|
|
|
if (StrUtil.isNotEmpty(codeEntity.getBatchNo())) {
|
|
|
|
|
codeLostEntity.setBatchNo(codeEntity.getBatchNo());
|
|
|
|
|
isTrue = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.trimToEmpty(codeEntity.getProduceDate()).equals(StrUtil.trimToEmpty(udiEntity.getProduceDate()))) {
|
|
|
|
|
if (StrUtil.isNotEmpty(codeEntity.getProduceDate())) {
|
|
|
|
|
codeLostEntity.setProduceDate(codeEntity.getProduceDate());
|
|
|
|
|
isTrue = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!StrUtil.trimToEmpty(codeEntity.getExpireDate()).equals(StrUtil.trimToEmpty(udiEntity.getExpireDate()))) {
|
|
|
|
|
if (StrUtil.isNotEmpty(codeEntity.getExpireDate())) {
|
|
|
|
|
codeLostEntity.setExpireDate(codeEntity.getExpireDate());
|
|
|
|
|
isTrue = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (isTrue)
|
|
|
|
|
codeLostService.insertOrUpdate(codeLostEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String checkCode(IoCodeTempEntity codeEntity) {
|
|
|
|
|
|
|
|
|
|
boolean isBillExit = orderDetailBizService.isExit(codeEntity.getOrderId());
|
|
|
|
@ -229,6 +274,7 @@ public class IoCheckInoutService {
|
|
|
|
|
orderEntity.setDealStatus(ConstantStatus.ORDER_DEAL_POST);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
genLostCode(orderEntity.getBillNo());
|
|
|
|
|
checkThird(orderEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -333,7 +379,11 @@ public class IoCheckInoutService {
|
|
|
|
|
orderEntity.setDealStatus(ConstantStatus.ORDER_DEAL_POST);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
//生成缺失码
|
|
|
|
|
genLostCode(orderEntity.getBillNo());
|
|
|
|
|
checkThird(orderEntity);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|