|
|
|
@ -501,12 +501,16 @@ public class IoAddInoutService {
|
|
|
|
|
|
|
|
|
|
String priceFifo = systemParamConfigService.selectValueByParamKey("price_fifo");
|
|
|
|
|
if (IntUtil.value(priceFifo) > 0 && bussinessTypeEntity.getMainAction().equals(ConstantType.TYPE_OUT)) {
|
|
|
|
|
List<IoCodeTempEntity> resultList = checkPrice(bussinessTypeEntity, BeanUtil.copyToList(pdaPostOrderRequest.getCodeTempEntities(), IoCodeTempEntity.class));
|
|
|
|
|
for (IoCodeTempEntity codeTempEntity : resultList) {
|
|
|
|
|
if (codeTempEntity.getId() == null)
|
|
|
|
|
// return ResultVOUtils.error(500, "价格发生变动!");
|
|
|
|
|
log.error("价格发生变动");
|
|
|
|
|
List<IoCodeTempEntity> codeTempEntities = BeanUtil.copyToList(pdaPostOrderRequest.getCodeTempEntities(), IoCodeTempEntity.class);
|
|
|
|
|
List<IoCodeTempEntity> resultList = new ArrayList<>();
|
|
|
|
|
for (IoCodeTempEntity codeTempEntity : codeTempEntities) {
|
|
|
|
|
resultList = checkPrice(codeTempEntity, bussinessTypeEntity, resultList);
|
|
|
|
|
}
|
|
|
|
|
// for (IoCodeTempEntity codeTempEntity : resultList) {
|
|
|
|
|
// if (codeTempEntity.getId() == null)
|
|
|
|
|
//// return ResultVOUtils.error(500, "价格发生变动!");
|
|
|
|
|
// log.error("价格发生变动");
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -961,135 +965,133 @@ public class IoAddInoutService {
|
|
|
|
|
/**
|
|
|
|
|
* 手持终端上传校验价格
|
|
|
|
|
*/
|
|
|
|
|
public List<IoCodeTempEntity> checkPrice(BasicBussinessTypeEntity bussinessTypeEntity, List<IoCodeTempEntity> codeTempEntities) {
|
|
|
|
|
|
|
|
|
|
Map<String, List<IoCodeTempEntity>> stringListMap = codeTempEntities.stream()
|
|
|
|
|
.collect(Collectors.groupingBy(person -> person.getRelId() + ":" + person.getBatchNo()));
|
|
|
|
|
List<IoCodeTempEntity> resultList = new ArrayList<>();
|
|
|
|
|
for (String key : stringListMap.keySet()) {
|
|
|
|
|
List<IoCodeTempEntity> temps = stringListMap.get(key);
|
|
|
|
|
IoCodeTempEntity codeEntity = temps.get(0);
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = invProductDetailService.selectLastInBatch(bussinessTypeEntity, codeEntity.getRelId() + "", codeEntity.getBatchNo(), codeEntity.getInvCode(), codeEntity.getMainAction());
|
|
|
|
|
Map<String, Integer> lastCountMap = new HashMap<>();
|
|
|
|
|
invProductDetailEntity = invProductDetailService.selectFirstInBatch(bussinessTypeEntity, codeEntity.getRelId() + "", codeEntity.getBatchNo(), codeEntity.getInvCode(), ConstantType.TYPE_PUT);
|
|
|
|
|
for (IoCodeTempEntity codeTempEntity : temps) {
|
|
|
|
|
if (invProductDetailEntity == null) {
|
|
|
|
|
//首次出库,获取入库最早批次
|
|
|
|
|
if (invProductDetailEntity != null) {
|
|
|
|
|
int count = IntUtil.value(invProductDetailEntity.getCount());
|
|
|
|
|
int reCount = IntUtil.value(invProductDetailEntity.getReCount());
|
|
|
|
|
//当数量>0时
|
|
|
|
|
if (reCount >= codeTempEntity.getReCount()) {
|
|
|
|
|
codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
Integer tt = lastCountMap.get(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(tt) + codeTempEntity.getReCount());
|
|
|
|
|
} else {
|
|
|
|
|
while (codeTempEntity.getReCount() - reCount > 0) {
|
|
|
|
|
|
|
|
|
|
IoCodeTempEntity newCodeEntity = new IoCodeTempEntity();
|
|
|
|
|
BeanUtils.copyProperties(codeTempEntity, newCodeEntity);
|
|
|
|
|
newCodeEntity.setId(null);
|
|
|
|
|
newCodeEntity.setCount(count);
|
|
|
|
|
newCodeEntity.setReCount(reCount);
|
|
|
|
|
newCodeEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
newCodeEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo())) + reCount);
|
|
|
|
|
codeTempService.insert(newCodeEntity);
|
|
|
|
|
resultList.add(newCodeEntity);
|
|
|
|
|
|
|
|
|
|
codeTempEntity.setCount(codeTempEntity.getCount() - count);
|
|
|
|
|
codeTempEntity.setReCount(codeTempEntity.getReCount() - reCount);
|
|
|
|
|
codeTempService.updateById(codeTempEntity);
|
|
|
|
|
|
|
|
|
|
invProductDetailEntity = invProductDetailService.selectNextInBatch(bussinessTypeEntity, codeTempEntity.getRelId() + "", codeTempEntity.getBatchNo(), codeTempEntity.getInvCode(), ConstantType.TYPE_PUT, invProductDetailEntity.getInBatchNo());
|
|
|
|
|
|
|
|
|
|
if (invProductDetailEntity != null) {
|
|
|
|
|
count = IntUtil.value(invProductDetailEntity.getCount());
|
|
|
|
|
reCount = IntUtil.value(invProductDetailEntity.getReCount());
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo())) + reCount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//非首次出库
|
|
|
|
|
int lastCount = IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo()));
|
|
|
|
|
//1.获取当前批次已出库数量
|
|
|
|
|
Integer outCount = IntUtil.value(invProductDetailService.selectCountByInBatch(bussinessTypeEntity, invProductDetailEntity.getInBatchNo(), ConstantType.TYPE_OUT));
|
|
|
|
|
//2.获取当前批次入库数量
|
|
|
|
|
Integer inCount = IntUtil.value(invProductDetailService.selectCountByInBatch(bussinessTypeEntity, invProductDetailEntity.getInBatchNo(), ConstantType.TYPE_PUT));
|
|
|
|
|
//3.若数量还有剩,则此次出库为当前批次
|
|
|
|
|
if (IntUtil.value(inCount) >= (IntUtil.value(outCount) + IntUtil.value(lastCount) + codeTempEntity.getReCount())) {
|
|
|
|
|
codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo())) + codeTempEntity.getReCount());
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
// 4.若数量不足,则出下一批次
|
|
|
|
|
// InvProductDetailEntity nextInvProduct = invProductDetailService.selectNextInBatch(codeTempEntity.getRelId() + "", codeTempEntity.getBatchNo(), codeTempEntity.getInvCode(), codeTempEntity.getMainAction(), invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// inCount = nextInvProduct.getReCount();
|
|
|
|
|
int curCount = outCount + lastCount;
|
|
|
|
|
while (curCount >= inCount) {
|
|
|
|
|
invProductDetailEntity = invProductDetailService.selectNextInBatch(bussinessTypeEntity, codeTempEntity.getRelId() + "", codeTempEntity.getBatchNo(), codeTempEntity.getInvCode(), codeTempEntity.getMainAction(), invProductDetailEntity.getInBatchNo());
|
|
|
|
|
if (invProductDetailEntity != null) {
|
|
|
|
|
if (invProductDetailEntity.getReCount() > codeTempEntity.getReCount()) {
|
|
|
|
|
codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
lastCountMap.put(invProductDetailEntity.getInBatchNo(), inCount);
|
|
|
|
|
} else {
|
|
|
|
|
IoCodeTempEntity newCodeEntity = new IoCodeTempEntity();
|
|
|
|
|
BeanUtils.copyProperties(codeTempEntity, newCodeEntity);
|
|
|
|
|
newCodeEntity.setId(null);
|
|
|
|
|
newCodeEntity.setReCount(inCount);
|
|
|
|
|
newCodeEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
newCodeEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
lastCountMap.put(invProductDetailEntity.getInBatchNo(), inCount);
|
|
|
|
|
codeTempService.insert(newCodeEntity);
|
|
|
|
|
resultList.add(newCodeEntity);
|
|
|
|
|
|
|
|
|
|
codeTempEntity.setReCount(curCount - inCount);
|
|
|
|
|
codeTempService.updateById(codeTempEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inCount = IntUtil.value(invProductDetailEntity.getReCount());
|
|
|
|
|
lastCount = IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo()));
|
|
|
|
|
//1.获取当前批次已出库数量
|
|
|
|
|
outCount = IntUtil.value(invProductDetailService.selectCountByInBatch(bussinessTypeEntity, invProductDetailEntity.getInBatchNo(), ConstantType.TYPE_OUT));
|
|
|
|
|
curCount = outCount + lastCount;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (invProductDetailEntity != null) {
|
|
|
|
|
codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
lastCountMap.put(invProductDetailEntity.getInBatchNo(), inCount);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (invProductDetailEntity != null) {
|
|
|
|
|
codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
resultList.add(codeTempEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return resultList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// public List<IoCodeTempEntity> checkPrice(BasicBussinessTypeEntity bussinessTypeEntity, List<IoCodeTempEntity> codeTempEntities) {
|
|
|
|
|
//
|
|
|
|
|
// Map<String, List<IoCodeTempEntity>> stringListMap = codeTempEntities.stream()
|
|
|
|
|
// .collect(Collectors.groupingBy(person -> person.getRelId() + ":" + person.getBatchNo()));
|
|
|
|
|
// List<IoCodeTempEntity> resultList = new ArrayList<>();
|
|
|
|
|
// for (String key : stringListMap.keySet()) {
|
|
|
|
|
// List<IoCodeTempEntity> temps = stringListMap.get(key);
|
|
|
|
|
// IoCodeTempEntity codeEntity = temps.get(0);
|
|
|
|
|
// InvProductDetailEntity invProductDetailEntity = invProductDetailService.selectLastInBatch(bussinessTypeEntity, codeEntity.getRelId() + "", codeEntity.getBatchNo(), codeEntity.getInvCode(), codeEntity.getMainAction());
|
|
|
|
|
// Map<String, Integer> lastCountMap = new HashMap<>();
|
|
|
|
|
// invProductDetailEntity = invProductDetailService.selectFirstInBatch(bussinessTypeEntity, codeEntity.getRelId() + "", codeEntity.getBatchNo(), codeEntity.getInvCode(), ConstantType.TYPE_PUT);
|
|
|
|
|
// for (IoCodeTempEntity codeTempEntity : temps) {
|
|
|
|
|
// if (invProductDetailEntity == null) {
|
|
|
|
|
// //首次出库,获取入库最早批次
|
|
|
|
|
// if (invProductDetailEntity != null) {
|
|
|
|
|
// int count = IntUtil.value(invProductDetailEntity.getCount());
|
|
|
|
|
// int reCount = IntUtil.value(invProductDetailEntity.getReCount());
|
|
|
|
|
// //当数量>0时
|
|
|
|
|
// if (reCount >= codeTempEntity.getReCount()) {
|
|
|
|
|
// codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// Integer tt = lastCountMap.get(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(tt) + codeTempEntity.getReCount());
|
|
|
|
|
// } else {
|
|
|
|
|
// while (codeTempEntity.getReCount() - reCount > 0) {
|
|
|
|
|
//
|
|
|
|
|
// IoCodeTempEntity newCodeEntity = new IoCodeTempEntity();
|
|
|
|
|
// BeanUtils.copyProperties(codeTempEntity, newCodeEntity);
|
|
|
|
|
// newCodeEntity.setId(null);
|
|
|
|
|
// newCodeEntity.setCount(count);
|
|
|
|
|
// newCodeEntity.setReCount(reCount);
|
|
|
|
|
// newCodeEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// newCodeEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo())) + reCount);
|
|
|
|
|
// codeTempService.insert(newCodeEntity);
|
|
|
|
|
// resultList.add(newCodeEntity);
|
|
|
|
|
//
|
|
|
|
|
// codeTempEntity.setCount(codeTempEntity.getCount() - count);
|
|
|
|
|
// codeTempEntity.setReCount(codeTempEntity.getReCount() - reCount);
|
|
|
|
|
// codeTempService.updateById(codeTempEntity);
|
|
|
|
|
//
|
|
|
|
|
// invProductDetailEntity = invProductDetailService.selectNextInBatch(bussinessTypeEntity, codeTempEntity.getRelId() + "", codeTempEntity.getBatchNo(), codeTempEntity.getInvCode(), ConstantType.TYPE_PUT, invProductDetailEntity.getInBatchNo());
|
|
|
|
|
//
|
|
|
|
|
// if (invProductDetailEntity != null) {
|
|
|
|
|
// count = IntUtil.value(invProductDetailEntity.getCount());
|
|
|
|
|
// reCount = IntUtil.value(invProductDetailEntity.getReCount());
|
|
|
|
|
// } else {
|
|
|
|
|
// break;
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo())) + reCount);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
// } else {
|
|
|
|
|
// //非首次出库
|
|
|
|
|
// int lastCount = IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo()));
|
|
|
|
|
// //1.获取当前批次已出库数量
|
|
|
|
|
// Integer outCount = IntUtil.value(invProductDetailService.selectCountByInBatch(bussinessTypeEntity, invProductDetailEntity.getInBatchNo(), ConstantType.TYPE_OUT));
|
|
|
|
|
// //2.获取当前批次入库数量
|
|
|
|
|
// Integer inCount = IntUtil.value(invProductDetailService.selectCountByInBatch(bussinessTypeEntity, invProductDetailEntity.getInBatchNo(), ConstantType.TYPE_PUT));
|
|
|
|
|
// //3.若数量还有剩,则此次出库为当前批次
|
|
|
|
|
// if (IntUtil.value(inCount) >= (IntUtil.value(outCount) + IntUtil.value(lastCount) + codeTempEntity.getReCount())) {
|
|
|
|
|
// codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// lastCountMap.put(invProductDetailEntity.getInBatchNo(), IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo())) + codeTempEntity.getReCount());
|
|
|
|
|
//
|
|
|
|
|
// } else {
|
|
|
|
|
// // 4.若数量不足,则出下一批次
|
|
|
|
|
//// InvProductDetailEntity nextInvProduct = invProductDetailService.selectNextInBatch(codeTempEntity.getRelId() + "", codeTempEntity.getBatchNo(), codeTempEntity.getInvCode(), codeTempEntity.getMainAction(), invProductDetailEntity.getInBatchNo());
|
|
|
|
|
//// inCount = nextInvProduct.getReCount();
|
|
|
|
|
// int curCount = outCount + lastCount;
|
|
|
|
|
// while (curCount >= inCount) {
|
|
|
|
|
// invProductDetailEntity = invProductDetailService.selectNextInBatch(bussinessTypeEntity, codeTempEntity.getRelId() + "", codeTempEntity.getBatchNo(), codeTempEntity.getInvCode(), codeTempEntity.getMainAction(), invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// if (invProductDetailEntity != null) {
|
|
|
|
|
// if (invProductDetailEntity.getReCount() > codeTempEntity.getReCount()) {
|
|
|
|
|
// codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// lastCountMap.put(invProductDetailEntity.getInBatchNo(), inCount);
|
|
|
|
|
// } else {
|
|
|
|
|
// IoCodeTempEntity newCodeEntity = new IoCodeTempEntity();
|
|
|
|
|
// BeanUtils.copyProperties(codeTempEntity, newCodeEntity);
|
|
|
|
|
// newCodeEntity.setId(null);
|
|
|
|
|
// newCodeEntity.setReCount(inCount);
|
|
|
|
|
// newCodeEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// newCodeEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// lastCountMap.put(invProductDetailEntity.getInBatchNo(), inCount);
|
|
|
|
|
// codeTempService.insert(newCodeEntity);
|
|
|
|
|
// resultList.add(newCodeEntity);
|
|
|
|
|
//
|
|
|
|
|
// codeTempEntity.setReCount(curCount - inCount);
|
|
|
|
|
// codeTempService.updateById(codeTempEntity);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// inCount = IntUtil.value(invProductDetailEntity.getReCount());
|
|
|
|
|
// lastCount = IntUtil.value(lastCountMap.get(invProductDetailEntity.getInBatchNo()));
|
|
|
|
|
// //1.获取当前批次已出库数量
|
|
|
|
|
// outCount = IntUtil.value(invProductDetailService.selectCountByInBatch(bussinessTypeEntity, invProductDetailEntity.getInBatchNo(), ConstantType.TYPE_OUT));
|
|
|
|
|
// curCount = outCount + lastCount;
|
|
|
|
|
// } else {
|
|
|
|
|
// break;
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
// if (invProductDetailEntity != null) {
|
|
|
|
|
// codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// lastCountMap.put(invProductDetailEntity.getInBatchNo(), inCount);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// if (invProductDetailEntity != null) {
|
|
|
|
|
// codeTempEntity.setPrice(invProductDetailEntity.getPrice());
|
|
|
|
|
// codeTempEntity.setInBatchNo(invProductDetailEntity.getInBatchNo());
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// resultList.add(codeTempEntity);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// return resultList;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<IoCodeTempEntity> checkPrice(IoCodeTempEntity codeTempEntity, BasicBussinessTypeEntity bussinessTypeEntity, List<IoCodeTempEntity> codeTempEntities) {
|
|
|
|
|