From 4bfa8875c0fce82200c08d8e16532b16e2e29056 Mon Sep 17 00:00:00 2001
From: yujian <yujian>
Date: 星期三, 27 二月 2019 11:28:16 +0800
Subject: [PATCH] 券消息+过期+ 退回

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponServiceImpl.java |  154 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 153 insertions(+), 1 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponServiceImpl.java
index e7f8f74..8554d68 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserSystemCouponServiceImpl.java
@@ -1,6 +1,7 @@
 package com.yeshi.fanli.service.impl.user;
 
 import java.math.BigDecimal;
+import java.text.ParseException;
 import java.text.SimpleDateFormat;
 import java.util.ArrayList;
 import java.util.Date;
@@ -27,12 +28,14 @@
 import com.yeshi.fanli.entity.system.SystemCoupon;
 import com.yeshi.fanli.entity.system.SystemCoupon.CouponTypeEnum;
 import com.yeshi.fanli.exception.user.UserSystemCouponException;
+import com.yeshi.fanli.log.LogHelper;
 import com.yeshi.fanli.service.inter.common.JumpDetailV2Service;
 import com.yeshi.fanli.service.inter.config.ConfigService;
 import com.yeshi.fanli.service.inter.config.SystemCouponService;
 import com.yeshi.fanli.service.inter.hongbao.HongBaoV2Service;
 import com.yeshi.fanli.service.inter.hongbao.ThreeSaleSerivce;
 import com.yeshi.fanli.service.inter.msg.UserMoneyMsgNotificationService;
+import com.yeshi.fanli.service.inter.msg.UserOtherMsgNotificationService;
 import com.yeshi.fanli.service.inter.order.CommonOrderService;
 import com.yeshi.fanli.service.inter.order.HongBaoOrderService;
 import com.yeshi.fanli.service.inter.order.OrderHongBaoMapService;
@@ -99,6 +102,10 @@
 	
 	@Resource
 	private ThreeSaleSerivce threeSaleSerivce;
+	
+	@Resource
+	private UserOtherMsgNotificationService userOtherMsgNotificationService;
+	
 
 	// 鍒稿け鏁堝浘鐗�
 	public final static String PIC_INVALID = "http://192.168.1.200/icon/mian_invalid.png";
@@ -177,6 +184,25 @@
 		userCoupon.setUpdateTime(new Date());
 		// 鎻掑叆鏁版嵁搴�
 		insertSelective(userCoupon);
+		
+		
+		// 娑堟伅鎺ㄩ��
+		try {
+			if (coupon.getType() != CouponTypeEnum.welfareFreeCoupon) {
+				userOtherMsgNotificationService.welfareCouponGet(userCoupon);
+			} else if (coupon.getType() != CouponTypeEnum.freeCoupon) {
+				userOtherMsgNotificationService.freeSheetCouponGet(userCoupon);
+			} else if (coupon.getType() != CouponTypeEnum.rebatePercentCoupon) {
+				userOtherMsgNotificationService.rewardCouponGet(userCoupon);
+			}
+			
+		} catch(Exception e) {
+			try {
+				LogHelper.errorDetailInfo(e);
+			} catch (Exception e1) {
+				e1.printStackTrace();
+			}
+		}
 	}
 
 	
@@ -188,7 +214,12 @@
 		if (uid == null) {
 			return null;
 		}
-
+		
+		// 鏇存柊杩囨湡鍒�
+		updateCounponInvalid(uid);
+		// 閫�鍥炲埜
+		sendBackCoupon(uid);
+		
 		List<UserSystemCouponVO> listVO = userSystemCouponMapper.getUserCouponVOList(start, count, uid);
 		if (listVO == null || listVO.size() == 0) {
 			return listVO;
@@ -430,6 +461,12 @@
 		if (uid == null) {
 			throw new UserSystemCouponException(1, "鐢ㄦ埛鏈櫥褰�");
 		}
+		
+		// 鏇存柊杩囨湡鍒�
+		updateCounponInvalid(uid);
+		// 閫�鍥炲埜
+		sendBackCoupon(uid);
+				
 		// 璁㈠崟鐩稿叧鐨勫埜
 		List<SystemCoupon> couponList = systemCouponService.getOrderCouponList();
 		if (couponList == null || couponList.size() == 0) {
@@ -444,6 +481,12 @@
 		if (uid == null) {
 			throw new UserSystemCouponException(1, "鐢ㄦ埛鏈櫥褰�");
 		}
+		
+		// 鏇存柊杩囨湡鍒�
+		updateCounponInvalid(uid);
+		// 閫�鍥炲埜
+		sendBackCoupon(uid);
+		
 		// 鍟嗗搧鐩稿叧鐨勫埜
 		List<SystemCoupon> couponList = systemCouponService.getGoodsCouponList();
 		if (couponList == null || couponList.size() == 0) {
@@ -502,6 +545,19 @@
 		couponRecord.setCreateTime(date);
 		couponRecord.setUpdateTime(date);
 		userSystemCouponRecordService.insertSelective(couponRecord);
+		
+		// 娑堟伅鎺ㄩ��
+		try {
+			if (baseCoupon.getType() != CouponTypeEnum.welfareFreeCoupon) {
+				userOtherMsgNotificationService.welfareCouponUsing(userSystemCoupon);
+			} else if (baseCoupon.getType() != CouponTypeEnum.freeCoupon) {
+				userOtherMsgNotificationService.freeSheetCouponUsing(userSystemCoupon);
+			}
+			
+		} catch(Exception e) {
+			LogHelper.errorDetailInfo(e);
+		}
+		
 	}
 
 	@Transactional
@@ -607,6 +663,13 @@
 			couponRecord.setCreateTime(date);
 			couponRecord.setUpdateTime(date);
 			userSystemCouponRecordService.insertSelective(couponRecord);
+			
+			// 娑堟伅鎺ㄩ��
+			try {
+				userOtherMsgNotificationService.rewardCouponUsed(userSystemCoupon);
+			} catch(Exception e) {
+				LogHelper.errorDetailInfo(e);
+			}
 		}
 
 	}
@@ -887,6 +950,95 @@
 		return userRecordVO;
 	}
 
+	@Override
+	public void updateCounponInvalid(Long uid) {
+		List<UserSystemCoupon> list = userSystemCouponMapper.getCounponNowInvalid(uid);
+		if (list == null || list.size() == 0) {
+			return;
+		}
+		
+		for (UserSystemCoupon userSystemCoupon: list) {
+			// 鏇存柊鍒稿凡杩囨湡
+			userSystemCoupon.setState(UserSystemCoupon.STATE_OVERDUE);
+			userSystemCouponMapper.updateByPrimaryKeySelective(userSystemCoupon);
+			
+			SystemCoupon systemCoupon = userSystemCoupon.getSystemCoupon();
+			if (systemCoupon == null) {
+				continue;
+			}
+			
+			SystemCoupon baseCoupon = systemCouponService.selectByPrimaryKey(systemCoupon.getId());
+			if (baseCoupon == null || baseCoupon.getId() == null) {
+				continue;
+			}
+			
+			// 娑堟伅鎺ㄩ��
+			try {
+				if (baseCoupon.getType() != CouponTypeEnum.welfareFreeCoupon) {
+					userOtherMsgNotificationService.welfareCouponAlreadyOutOfDate(userSystemCoupon);
+				} else if (baseCoupon.getType() != CouponTypeEnum.freeCoupon) {
+					userOtherMsgNotificationService.freeSheetCouponAlreadyOutOfDate(userSystemCoupon);
+				} else if (baseCoupon.getType() != CouponTypeEnum.rebatePercentCoupon) {
+					userOtherMsgNotificationService.rewardCouponAlreadyOutOfDate(userSystemCoupon);
+				}
+				
+			} catch(Exception e) {
+				try {
+					LogHelper.errorDetailInfo(e);
+				} catch (Exception e1) {
+					e1.printStackTrace();
+				}
+			}
+		}
+	}
+	
+	@Override
+	public void  sendBackCoupon(Long uid) {
+		// 瓒呰繃120绉� 鏈鍖归厤鐨勫埜
+		List<UserSystemCouponRecord> list = userSystemCouponRecordService.getCouponByUsingTimeOut(uid, 120);
+		if (list == null || list.size() == 0) {
+			return;
+		}
+		
+		for (UserSystemCouponRecord couponRecord: list) {
+			// 鏇存柊鐘舵�侊細鍖归厤瓒呮椂
+			couponRecord.setState(UserSystemCouponRecord.STATE_WAIT_TIME_OUT);
+			couponRecord.setUpdateTime(new Date());
+			userSystemCouponRecordService.updateByPrimaryKeySelective(couponRecord);
+			
+			UserSystemCoupon userSystemCoupon = couponRecord.getUserSystemCoupon();
+			// 鐘舵�佸垵濮嬪寲
+			userSystemCoupon.setState(UserSystemCoupon.STATE_CAN_USE);
+			userSystemCoupon.setUseTime(null);
+			
+			int expiryDay = 15;
+			
+			SystemCoupon systemCoupon = userSystemCoupon.getSystemCoupon();
+			SystemCoupon coupon= systemCouponService.selectByPrimaryKey(systemCoupon.getId());
+			if (coupon != null) {
+				expiryDay = coupon.getExpiryDay();
+			} 
+			
+			// 缁撴潫鏃ユ湡
+			Date endTime = null;
+			try {
+				String endDay = DateUtil.plusDay(expiryDay, new Date());
+				SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
+				endTime = format.parse(endDay);
+			} catch (ParseException e) {
+				e.printStackTrace();
+			}
+			
+			// 鏈夋晥鏈熸椂闂撮噸鏂板畾涔�
+			userSystemCoupon.setStartTime(new Date());
+			userSystemCoupon.setEndTime(endTime);
+			userSystemCoupon.setUpdateTime(new Date());
+			userSystemCouponMapper.updateByPrimaryKey(userSystemCoupon);
+		}
+		
+	}
+	
+	
 	
 	
 }

--
Gitblit v1.8.0