|
@@ -1,5 +1,6 @@
|
|
|
package com.macro.mall.portal.service.impl;
|
|
|
|
|
|
+import com.macro.mall.common.api.CommonResult;
|
|
|
import com.macro.mall.mapper.*;
|
|
|
import com.macro.mall.model.*;
|
|
|
import com.macro.mall.portal.component.CancelOrderSender;
|
|
@@ -109,7 +110,7 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
}
|
|
|
//判断购物车中商品是否都有库存
|
|
|
if (!hasStock(cartPromotionItemList)) {
|
|
|
- return new CommonResult().failed("库存不足,无法下单");
|
|
|
+ return CommonResult.failed("库存不足,无法下单");
|
|
|
}
|
|
|
//判断使用使用了优惠券
|
|
|
if (orderParam.getCouponId() == null) {
|
|
@@ -121,7 +122,7 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
//使用优惠券
|
|
|
SmsCouponHistoryDetail couponHistoryDetail = getUseCoupon(cartPromotionItemList, orderParam.getCouponId());
|
|
|
if (couponHistoryDetail == null) {
|
|
|
- return new CommonResult().failed("该优惠券不可用");
|
|
|
+ return CommonResult.failed("该优惠券不可用");
|
|
|
}
|
|
|
//对下单商品的优惠券进行处理
|
|
|
handleCouponAmount(orderItemList, couponHistoryDetail);
|
|
@@ -137,11 +138,11 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
BigDecimal totalAmount = calcTotalAmount(orderItemList);
|
|
|
BigDecimal integrationAmount = getUseIntegrationAmount(orderParam.getUseIntegration(), totalAmount, currentMember, orderParam.getCouponId() != null);
|
|
|
if (integrationAmount.compareTo(new BigDecimal(0)) == 0) {
|
|
|
- return new CommonResult().failed("积分不可用");
|
|
|
+ return CommonResult.failed("积分不可用");
|
|
|
} else {
|
|
|
//可用情况下分摊到可用商品中
|
|
|
for (OmsOrderItem orderItem : orderItemList) {
|
|
|
- BigDecimal perAmount = orderItem.getProductPrice().divide(totalAmount, 3,RoundingMode.HALF_EVEN).multiply(integrationAmount);
|
|
|
+ BigDecimal perAmount = orderItem.getProductPrice().divide(totalAmount, 3, RoundingMode.HALF_EVEN).multiply(integrationAmount);
|
|
|
orderItem.setIntegrationAmount(perAmount);
|
|
|
}
|
|
|
}
|
|
@@ -210,20 +211,20 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
}
|
|
|
orderItemDao.insertList(orderItemList);
|
|
|
//如使用优惠券更新优惠券使用状态
|
|
|
- if(orderParam.getCouponId()!=null){
|
|
|
- updateCouponStatus(orderParam.getCouponId(),currentMember.getId(),1);
|
|
|
+ if (orderParam.getCouponId() != null) {
|
|
|
+ updateCouponStatus(orderParam.getCouponId(), currentMember.getId(), 1);
|
|
|
}
|
|
|
//如使用积分需要扣除积分
|
|
|
- if(orderParam.getUseIntegration()!=null){
|
|
|
+ if (orderParam.getUseIntegration() != null) {
|
|
|
order.setUseIntegration(orderParam.getUseIntegration());
|
|
|
- memberService.updateIntegration(currentMember.getId(),currentMember.getIntegration()-orderParam.getUseIntegration());
|
|
|
+ memberService.updateIntegration(currentMember.getId(), currentMember.getIntegration() - orderParam.getUseIntegration());
|
|
|
}
|
|
|
//删除购物车中的下单商品
|
|
|
- deleteCartItemList(cartPromotionItemList,currentMember);
|
|
|
- Map<String,Object> result = new HashMap<>();
|
|
|
- result.put("order",order);
|
|
|
- result.put("orderItemList",orderItemList);
|
|
|
- return new CommonResult().success("下单成功", result);
|
|
|
+ deleteCartItemList(cartPromotionItemList, currentMember);
|
|
|
+ Map<String, Object> result = new HashMap<>();
|
|
|
+ result.put("order", order);
|
|
|
+ result.put("orderItemList", orderItemList);
|
|
|
+ return CommonResult.success(result, "下单成功");
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -237,7 +238,7 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
//恢复所有下单商品的锁定库存,扣减真实库存
|
|
|
OmsOrderDetail orderDetail = portalOrderDao.getDetail(orderId);
|
|
|
int count = portalOrderDao.updateSkuStock(orderDetail.getOrderItemList());
|
|
|
- return new CommonResult().success("支付成功",count);
|
|
|
+ return CommonResult.success(count,"支付成功");
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -245,27 +246,27 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
OmsOrderSetting orderSetting = orderSettingMapper.selectByPrimaryKey(1L);
|
|
|
//查询超时、未支付的订单及订单详情
|
|
|
List<OmsOrderDetail> timeOutOrders = portalOrderDao.getTimeOutOrders(orderSetting.getNormalOrderOvertime());
|
|
|
- if(CollectionUtils.isEmpty(timeOutOrders)){
|
|
|
- return new CommonResult().failed("暂无超时订单");
|
|
|
+ if (CollectionUtils.isEmpty(timeOutOrders)) {
|
|
|
+ return CommonResult.failed("暂无超时订单");
|
|
|
}
|
|
|
//修改订单状态为交易取消
|
|
|
List<Long> ids = new ArrayList<>();
|
|
|
for (OmsOrderDetail timeOutOrder : timeOutOrders) {
|
|
|
ids.add(timeOutOrder.getId());
|
|
|
}
|
|
|
- portalOrderDao.updateOrderStatus(ids,4);
|
|
|
+ portalOrderDao.updateOrderStatus(ids, 4);
|
|
|
for (OmsOrderDetail timeOutOrder : timeOutOrders) {
|
|
|
//解除订单商品库存锁定
|
|
|
portalOrderDao.releaseSkuStockLock(timeOutOrder.getOrderItemList());
|
|
|
//修改优惠券使用状态
|
|
|
- updateCouponStatus(timeOutOrder.getCouponId(),timeOutOrder.getMemberId(),0);
|
|
|
+ updateCouponStatus(timeOutOrder.getCouponId(), timeOutOrder.getMemberId(), 0);
|
|
|
//返还使用积分
|
|
|
- if(timeOutOrder.getUseIntegration()!=null){
|
|
|
+ if (timeOutOrder.getUseIntegration() != null) {
|
|
|
UmsMember member = memberService.getById(timeOutOrder.getMemberId());
|
|
|
- memberService.updateIntegration(timeOutOrder.getMemberId(),member.getIntegration()+timeOutOrder.getUseIntegration());
|
|
|
+ memberService.updateIntegration(timeOutOrder.getMemberId(), member.getIntegration() + timeOutOrder.getUseIntegration());
|
|
|
}
|
|
|
}
|
|
|
- return new CommonResult().success(null);
|
|
|
+ return CommonResult.success(null);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -274,27 +275,27 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
OmsOrderExample example = new OmsOrderExample();
|
|
|
example.createCriteria().andIdEqualTo(orderId).andStatusEqualTo(0).andDeleteStatusEqualTo(0);
|
|
|
List<OmsOrder> cancelOrderList = orderMapper.selectByExample(example);
|
|
|
- if(CollectionUtils.isEmpty(cancelOrderList)){
|
|
|
+ if (CollectionUtils.isEmpty(cancelOrderList)) {
|
|
|
return;
|
|
|
}
|
|
|
OmsOrder cancelOrder = cancelOrderList.get(0);
|
|
|
- if(cancelOrder!=null){
|
|
|
+ if (cancelOrder != null) {
|
|
|
//修改订单状态为取消
|
|
|
cancelOrder.setStatus(4);
|
|
|
orderMapper.updateByPrimaryKeySelective(cancelOrder);
|
|
|
- OmsOrderItemExample orderItemExample=new OmsOrderItemExample();
|
|
|
+ OmsOrderItemExample orderItemExample = new OmsOrderItemExample();
|
|
|
orderItemExample.createCriteria().andOrderIdEqualTo(orderId);
|
|
|
List<OmsOrderItem> orderItemList = orderItemMapper.selectByExample(orderItemExample);
|
|
|
//解除订单商品库存锁定
|
|
|
- if(!CollectionUtils.isEmpty(orderItemList)){
|
|
|
+ if (!CollectionUtils.isEmpty(orderItemList)) {
|
|
|
portalOrderDao.releaseSkuStockLock(orderItemList);
|
|
|
}
|
|
|
//修改优惠券使用状态
|
|
|
- updateCouponStatus(cancelOrder.getCouponId(),cancelOrder.getMemberId(),0);
|
|
|
+ updateCouponStatus(cancelOrder.getCouponId(), cancelOrder.getMemberId(), 0);
|
|
|
//返还使用积分
|
|
|
- if(cancelOrder.getUseIntegration()!=null){
|
|
|
+ if (cancelOrder.getUseIntegration() != null) {
|
|
|
UmsMember member = memberService.getById(cancelOrder.getMemberId());
|
|
|
- memberService.updateIntegration(cancelOrder.getMemberId(),member.getIntegration()+cancelOrder.getUseIntegration());
|
|
|
+ memberService.updateIntegration(cancelOrder.getMemberId(), member.getIntegration() + cancelOrder.getUseIntegration());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -303,9 +304,9 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
public void sendDelayMessageCancelOrder(Long orderId) {
|
|
|
//获取订单超时时间
|
|
|
OmsOrderSetting orderSetting = orderSettingMapper.selectByPrimaryKey(1L);
|
|
|
- long delayTimes = orderSetting.getNormalOrderOvertime()*60*1000;
|
|
|
+ long delayTimes = orderSetting.getNormalOrderOvertime() * 60 * 1000;
|
|
|
//发送延迟消息
|
|
|
- cancelOrderSender.sendMessage(orderId,delayTimes);
|
|
|
+ cancelOrderSender.sendMessage(orderId, delayTimes);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -317,12 +318,12 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
String key = REDIS_KEY_PREFIX_ORDER_ID + date;
|
|
|
Long increment = redisService.increment(key, 1);
|
|
|
sb.append(date);
|
|
|
- sb.append(String.format("%02d",order.getSourceType()));
|
|
|
- sb.append(String.format("%02d",order.getPayType()));
|
|
|
+ sb.append(String.format("%02d", order.getSourceType()));
|
|
|
+ sb.append(String.format("%02d", order.getPayType()));
|
|
|
String incrementStr = increment.toString();
|
|
|
- if(incrementStr.length()<=6){
|
|
|
- sb.append(String.format("%06d",increment));
|
|
|
- }else{
|
|
|
+ if (incrementStr.length() <= 6) {
|
|
|
+ sb.append(String.format("%06d", increment));
|
|
|
+ } else {
|
|
|
sb.append(incrementStr);
|
|
|
}
|
|
|
return sb.toString();
|
|
@@ -336,16 +337,16 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
for (CartPromotionItem cartPromotionItem : cartPromotionItemList) {
|
|
|
ids.add(cartPromotionItem.getId());
|
|
|
}
|
|
|
- cartItemService.delete(currentMember.getId(),ids);
|
|
|
+ cartItemService.delete(currentMember.getId(), ids);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 计算该订单赠送的成长值
|
|
|
*/
|
|
|
private Integer calcGiftGrowth(List<OmsOrderItem> orderItemList) {
|
|
|
- Integer sum=0;
|
|
|
+ Integer sum = 0;
|
|
|
for (OmsOrderItem orderItem : orderItemList) {
|
|
|
- sum=sum+orderItem.getGiftGrowth()*orderItem.getProductQuantity();
|
|
|
+ sum = sum + orderItem.getGiftGrowth() * orderItem.getProductQuantity();
|
|
|
}
|
|
|
return sum;
|
|
|
}
|
|
@@ -354,27 +355,28 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
* 计算该订单赠送的积分
|
|
|
*/
|
|
|
private Integer calcGifIntegration(List<OmsOrderItem> orderItemList) {
|
|
|
- int sum=0;
|
|
|
+ int sum = 0;
|
|
|
for (OmsOrderItem orderItem : orderItemList) {
|
|
|
- sum+=orderItem.getGiftIntegration()*orderItem.getProductQuantity();
|
|
|
+ sum += orderItem.getGiftIntegration() * orderItem.getProductQuantity();
|
|
|
}
|
|
|
return sum;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 将优惠券信息更改为指定状态
|
|
|
- * @param couponId 优惠券id
|
|
|
- * @param memberId 会员id
|
|
|
+ *
|
|
|
+ * @param couponId 优惠券id
|
|
|
+ * @param memberId 会员id
|
|
|
* @param useStatus 0->未使用;1->已使用
|
|
|
*/
|
|
|
- private void updateCouponStatus(Long couponId, Long memberId,Integer useStatus) {
|
|
|
- if(couponId==null)return;
|
|
|
+ private void updateCouponStatus(Long couponId, Long memberId, Integer useStatus) {
|
|
|
+ if (couponId == null) return;
|
|
|
//查询第一张优惠券
|
|
|
SmsCouponHistoryExample example = new SmsCouponHistoryExample();
|
|
|
example.createCriteria().andMemberIdEqualTo(memberId)
|
|
|
- .andCouponIdEqualTo(couponId).andUseStatusEqualTo(useStatus==0?1:0);
|
|
|
+ .andCouponIdEqualTo(couponId).andUseStatusEqualTo(useStatus == 0 ? 1 : 0);
|
|
|
List<SmsCouponHistory> couponHistoryList = couponHistoryMapper.selectByExample(example);
|
|
|
- if(!CollectionUtils.isEmpty(couponHistoryList)){
|
|
|
+ if (!CollectionUtils.isEmpty(couponHistoryList)) {
|
|
|
SmsCouponHistory couponHistory = couponHistoryList.get(0);
|
|
|
couponHistory.setUseTime(new Date());
|
|
|
couponHistory.setUseStatus(useStatus);
|
|
@@ -487,7 +489,7 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
|
|
|
return zeroAmount;
|
|
|
}
|
|
|
//是否超过订单抵用最高百分比
|
|
|
- BigDecimal integrationAmount = new BigDecimal(useIntegration).divide(new BigDecimal(integrationConsumeSetting.getUseUnit()), 2,RoundingMode.HALF_EVEN);
|
|
|
+ BigDecimal integrationAmount = new BigDecimal(useIntegration).divide(new BigDecimal(integrationConsumeSetting.getUseUnit()), 2, RoundingMode.HALF_EVEN);
|
|
|
BigDecimal maxPercent = new BigDecimal(integrationConsumeSetting.getMaxPercentPerOrder()).divide(new BigDecimal(100), 2, RoundingMode.HALF_EVEN);
|
|
|
if (integrationAmount.compareTo(totalAmount.multiply(maxPercent)) > 0) {
|
|
|
return zeroAmount;
|