|
|
|
@ -148,10 +148,10 @@ public class IoAddInoutService {
|
|
|
|
|
List<IoCodeTempEntity> insertList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
for (int j = 0; j < filterList.size(); j++) {
|
|
|
|
|
IoCodeTempEntity warehouseEntity = filterList.get(j);
|
|
|
|
|
String result = checkOrderRepeatCode(warehouseEntity, filterList);
|
|
|
|
|
IoCodeTempEntity ioCodeTempEntity = filterList.get(j);
|
|
|
|
|
String result = checkOrderRepeatCode(ioCodeTempEntity, filterList);
|
|
|
|
|
if (result == null) {
|
|
|
|
|
insertList.add(warehouseEntity);
|
|
|
|
|
insertList.add(ioCodeTempEntity);
|
|
|
|
|
} else {
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATS_ERROR);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
@ -162,7 +162,7 @@ public class IoAddInoutService {
|
|
|
|
|
|
|
|
|
|
if (bussinessTypeEntity.isCodeFillCheck()) {
|
|
|
|
|
//三期校验
|
|
|
|
|
String checkOriginMsg = checkOriginCode(warehouseEntity);
|
|
|
|
|
String checkOriginMsg = checkOriginCode(ioCodeTempEntity);
|
|
|
|
|
if (StrUtil.isNotEmpty(checkOriginMsg)) {
|
|
|
|
|
orderEntity.setErrMsg(checkOriginMsg);
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATS_ERROR);
|
|
|
|
@ -175,48 +175,48 @@ public class IoAddInoutService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//产品是否已维护已关联
|
|
|
|
|
if ((warehouseEntity.getRelId() == null)) {
|
|
|
|
|
if ((ioCodeTempEntity.getRelId() == null)) {
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATS_ERROR);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + warehouseEntity.getCode() + "上传时对照数据丢失,请选择对!");
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + ioCodeTempEntity.getCode() + "上传时对照数据丢失,请选择对!");
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//产品是否指定供应商
|
|
|
|
|
if (StrUtil.isEmpty(warehouseEntity.getSupId())) {
|
|
|
|
|
if (StrUtil.isEmpty(ioCodeTempEntity.getSupId())) {
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATS_ERROR);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + warehouseEntity.getCode() + "未指定供应商!");
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + ioCodeTempEntity.getCode() + "未指定供应商!");
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//校验是否是当前供应商
|
|
|
|
|
if (bussinessTypeEntity.getCorpType() == ConstantStatus.CORP_TYPE_OUT) {
|
|
|
|
|
UdiRlSupEntity udiRlSupEntity = udiRlSupService.findByUdiRlIdUnitFk(warehouseEntity.getRelId() + "", orderEntity.getFromCorp());
|
|
|
|
|
UdiRlSupEntity udiRlSupEntity = udiRlSupService.findByUdiRlIdUnitFk(ioCodeTempEntity.getRelId() + "", orderEntity.getFromCorp());
|
|
|
|
|
if (udiRlSupEntity == null) {
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATS_ERROR);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + warehouseEntity.getCode() + "当前供应商不存在此配送产品");
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + ioCodeTempEntity.getCode() + "当前供应商不存在此配送产品");
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//产品是否可以以使用单元入库
|
|
|
|
|
UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectGroupById(warehouseEntity.getRelId());
|
|
|
|
|
UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectGroupById(ioCodeTempEntity.getRelId());
|
|
|
|
|
if (udiRelevanceResponse == null) {
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATS_ERROR);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + warehouseEntity.getCode() + "该产品信息未维护");
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + ioCodeTempEntity.getCode() + "该产品信息未维护");
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
return;
|
|
|
|
|
} else if (!udiRelevanceResponse.getUseDy() && udiRelevanceResponse.getDiType() == ConstantStatus.DITYPE_SYDY) {
|
|
|
|
|
|
|
|
|
|
orderEntity.setStatus(ConstantStatus.ORDER_STATS_ERROR);
|
|
|
|
|
orderEntity.setUpdateTime(new Date());
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + warehouseEntity.getCode() + "该产品不允许以使用单元入库");
|
|
|
|
|
orderEntity.setErrMsg("udi码:" + ioCodeTempEntity.getCode() + "该产品不允许以使用单元入库");
|
|
|
|
|
orderService.update(orderEntity);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|