|
|
|
@ -50,9 +50,9 @@ public class InoutUtils {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public UdiInfoEntity getUdiInfo(UdiInfoService udiInfoService, UdiRelevanceService udiRelevanceService, String code, UdiDlHttpClient udiDlHttpClient) {
|
|
|
|
|
public UdiInfoEntity getUdiInfo(UdiInfoService udiInfoService, UdiRelevanceService udiRelevanceService, WarehouseEntity warehouseEntity, UdiDlHttpClient udiDlHttpClient) {
|
|
|
|
|
String prefix;
|
|
|
|
|
prefix = FilterUdiUtils.getDiStr(code);
|
|
|
|
|
prefix = FilterUdiUtils.getDiStr(warehouseEntity.getCode());
|
|
|
|
|
UdiInfoEntity udiInfoEntity = udiInfoService.findByNameCode(prefix);
|
|
|
|
|
if (udiInfoEntity == null) {
|
|
|
|
|
List<UdiInfoEntity> froms = udiDlHttpClient.getUdiByDi(prefix);
|
|
|
|
@ -73,15 +73,19 @@ public class InoutUtils {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
udiInfoEntity.setCode(code);
|
|
|
|
|
udiInfoEntity = FilterUdiUtils.transUdi(udiInfoEntity);
|
|
|
|
|
udiInfoEntity.setCode(warehouseEntity.getCode());
|
|
|
|
|
udiInfoEntity.setBatchNo(warehouseEntity.getBatchNo());
|
|
|
|
|
udiInfoEntity.setProduceDate(warehouseEntity.getProduceDate());
|
|
|
|
|
udiInfoEntity.setExpireDate(warehouseEntity.getExpireDate());
|
|
|
|
|
udiInfoEntity.setSerialNo(warehouseEntity.getSerialNo());
|
|
|
|
|
udiInfoEntity.setUdi(warehouseEntity.getNameCode());
|
|
|
|
|
return udiInfoEntity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public UdiInfoEntity getUdiInfoByRlId(UdiInfoService udiInfoService, UdiRelevanceService udiRelevanceService, String code) {
|
|
|
|
|
public UdiInfoEntity getUdiInfoByRlId(UdiInfoService udiInfoService, UdiRelevanceService udiRelevanceService, WarehouseEntity warehouseEntity) {
|
|
|
|
|
String prefix;
|
|
|
|
|
prefix = FilterUdiUtils.getDiStr(code);
|
|
|
|
|
prefix = FilterUdiUtils.getDiStr(warehouseEntity.getCode());
|
|
|
|
|
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
|
|
|
|
|
|
|
|
|
UdiRelevanceResponse udiRelevanceResponse = udiRelevanceService.selectByNameCode(prefix);
|
|
|
|
@ -91,16 +95,21 @@ public class InoutUtils {
|
|
|
|
|
udiRelevanceResponse = udiRelevanceResponses.get(0);
|
|
|
|
|
}
|
|
|
|
|
if (udiRelevanceResponse == null) {
|
|
|
|
|
udiInfoEntity = getUdiInfo(udiInfoService, udiRelevanceService, code, udiDlHttpClient);
|
|
|
|
|
udiInfoEntity = getUdiInfo(udiInfoService, udiRelevanceService, warehouseEntity, udiDlHttpClient);
|
|
|
|
|
} else {
|
|
|
|
|
BeanUtils.copyProperties(udiRelevanceResponse, udiInfoEntity);
|
|
|
|
|
udiInfoEntity.setRelId(udiRelevanceResponse.getId() + "");
|
|
|
|
|
udiInfoEntity.setCode(code);
|
|
|
|
|
udiInfoEntity = FilterUdiUtils.transUdi(udiInfoEntity);
|
|
|
|
|
udiInfoEntity.setCode(warehouseEntity.getCode());
|
|
|
|
|
// udiInfoEntity = FilterUdiUtils.transUdi(udiInfoEntity);
|
|
|
|
|
udiInfoEntity.setNameCode(udiRelevanceResponse.getNameCode());
|
|
|
|
|
udiInfoEntity.setCode(warehouseEntity.getCode());
|
|
|
|
|
udiInfoEntity.setBatchNo(warehouseEntity.getBatchNo());
|
|
|
|
|
udiInfoEntity.setProduceDate(warehouseEntity.getProduceDate());
|
|
|
|
|
udiInfoEntity.setExpireDate(warehouseEntity.getExpireDate());
|
|
|
|
|
udiInfoEntity.setSerialNo(warehouseEntity.getSerialNo());
|
|
|
|
|
udiInfoEntity.setUdi(warehouseEntity.getNameCode());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
udiInfoEntity.setCode(code);
|
|
|
|
|
udiInfoEntity.setCode(warehouseEntity.getCode());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return udiInfoEntity;
|
|
|
|
@ -114,7 +123,7 @@ public class InoutUtils {
|
|
|
|
|
List<UdiInfoEntity> udiInfoEntities = new ArrayList<>();
|
|
|
|
|
for (WarehouseEntity warehouseEntity : warehouseEntityList) {
|
|
|
|
|
UdiInfoEntity udiInfoEntity = null;
|
|
|
|
|
udiInfoEntity = getUdiInfoByRlId(udiInfoService, udiRelevanceService, warehouseEntity.getCode());
|
|
|
|
|
udiInfoEntity = getUdiInfoByRlId(udiInfoService, udiRelevanceService, warehouseEntity);
|
|
|
|
|
if (udiInfoEntity != null) {
|
|
|
|
|
udiInfoEntity.setCount(getActCount(warehouseEntity, udiRelevanceService) * warehouseEntity.getCount());
|
|
|
|
|
udiInfoEntity.setRelId(warehouseEntity.getRelId());
|
|
|
|
|