|
|
@ -1498,7 +1498,12 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution |
|
|
|
if (Func.isNotEmpty(distributionParcelNumberDTOS)){ |
|
|
|
if (Func.isNotEmpty(distributionParcelNumberDTOS)){ |
|
|
|
for (DistributionParcelNumberDTO distributionParcelNumberDTO : distributionParcelNumberDTOS) { |
|
|
|
for (DistributionParcelNumberDTO distributionParcelNumberDTO : distributionParcelNumberDTOS) { |
|
|
|
//查询是否签收是否和计划保持一致
|
|
|
|
//查询是否签收是否和计划保持一致
|
|
|
|
flag = distributionLoadscanMapper.judgmentZeroPackageIsSign(distributionParcelNumberDTO.getReservationId(),distributionParcelNumberDTO.getParcelListId(),distributionParcelNumberDTO.getReservationNum()); |
|
|
|
Boolean aBoolean = distributionLoadscanMapper.judgmentZeroPackageIsSign(distributionParcelNumberDTO.getReservationId(), distributionParcelNumberDTO.getParcelListId(), distributionParcelNumberDTO.getReservationNum()); |
|
|
|
|
|
|
|
if(Objects.isNull(aBoolean)){ |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
flag = aBoolean; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return flag; |
|
|
|
return flag; |
|
|
|