From 0ec22dcf4fd9c4496e6f681e7fab89f56c6e4e8a Mon Sep 17 00:00:00 2001
From: yujian <yujian@163.com>
Date: 星期四, 02 四月 2020 14:45:20 +0800
Subject: [PATCH] vip 消息

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java |   46 +++++++++++++++++++++++++++++-----------------
 1 files changed, 29 insertions(+), 17 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java
index 2fe72bd..15b7367 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/LostOrderServiceImpl.java
@@ -1,5 +1,6 @@
 package com.yeshi.fanli.service.impl.order;
 
+import java.math.BigDecimal;
 import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
@@ -16,12 +17,13 @@
 import com.yeshi.fanli.entity.bus.user.HongBaoV2;
 import com.yeshi.fanli.entity.bus.user.LostOrder;
 import com.yeshi.fanli.entity.bus.user.Order;
+import com.yeshi.fanli.entity.system.ConfigKeyEnum;
 import com.yeshi.fanli.service.inter.config.ConfigService;
-import com.yeshi.fanli.service.inter.msg.UserOrderMsgNotificationService;
 import com.yeshi.fanli.service.inter.order.HongBaoOrderService;
 import com.yeshi.fanli.service.inter.order.LostOrderService;
 import com.yeshi.fanli.service.inter.order.OrderService;
-import com.yeshi.fanli.util.Constant;
+import com.yeshi.fanli.service.inter.order.msg.UserOrderMsgNotificationService;
+import com.yeshi.fanli.service.inter.order.tb.TaoBaoPunishOrderService;
 import com.yeshi.fanli.util.Utils;
 
 @Service
@@ -42,6 +44,9 @@
 	@Resource
 	private UserOrderMsgNotificationService userOrderMsgNotificationService;
 
+	@Resource
+	private TaoBaoPunishOrderService taoBaoPunishOrderService;
+
 	@Transactional
 	@Override
 	public int addLostOrder(LostOrder lostOrder) {
@@ -50,6 +55,14 @@
 		if (type == null) { // 榛樿涓烘窐瀹濊鍗�
 			lostOrder.setType(1);
 			type = 1;
+		}
+
+		// 鏄惁澶勪簬杩濊璁㈠崟涓�
+		if (type == 1) {
+			int count = taoBaoPunishOrderService.countByTradeParentId(orderId);
+			if (count > 0) {
+				return -1001;
+			}
 		}
 
 		// 璁㈠崟鏄惁宸茬敵璇�
@@ -72,12 +85,12 @@
 		}
 
 		// 鏄惁涓哄垎浜禋璁㈠崟
-		if (hongBaoOrderService.countByOrderNoAndHongBaoType(orderId, HongBaoV2.TYPE_SHARE_GOODS) > 0)
+		if (hongBaoOrderService.countByOrderNoAndHongBaoType(orderId, HongBaoV2.TYPE_SHARE_GOODS, type) > 0)
 			return -5;
 
 		// 娆℃暟闄愬埗
 		long count = lostOrderMapper.countTodayAppeal(lostOrder.getUserInfo().getId());
-		String countMax = configService.get("order_appeal_count_day");
+		String countMax = configService.get(ConfigKeyEnum.orderAppealCountDay.getKey());
 		if (countMax != null && countMax.trim().length() > 0 && count >= Long.parseLong(countMax)) {
 			return -7;
 		}
@@ -105,7 +118,7 @@
 				lostOrderwriteLock.unlock();
 			}
 
-			Order or = orderService.getSystemOrderByUid(Constant.TAOBAO, lostOrder.getUserInfo().getId());
+			Order or = orderService.getSystemOrderByUid(type, lostOrder.getUserInfo().getId());
 			if (or != null) {
 				boolean b = Utils.isUserOrder(or.getOrderId(), lostOrder.getOrderId());
 				if (b) {
@@ -225,11 +238,11 @@
 				update.setId(lo.getId());
 				update.setResultCode(LostOrder.RESULT_CODE_SUCCESS);
 				lostOrderMapper.updateByPrimaryKeySelective(update);
-				Order order = orderService.findOrderByOrderIdAndType(orderId, Order.ORDER_TYPE_TAOBAO);
+				Order order = orderService.findOrderByOrderIdAndType(orderId, orderType);
 				if (order != null)
 					// 娣诲姞閫氱煡
 					userOrderMsgNotificationService.orderFoundSuccess(lo.getUserInfo().getId(), lo.getOrderId(),
-							order.getMoney(), 1, new Date(lo.getHandleTime()));
+							order.getMoney(), orderType, new Date(lo.getHandleTime()));
 			}
 		}
 	}
@@ -292,25 +305,24 @@
 	 * @return
 	 */
 	@Override
-	public List<LostOrder> listQuery(long start, int count, String key, Integer state, Integer handleType) {
-		return lostOrderMapper.listQuery(start, count, key, state, handleType);
+	public List<LostOrder> listQuery(long start, int count, String key, Integer state, Integer handleType,
+			Integer type) {
+		return lostOrderMapper.listQuery(start, count, key, state, handleType, type);
 	}
 
 	@Override
-	public long countQuery(String key, Integer state, Integer handleType) {
-		return lostOrderMapper.countQuery(key, state, handleType);
+	public long countQuery(String key, Integer state, Integer handleType, Integer type) {
+		return lostOrderMapper.countQuery(key, state, handleType, type);
 	}
 
 	@Override
-	public List<Map<String, Object>> countLostNum(Integer dateType, Integer resultCode, String year, String startTime,
-			String endTime) throws Exception {
-		return lostOrderMapper.countLostNum(dateType, resultCode, year, startTime, endTime);
+	public Integer countLostOrderNum(String preDay,  int resultCode) {
+		return lostOrderMapper.countLostOrderNum(preDay, resultCode);
 	}
 
 	@Override
-	public List<Map<String, Object>> countAppealMoney(Integer dateType, String year, String startTime, String endTime)
-			throws Exception {
-		return lostOrderMapper.countAppealMoney(dateType, year, startTime, endTime);
+	public BigDecimal countAppealMoney(String preDay) {
+		return lostOrderMapper.countAppealMoney(preDay);
 	}
 
 	@Override

--
Gitblit v1.8.0