@ -1390,6 +1390,10 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
if ( ObjectUtils . isNotNull ( o ) ) {
distributionSignfor . remove ( "ids" ) ;
}
BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient . getMyCurrentWarehouse ( ) ;
if ( Func . isNotEmpty ( myCurrentWarehouse ) ) {
distributionSignfor . put ( "warehouseId" , myCurrentWarehouse . getId ( ) ) ;
}
// BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse();
// if(ObjectUtils.isNull()){
// throw new ServiceException("请选择仓库!");
@ -2775,22 +2779,29 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
int reservationTotal = reservationZeroPackageEntityList . stream ( ) . mapToInt ( DistributionReservationZeroPackageEntity : : getQuantity ) . sum ( ) ;
distributionAppStockArticleVO . setReservationNum ( reservationTotal ) ;
List < DistributionParcelNumberVO > parcelNumberVOS = distributionReservationMapper . selectReservationZeroOrderDetail ( orderId , Long . parseLong ( distributionDeliveryList . getReservationId ( ) ) ) ;
parcelNumberVOS . forEach ( p - > {
DistributionLoadscanEntity loadscanEntity = distributionLoadscanService . getOne ( Wrappers . < DistributionLoadscanEntity > query ( ) . lambda ( ) . eq ( DistributionLoadscanEntity : : getReservationId , distributionDeliveryList . getReservationId ( ) ) . eq ( DistributionLoadscanEntity : : getOrderId , orderId ) . eq ( DistributionLoadscanEntity : : getPackageId , p . getParcelListId ( ) ) . ne ( DistributionLoadscanEntity : : getScanStatus , LoadingStatusConstant . quxiao . getValue ( ) ) ) ;
p . setLoadingNum ( 0 ) ;
p . setSigningNum ( 0 ) ;
if ( Func . isNotEmpty ( loadscanEntity ) ) {
p . setLoadingNum ( loadscanEntity . getLoadedNub ( ) ) ;
if ( loadscanEntity . getSignforState ( ) . equals ( LoadScanSigningStatusConstant . yiqianshou . getValue ( ) ) ) {
p . setSigningNum ( loadscanEntity . getReceivedQuantity ( ) ) ;
distributionAppStockArticleVO . setSignforNub ( 0 ) ;
if ( Func . isNotEmpty ( parcelNumberVOS ) ) {
parcelNumberVOS . forEach ( p - > {
DistributionLoadscanEntity loadscanEntity = distributionLoadscanService . getOne ( Wrappers . < DistributionLoadscanEntity > query ( ) . lambda ( ) . eq ( DistributionLoadscanEntity : : getReservationId , distributionDeliveryList . getReservationId ( ) ) . eq ( DistributionLoadscanEntity : : getOrderId , orderId ) . eq ( DistributionLoadscanEntity : : getPackageId , p . getParcelListId ( ) ) . ne ( DistributionLoadscanEntity : : getScanStatus , LoadingStatusConstant . quxiao . getValue ( ) ) ) ;
p . setLoadingNum ( 0 ) ;
p . setSigningNum ( 0 ) ;
if ( Func . isNotEmpty ( loadscanEntity ) ) {
p . setLoadingNum ( loadscanEntity . getLoadedNub ( ) ) ;
if ( loadscanEntity . getSignforState ( ) . equals ( LoadScanSigningStatusConstant . yiqianshou . getValue ( ) ) ) {
p . setSigningNum ( loadscanEntity . getReceivedQuantity ( ) ) ;
}
}
}
} ) ;
} ) ;
distributionAppStockArticleVO . setDistributionParcelNumberVOS ( parcelNumberVOS ) ;
distributionAppStockArticleVO . setSignforNub ( parcelNumberVOS . stream ( ) . mapToInt ( DistributionParcelNumberVO : : getSigningNum ) . sum ( ) ) ;
}
}
}
orderVos . add ( distributionAppStockArticleVO ) ;
}
}
return orderVos ;