|
|
|
@ -126,6 +126,7 @@ import org.springblade.common.constant.reservation.ReservationStockupStatusConst
|
|
|
|
|
import org.springblade.common.constant.signing.SignforStatusConstant; |
|
|
|
|
import org.springblade.common.constant.stockup.StockupStatusConstant; |
|
|
|
|
import org.springblade.common.constant.stockup.StockupTypeConstant; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
|
import org.springblade.core.secure.BladeUser; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
@ -2154,8 +2155,9 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
.eq(DistributionStockupInfoEntity::getReservationId, reservationId) |
|
|
|
|
); |
|
|
|
|
if (ObjectUtils.isNull(distributionStockupInfoEntity)) { |
|
|
|
|
log.info("预约数据不存在!!"); |
|
|
|
|
throw new ServiceException("预约数据不存在!!"); |
|
|
|
|
log.warn("预约数据不存在!!"); |
|
|
|
|
// throw new ServiceException("预约数据不存在!!");
|
|
|
|
|
return ; |
|
|
|
|
} |
|
|
|
|
String stockUpType = distributionStockupInfoEntity.getStockUpType(); |
|
|
|
|
//维护备货时间
|
|
|
|
@ -2174,8 +2176,10 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
.apply("inventory_status in (1,3)") |
|
|
|
|
); |
|
|
|
|
if (ObjectUtils.isNull(one)) { |
|
|
|
|
log.info("自提库存品数据为空!!"); |
|
|
|
|
throw new ServiceException("自提库存品数据为空!!"); |
|
|
|
|
log.warn("自提库存品数据为空!!"); |
|
|
|
|
return ; |
|
|
|
|
|
|
|
|
|
// throw new ServiceException("自提库存品数据为空!!");
|
|
|
|
|
} |
|
|
|
|
DistributionDeliveryDetailsEntity entity = new DistributionDeliveryDetailsEntity(); |
|
|
|
|
entity.setId(one.getId()); |
|
|
|
@ -2196,8 +2200,10 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
.apply("stock_list_status in (1,3)") |
|
|
|
|
); |
|
|
|
|
if (ObjectUtils.isNull(one1)) { |
|
|
|
|
log.info("预约库存品数据为空!!"); |
|
|
|
|
throw new ServiceException("预约库存品数据为空!!"); |
|
|
|
|
log.warn("预约库存品数据为空!!"); |
|
|
|
|
return ; |
|
|
|
|
|
|
|
|
|
// throw new CustomerException("预约库存品数据为空!!");
|
|
|
|
|
} |
|
|
|
|
DistributionReservationStocklistEntity reservationStocklistEntity = new DistributionReservationStocklistEntity(); |
|
|
|
|
reservationStocklistEntity.setId(one1.getId()); |
|
|
|
@ -3165,7 +3171,7 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
|
|
|
|
|
pushInstallDTO.setBalance_people("1"); |
|
|
|
|
pushInstallDTO.setBalance_type(client.getDefaultPaymentMethods()); |
|
|
|
|
} else { |
|
|
|
|
log.error(method + ">>>>>>>>>>>>>查询客户信息失败" + reservationEntity.getReceivingUnit()); |
|
|
|
|
log.warn(method + ">>>>>>>>>>>>>查询客户信息失败" + reservationEntity.getReceivingUnit()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
List<PushInstallDTO.Order> orderList = new ArrayList<>(); |
|
|
|
|