|
|
|
@ -105,14 +105,7 @@ import com.logpm.distribution.vo.DistributionStockupTrayVO;
|
|
|
|
|
import com.logpm.distribution.vo.DistributionStockupVO; |
|
|
|
|
import com.logpm.distribution.vo.PackageStockupVO; |
|
|
|
|
import com.logpm.distribution.vo.StockListInfoListVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpClientVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpInventoryConfiglVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpInventoryDetailVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpOrderDetailVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpPackageDetailVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpScanDetailVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpVO; |
|
|
|
|
import com.logpm.distribution.vo.app.DistributionAppStockUpZeroOrderDetailVO; |
|
|
|
|
import com.logpm.distribution.vo.app.*; |
|
|
|
|
import com.logpm.distribution.wrapper.DistributionStockupWrapper; |
|
|
|
|
import com.logpm.trunkline.feign.ITrunklinePackageTrackLogClient; |
|
|
|
|
import com.logpm.warehouse.entity.WarehouseGoodsAllocationEntity; |
|
|
|
@ -1985,8 +1978,6 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
return Resp.scanFail(PdaAudioLingoStatus.baojianbucunzai.getName(), PdaAudioLingoStatus.baojianbucunzai.getName()); |
|
|
|
|
} |
|
|
|
|
//查询托盘上面的包件
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<WarehouseTrayGoodsEntity> trayIdList = warehouseTrayGoodsClient.getTrayIdList(stockupDTO.getTrayId(), stockupDTO.getTrayBarCode()); |
|
|
|
|
List<DistributionStockPackageVO> voList = new ArrayList<>(); |
|
|
|
|
List<DistributionStockPackageVO> finalList = list; |
|
|
|
@ -4651,12 +4642,96 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
case 3: |
|
|
|
|
//配送零担备货
|
|
|
|
|
return handleDeliveryZeroStockUp(stockupDTO, myCurrentWarehouse, reservationId, stockupEntity); |
|
|
|
|
case 4: |
|
|
|
|
//配送零担备货
|
|
|
|
|
return handleDeliveryTrayStockUp(stockupDTO, myCurrentWarehouse, reservationId, stockupEntity); |
|
|
|
|
default: |
|
|
|
|
log.error(method + "未知scanType"); |
|
|
|
|
return Resp.scanFail("未知操作类型", "未知操作类型"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private R handleDeliveryTrayStockUp(StockupDTO stockupDTO, BasicdataWarehouseEntity myCurrentWarehouse, Long reservationId, DistributionStockupEntity stockupEntity) { |
|
|
|
|
String method = "#######################DistributionStockupServiceImpl.handleDeliveryTrayStockUp"; |
|
|
|
|
if (Objects.isNull(stockupDTO.getTrayBarCode())){ |
|
|
|
|
log.info(method+"参数缺失>>>>>>>>>>>>>>>>>>stockupDTO.getOrderId()"); |
|
|
|
|
return R.fail("参数缺失,请联系管理员"); |
|
|
|
|
} |
|
|
|
|
if (Objects.isNull(AuthUtil.getUser())){ |
|
|
|
|
log.info(method+"参数缺失>>>>>>>>>>>>>>>>>>AuthUtil.getUser():{}",AuthUtil.getUser()); |
|
|
|
|
return R.fail("请重新登陆后操作"); |
|
|
|
|
} |
|
|
|
|
DistributionReservationEntity reservationEntity = distributionReservationService.getById(reservationId); |
|
|
|
|
if (Objects.isNull(reservationEntity)) { |
|
|
|
|
return Resp.scanFail("当前计划信息错误", "当前计划信息错误"); |
|
|
|
|
} |
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
//校验托盘
|
|
|
|
|
BasicdataTrayEntity trayByTrayCode = basicdataTrayClient.getTrayByTrayCode(stockupDTO.getTrayBarCode()); |
|
|
|
|
if (Objects.isNull(trayByTrayCode)){ |
|
|
|
|
log.info(method+"当前托盘信息不存在>>>>>>>>>>>>>>>>>>当前托盘信息不存在:{}",AuthUtil.getUser()); |
|
|
|
|
return R.fail("当前托盘信息不存在"); |
|
|
|
|
} |
|
|
|
|
//查询当前托盘上货物是否都存在计划内
|
|
|
|
|
List<WarehouseTrayGoodsEntity> trayIdList = warehouseTrayGoodsClient.getTrayIdList(String.valueOf(trayByTrayCode.getId()), trayByTrayCode.getPalletCode()); |
|
|
|
|
if (trayIdList.isEmpty()) { |
|
|
|
|
return R.fail("当前托盘无货物信息"); |
|
|
|
|
} |
|
|
|
|
boolean isAllPackage = trayIdList.stream().allMatch(a -> "3".equals(a.getAssociationType())); |
|
|
|
|
if (!isAllPackage) { |
|
|
|
|
return R.fail("当前托盘存在其他类型货物"); |
|
|
|
|
} |
|
|
|
|
//查询计划包件信息
|
|
|
|
|
List<DistributionParcelListEntity> distributionParcelListEntities = distributionReservationMapper.selectPackageListByReservationId(reservationId); |
|
|
|
|
if (distributionParcelListEntities.isEmpty()) { |
|
|
|
|
log.info(method+"查询预约包件计划信息错误>>>>>>>>>>>>>>>>>>>>>>reservationId:{}",reservationId); |
|
|
|
|
return R.fail("查询计划信息错误"); |
|
|
|
|
} |
|
|
|
|
List<Long> trayPackageIds = trayIdList.stream().map(WarehouseTrayGoodsEntity::getAssociationId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> packageData = distributionParcelListEntities.stream().filter(f -> trayPackageIds.contains(f.getId())).collect(Collectors.toList()); |
|
|
|
|
if (packageData.isEmpty()) { |
|
|
|
|
return R.fail("当前托盘无此客户的货物"); |
|
|
|
|
} |
|
|
|
|
warehouseUpdownTypeClient.downTray(trayByTrayCode.getPalletCode(),myCurrentWarehouse.getId()); |
|
|
|
|
//生成扫描数据
|
|
|
|
|
List<DistributionStockEntity> stockEntityList = generateDeliveryTrayPackageStockEntity(reservationEntity,packageData,myCurrentWarehouse,user,stockupDTO.getStockupId()); |
|
|
|
|
if (!stockEntityList.isEmpty()) { |
|
|
|
|
distributionStockService.saveBatch(stockEntityList); |
|
|
|
|
} |
|
|
|
|
return Resp.scanSuccess("操作成功"," "); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private List<DistributionStockEntity> generateDeliveryTrayPackageStockEntity(DistributionReservationEntity reservationEntity, |
|
|
|
|
List<DistributionParcelListEntity> packageData, |
|
|
|
|
BasicdataWarehouseEntity warehouse, |
|
|
|
|
BladeUser user, |
|
|
|
|
Long stockUpId) { |
|
|
|
|
List<DistributionStockEntity> list= new ArrayList<>(); |
|
|
|
|
for (DistributionParcelListEntity parcelListEntity : packageData) { |
|
|
|
|
DistributionStockEntity distributionStockEntity = new DistributionStockEntity(); |
|
|
|
|
distributionStockEntity.setWarehouseId(warehouse.getId()); |
|
|
|
|
distributionStockEntity.setWarehouseName(warehouse.getName()); |
|
|
|
|
distributionStockEntity.setReservationId(reservationEntity.getId()); |
|
|
|
|
distributionStockEntity.setReservationCode(reservationEntity.getReservationCode()); |
|
|
|
|
distributionStockEntity.setStockQuantity(parcelListEntity.getQuantity()); |
|
|
|
|
distributionStockEntity.setOrderSelfNumbering(parcelListEntity.getOrderCode()); |
|
|
|
|
distributionStockEntity.setStockArticle(parcelListEntity.getStockArticleId()); |
|
|
|
|
distributionStockEntity.setParcelListId(parcelListEntity.getId()); |
|
|
|
|
distributionStockEntity.setCoding(parcelListEntity.getOrderPackageCode()); |
|
|
|
|
distributionStockEntity.setOutboundType(reservationEntity.getDeliveryType()); |
|
|
|
|
distributionStockEntity.setStockupId(stockUpId); |
|
|
|
|
distributionStockEntity.setGoodsName(parcelListEntity.getThirdProduct()); |
|
|
|
|
distributionStockEntity.setType(1); |
|
|
|
|
distributionStockEntity.setMaterialId(parcelListEntity.getMaterialId()); |
|
|
|
|
distributionStockEntity.setMarketId(reservationEntity.getMallId()); |
|
|
|
|
distributionStockEntity.setScanUser(user.getNickName()); |
|
|
|
|
distributionStockEntity.setIsTray(Integer.parseInt(IsOrNoConstant.yes.getValue())); |
|
|
|
|
list.add(distributionStockEntity); |
|
|
|
|
} |
|
|
|
|
return list; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* @param stockupDTO |
|
|
|
@ -5172,12 +5247,96 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
case 3: |
|
|
|
|
//零担
|
|
|
|
|
return handleBillZeroStockUp(stockupDTO, myCurrentWarehouse, reservationId, stockupEntity); |
|
|
|
|
case 4: |
|
|
|
|
//零担
|
|
|
|
|
return handleBilltrayStockUp(stockupDTO, myCurrentWarehouse, reservationId, stockupEntity); |
|
|
|
|
default: |
|
|
|
|
log.error(method + "未知scanType"); |
|
|
|
|
return Resp.scanFail("未知操作类型", "未知操作类型"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private R handleBilltrayStockUp(StockupDTO stockupDTO, BasicdataWarehouseEntity myCurrentWarehouse, Long reservationId, DistributionStockupEntity stockupEntity) { |
|
|
|
|
String method = "#######################DistributionStockupServiceImpl.handleBilltrayStockUp"; |
|
|
|
|
if (Objects.isNull(stockupDTO.getTrayBarCode())){ |
|
|
|
|
log.info(method+"参数缺失>>>>>>>>>>>>>>>>>>stockupDTO.getTrayBarCode()"); |
|
|
|
|
return R.fail("参数缺失,请联系管理员"); |
|
|
|
|
} |
|
|
|
|
if (Objects.isNull(AuthUtil.getUser())){ |
|
|
|
|
log.info(method+"参数缺失>>>>>>>>>>>>>>>>>>AuthUtil.getUser():{}",AuthUtil.getUser()); |
|
|
|
|
return R.fail("请重新登陆后操作"); |
|
|
|
|
} |
|
|
|
|
DistrilbutionBillLadingEntity billLadingEntity = distrilbutionBillLadingService.getById(reservationId); |
|
|
|
|
if (Objects.isNull(billLadingEntity)) { |
|
|
|
|
return Resp.scanFail("当前计划信息错误", "当前计划信息错误"); |
|
|
|
|
} |
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
//校验托盘
|
|
|
|
|
BasicdataTrayEntity trayByTrayCode = basicdataTrayClient.getTrayByTrayCode(stockupDTO.getTrayBarCode()); |
|
|
|
|
if (Objects.isNull(trayByTrayCode)){ |
|
|
|
|
log.info(method+"当前托盘信息不存在>>>>>>>>>>>>>>>>>>当前托盘信息不存在:{}",AuthUtil.getUser()); |
|
|
|
|
return R.fail("当前托盘信息不存在"); |
|
|
|
|
} |
|
|
|
|
//查询当前托盘上货物是否都存在计划内
|
|
|
|
|
List<WarehouseTrayGoodsEntity> trayIdList = warehouseTrayGoodsClient.getTrayIdList(String.valueOf(trayByTrayCode.getId()), trayByTrayCode.getPalletCode()); |
|
|
|
|
if (trayIdList.isEmpty()) { |
|
|
|
|
return R.fail("当前托盘无货物信息"); |
|
|
|
|
} |
|
|
|
|
boolean isAllPackage = trayIdList.stream().allMatch(a -> "3".equals(a.getAssociationType())); |
|
|
|
|
if (!isAllPackage) { |
|
|
|
|
return R.fail("当前托盘存在其他类型货物"); |
|
|
|
|
} |
|
|
|
|
//查询计划包件信息
|
|
|
|
|
List<DistributionParcelListEntity> distributionParcelListEntities = distributionReservationMapper.selectPackageListByReservationId(reservationId); |
|
|
|
|
if (distributionParcelListEntities.isEmpty()) { |
|
|
|
|
log.info(method+"查询预约包件计划信息错误>>>>>>>>>>>>>>>>>>>>>>reservationId:{}",reservationId); |
|
|
|
|
return R.fail("查询计划信息错误"); |
|
|
|
|
} |
|
|
|
|
List<Long> trayPackageIds = trayIdList.stream().map(WarehouseTrayGoodsEntity::getAssociationId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> packageData = distributionParcelListEntities.stream().filter(f -> trayPackageIds.contains(f.getId())).collect(Collectors.toList()); |
|
|
|
|
if (packageData.isEmpty()) { |
|
|
|
|
return R.fail("当前托盘无此客户的货物"); |
|
|
|
|
} |
|
|
|
|
warehouseUpdownTypeClient.downTray(trayByTrayCode.getPalletCode(),myCurrentWarehouse.getId()); |
|
|
|
|
//生成扫描数据
|
|
|
|
|
List<DistributionStockEntity> stockEntityList = generateBillTrayPackageStockEntity(billLadingEntity,packageData,myCurrentWarehouse,user,stockupDTO.getStockupId()); |
|
|
|
|
if (!stockEntityList.isEmpty()) { |
|
|
|
|
distributionStockService.saveBatch(stockEntityList); |
|
|
|
|
} |
|
|
|
|
return Resp.scanSuccess("操作成功"," "); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private List<DistributionStockEntity> generateBillTrayPackageStockEntity(DistrilbutionBillLadingEntity billLadingEntity, |
|
|
|
|
List<DistributionParcelListEntity> packageData, |
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse, |
|
|
|
|
BladeUser user, |
|
|
|
|
Long stockupId) { |
|
|
|
|
List<DistributionStockEntity> list= new ArrayList<>(); |
|
|
|
|
for (DistributionParcelListEntity parcelListEntity : packageData) { |
|
|
|
|
DistributionStockEntity distributionStockEntity = new DistributionStockEntity(); |
|
|
|
|
distributionStockEntity.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
distributionStockEntity.setWarehouseName(myCurrentWarehouse.getName()); |
|
|
|
|
distributionStockEntity.setReservationId(billLadingEntity.getId()); |
|
|
|
|
distributionStockEntity.setReservationCode(billLadingEntity.getPickupBatch()); |
|
|
|
|
distributionStockEntity.setStockQuantity(parcelListEntity.getQuantity()); |
|
|
|
|
distributionStockEntity.setOrderSelfNumbering(parcelListEntity.getOrderCode()); |
|
|
|
|
distributionStockEntity.setStockArticle(parcelListEntity.getStockArticleId()); |
|
|
|
|
distributionStockEntity.setParcelListId(parcelListEntity.getId()); |
|
|
|
|
distributionStockEntity.setCoding(parcelListEntity.getOrderPackageCode()); |
|
|
|
|
distributionStockEntity.setOutboundType("3"); |
|
|
|
|
distributionStockEntity.setStockupId(stockupId); |
|
|
|
|
distributionStockEntity.setGoodsName(parcelListEntity.getThirdProduct()); |
|
|
|
|
distributionStockEntity.setType(1); |
|
|
|
|
distributionStockEntity.setMaterialId(parcelListEntity.getMaterialId()); |
|
|
|
|
distributionStockEntity.setMarketId(billLadingEntity.getClientId()); |
|
|
|
|
distributionStockEntity.setScanUser(user.getNickName()); |
|
|
|
|
distributionStockEntity.setIsTray(Integer.parseInt(IsOrNoConstant.yes.getValue())); |
|
|
|
|
list.add(distributionStockEntity); |
|
|
|
|
} |
|
|
|
|
return list; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private R handleBillZeroStockUp(StockupDTO stockupDTO, BasicdataWarehouseEntity myCurrentWarehouse, Long reservationId, DistributionStockupEntity stockupEntity) { |
|
|
|
|
String method = "#######################DistributionStockupServiceImpl.handleDeliveryZeroStockUp"; |
|
|
|
|
if (Objects.isNull(stockupDTO.getOrderId())){ |
|
|
|
@ -5392,9 +5551,10 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
List<DistributionAppStockUpZeroOrderDetailVO> stockUpZeroOrderDetailVOList = this.handleStockupDeliveryZeroOrder(reservationEntity); |
|
|
|
|
if (!stockUpZeroOrderDetailVOList.isEmpty()) { |
|
|
|
|
stockUpClientVO.setStockUpZeroOrderDetailVOList(stockUpZeroOrderDetailVOList); |
|
|
|
|
} |
|
|
|
|
//零担
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
default: |
|
|
|
|
log.info("未知orderStatus>>>>>>>>>>>>>>orderStatus:{}",orderStatus); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case "3": |
|
|
|
@ -5426,6 +5586,8 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
stockUpClientVO.setStockUpZeroOrderDetailVOList(stockupBillZeroOrder); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
log.info("未知orderStatus>>>>>>>>>>>>>>orderStatus:{}",orderStatus); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
@ -5435,6 +5597,8 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
return R.data(stockUpClientVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void maintainDeliveryStockUpEntity(Long stockupId) { |
|
|
|
|
//查询此备货任务所关联的包件信息
|
|
|
|
@ -5892,6 +6056,17 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R handleDeliveryTrayDetailList(Long reservationId) { |
|
|
|
|
|
|
|
|
|
return R.data(distributionReservationMapper.deliveryTrayDetailList(reservationId)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R handleBillTrayDetailList(Long reservationId) { |
|
|
|
|
return R.data(distrilbutionBillLadingMapper.billTrayDetailList(reservationId)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 自提库存品备货 |
|
|
|
|
* |
|
|
|
@ -6430,6 +6605,9 @@ public class DistributionStockupServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
.eq(DistributionReservationPackageEntity::getPacketBarCode, packetBarCode) |
|
|
|
|
.ne(DistributionReservationPackageEntity::getPacketBarStatus, ReservationPackageStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
if (!packageEntityList.isEmpty()) { |
|
|
|
|
return Resp.scanFail("无此备货计划","无此备货计划"); |
|
|
|
|
} |
|
|
|
|
if (packageEntityList.size() > 1) { |
|
|
|
|
return Resp.scanFail("当前包件计划重复", "当前包件计划重复"); |
|
|
|
|
} |
|
|
|
|