|
|
|
@ -110,61 +110,11 @@ public class DeviceReceiveOrderDetailServiceImpl implements DeviceReceiveOrderDe
|
|
|
|
|
//通过选库存添加
|
|
|
|
|
//查询选中的库存信息
|
|
|
|
|
for (String invProductId : addDetailRequest.getInvProductIds()) {
|
|
|
|
|
InvProductEntity invProductEntity = invProductDao.selectById(invProductId);
|
|
|
|
|
//查询库存详情
|
|
|
|
|
FilterInvProductDetailRequest filterInvProductDetailRequest = new FilterInvProductDetailRequest();
|
|
|
|
|
filterInvProductDetailRequest.setRelId(String.valueOf(invProductEntity.getRelIdFk()));
|
|
|
|
|
filterInvProductDetailRequest.setBatchNo(invProductEntity.getBatchNo());
|
|
|
|
|
filterInvProductDetailRequest.setDeptCode(invProductEntity.getDeptCode());
|
|
|
|
|
filterInvProductDetailRequest.setInvCode(invProductEntity.getInvCode());
|
|
|
|
|
filterInvProductDetailRequest.setInvSpaceCode(addDetailRequest.getInvSpaceCode());
|
|
|
|
|
filterInvProductDetailRequest.setSupId(addDetailRequest.getSupId());
|
|
|
|
|
List<InvProductDetailEntity> invProductDetailEntities = invProductDetailDao.filterInvProductDetailList(filterInvProductDetailRequest);
|
|
|
|
|
//计算出在仓库中的设备
|
|
|
|
|
//提取库存详情中不同的码
|
|
|
|
|
List<String> codesList = invProductDetailEntities.stream().map(InvProductDetailEntity::getCode).distinct().collect(Collectors.toList());
|
|
|
|
|
//初始化所有码数量集合
|
|
|
|
|
Map<String, Integer> codeMap = new HashMap<>(codesList.size());
|
|
|
|
|
codesList.forEach(code -> codeMap.put(code, 0));
|
|
|
|
|
//计算库存详情中的码明细,得出所有存在于库存中的码
|
|
|
|
|
for (InvProductDetailEntity invProductDetailEntity : invProductDetailEntities) {
|
|
|
|
|
Integer count = codeMap.get(invProductDetailEntity.getCode());
|
|
|
|
|
if (invProductDetailEntity.getMainAction().equals(ConstantType.TYPE_PUT)) {
|
|
|
|
|
//入库,数量 +1
|
|
|
|
|
count = count + 1;
|
|
|
|
|
} else {
|
|
|
|
|
//出库, 数量 -1
|
|
|
|
|
count = count - 1;
|
|
|
|
|
}
|
|
|
|
|
codeMap.put(invProductDetailEntity.getCode(), count);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//根据计算得出的,所有存在于库存中的码明细,生成设备领用记录详情
|
|
|
|
|
for (String code : codeMap.keySet()) {
|
|
|
|
|
if (codeMap.get(code) > 0) {
|
|
|
|
|
//查找此条码对应的库存详情数据,根据此库存详情数据,查找仓库货位等信息
|
|
|
|
|
InvProductDetailEntity invProductDetailEntity = new InvProductDetailEntity();
|
|
|
|
|
for (InvProductDetailEntity detailEntity : invProductDetailEntities) {
|
|
|
|
|
if (detailEntity.getCode().equals(code)) {
|
|
|
|
|
invProductDetailEntity = detailEntity;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//此条码存在于库存中,解析条码生成设备领用记录详情
|
|
|
|
|
Integer count = codeMap.get(code);
|
|
|
|
|
if (count > 1) {
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
|
DeviceReceiveOrderDetailEntity orderDetail = getDeviceReceiveOrderDetailEntity(addDetailRequest.getOrderIdFk(), code, invProductDetailEntity);
|
|
|
|
|
//插入设备领用记录详情
|
|
|
|
|
deviceReceiveOrderDetailDao.insert(orderDetail);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
DeviceReceiveOrderDetailEntity orderDetail = getDeviceReceiveOrderDetailEntity(addDetailRequest.getOrderIdFk(), code, invProductDetailEntity);
|
|
|
|
|
deviceReceiveOrderDetailDao.insert(orderDetail);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
InvProductDetailEntity invProductDetailEntities = invProductDetailDao.selectById(Integer.valueOf(invProductId));
|
|
|
|
|
DeviceReceiveOrderDetailEntity orderDetail = getDeviceReceiveOrderDetailEntity(addDetailRequest.getOrderIdFk(), invProductDetailEntities.getCode(), invProductDetailEntities);
|
|
|
|
|
//插入设备领用记录详情
|
|
|
|
|
deviceReceiveOrderDetailDao.insert(orderDetail);
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
for (String invProductId : addDetailRequest.getInvProductIds()) {
|
|
|
|
|