|
|
|
@ -34,7 +34,6 @@ import org.springblade.common.constant.order.OrderSplitStateConstant;
|
|
|
|
|
import org.springblade.common.constant.order.OrderStatusConstant; |
|
|
|
|
import org.springblade.common.constant.orderpackage.*; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.core.mp.base.BaseEntity; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
|
import org.springblade.core.mp.support.Query; |
|
|
|
@ -42,9 +41,7 @@ import org.springblade.core.redis.lock.LockType;
|
|
|
|
|
import org.springblade.core.redis.lock.RedisLockClient; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.system.cache.UserCache; |
|
|
|
|
import org.springblade.system.entity.User; |
|
|
|
|
import org.springblade.system.feign.ISysClient; |
|
|
|
|
import org.springblade.system.feign.IUserClient; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
@ -136,7 +133,8 @@ public class DistributionSplitOrderTaskServiceImpl extends BaseServiceImpl<Distr
|
|
|
|
|
if (distributionStockArticle == null) { |
|
|
|
|
return R.fail("原订单信息错误"); |
|
|
|
|
} |
|
|
|
|
if (!Objects.equals(distributionStockArticle.getOrderStatus(), OrderStatusConstant.ruku.getValue()) |
|
|
|
|
if (distributionStockArticle.getOrderStatus().equals(OrderStatusConstant.chuku.getValue()) |
|
|
|
|
|| distributionStockArticle.getOrderStatus().equals(OrderStatusConstant.qianshou.getValue()) |
|
|
|
|
|| Objects.equals(distributionStockArticle.getReservationStatus(), OrderReservationStatusConstant.yiyueyue.getValue())) { |
|
|
|
|
return R.fail("订单"+ distributionStockArticle.getOrderCode() +"不允许拆单"); |
|
|
|
|
} |
|
|
|
@ -163,7 +161,10 @@ public class DistributionSplitOrderTaskServiceImpl extends BaseServiceImpl<Distr
|
|
|
|
|
.mapToInt(Integer::intValue) |
|
|
|
|
.sum(); |
|
|
|
|
if (packageAllowCount < taskNumber) { |
|
|
|
|
return R.fail("拆单数大于订单包件数量,请重新填写,目前可拆单数量:" + packageAllowCount); |
|
|
|
|
return R.fail("拆单包件数量不足,请重新填写,目前可拆单数量:" + (packageAllowCount - 1)); |
|
|
|
|
} |
|
|
|
|
if (packageAllCount >= taskNumber) { |
|
|
|
|
return R.fail("拆单数需要小于订单总数量,请重新填写,目前可拆单数量:" + (packageAllowCount - 1)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
taskLock(stockArticleId, () -> { |
|
|
|
@ -933,7 +934,7 @@ public class DistributionSplitOrderTaskServiceImpl extends BaseServiceImpl<Distr
|
|
|
|
|
List<Map<String, Object>> maps = baseMapper.selectMaps( |
|
|
|
|
Wrappers.<DistributionSplitOrderTaskEntity>query() |
|
|
|
|
.select("split_order_all_task_id", "SUM(number) as number") |
|
|
|
|
.eq("split_order_all_task_id", taskIds) |
|
|
|
|
.in("split_order_all_task_id", taskIds) |
|
|
|
|
.in("state", OrderSplitStateConstant.InProgress.getValue(), OrderSplitStateConstant.finish.getValue()) |
|
|
|
|
.groupBy("split_order_all_task_id") |
|
|
|
|
); |
|
|
|
@ -993,6 +994,46 @@ public class DistributionSplitOrderTaskServiceImpl extends BaseServiceImpl<Distr
|
|
|
|
|
return R.success(""); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R<String> checkOrderCode(Long stockArticleId){ |
|
|
|
|
DistributionStockArticleEntity distributionStockArticle = distributionStockArticleService.getById(stockArticleId); |
|
|
|
|
if (distributionStockArticle == null) { |
|
|
|
|
return R.fail("原订单信息错误"); |
|
|
|
|
} |
|
|
|
|
if (distributionStockArticle.getOrderStatus().equals(OrderStatusConstant.chuku.getValue()) |
|
|
|
|
|| distributionStockArticle.getOrderStatus().equals(OrderStatusConstant.qianshou.getValue()) |
|
|
|
|
|| Objects.equals(distributionStockArticle.getReservationStatus(), OrderReservationStatusConstant.yiyueyue.getValue())) { |
|
|
|
|
return R.fail("订单"+ distributionStockArticle.getOrderCode() +"不允许拆单"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
long packageAllowCount = getSplitOrderAllowCount(stockArticleId); |
|
|
|
|
long packageAllCount = getSplitOrderAllCount(stockArticleId); |
|
|
|
|
|
|
|
|
|
if (packageAllowCount == 0 || packageAllCount == 1) { |
|
|
|
|
return R.fail("订单"+ distributionStockArticle.getOrderCode() +"包件数量不足,不允许拆单"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
boolean exists = exists( |
|
|
|
|
Wrappers.<DistributionSplitOrderTaskEntity>lambdaQuery() |
|
|
|
|
.eq(DistributionSplitOrderTaskEntity::getStockArticleId, stockArticleId) |
|
|
|
|
.eq(DistributionSplitOrderTaskEntity::getState, OrderSplitStateConstant.InProgress.getValue()) |
|
|
|
|
); |
|
|
|
|
if (exists) { |
|
|
|
|
return R.fail("订单"+ distributionStockArticle.getOrderCode() +"正在拆单中,不允许重复拆单"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
boolean hasSplit = exists( |
|
|
|
|
Wrappers.<DistributionSplitOrderTaskEntity>lambdaQuery() |
|
|
|
|
.eq(DistributionSplitOrderTaskEntity::getNewStockArticleId, stockArticleId) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if (hasSplit){ |
|
|
|
|
return R.fail("订单"+ distributionStockArticle.getOrderCode() +"已是拆单订单,不允许再次拆单"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return R.success(""); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R<IPage<SplitPackageOrderVO>> getPackageCodeByOrderCode(Query query, String orderCode) { |
|
|
|
|
IPage<DistributionParcelListEntity> page = Condition.getPage(query); |
|
|
|
|