@ -9405,7 +9405,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
public R createdRetentionEntity ( String orderPackageCode ) {
//查询目标包件的配送信息
//查询此包件属于哪个车次
BasicdataWarehouseEntity myCurrentWarehouseAndConfig = warehouseClient . getMyCurrentWarehouseAndConfig ( ) ;
BasicdataWarehouseEntity myCurrentWarehouseAndConfig = warehouseClient . getMyCurrentWarehouse ( ) ;
if ( Objects . isNull ( myCurrentWarehouseAndConfig ) ) {
return R . fail ( 403 , "未授权!!!" ) ;
}
@ -9874,6 +9874,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
loadscanEntity . setPackageNub ( parcelListDTO . getLoadingNum ( ) ) ;
loadscanEntity . setWarehouseId ( myCurrentWarehouse . getId ( ) ) ;
loadscanEntity . setWarehouseName ( myCurrentWarehouse . getName ( ) ) ;
loadscanEntity . setIsZero ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) ) ;
distributionLoadscanService . updateById ( loadscanEntity ) ;
//维护零担订单装车状态
distributionAsyncService . checkZeroStockArticleLoadingStatus ( parcelNumberEntity , loadscanEntity . getDeliveryId ( ) , loadscanEntity . getReservationId ( ) ) ;
@ -9888,6 +9889,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
BladeUser user ,
Map < Long , DistributionParcelNumberEntity > zeroPackageMap ) {
DistributionLoadscanEntity zeroLoadscanEntity = createdDistributionZeroLoadscanEntity ( distributionDeliverySelfEntity , deliveryListEntity , distrilbutionloadingscanDTO . getReservationId ( ) , parcelNumberDTO , myCurrentWarehouse , user ) ;
zeroLoadscanEntity . setIsZero ( Integer . parseInt ( IsOrNoConstant . yes . getValue ( ) ) ) ;
distributionLoadscanService . save ( zeroLoadscanEntity ) ;
//更新装车时间
Integer i = distributionDeliveryListMapper . updateloadingTimeById ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;