From aef1627c767ef3cb697973137843617bf4b943b4 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期四, 30 四月 2020 10:26:04 +0800
Subject: [PATCH] 增加禁止用户等级升级名单

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserVIPPreInfoServiceImpl.java |   33 +++++++++++++++++++--------------
 1 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserVIPPreInfoServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserVIPPreInfoServiceImpl.java
index 3cbd1c8..93c893d 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserVIPPreInfoServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/user/vip/UserVIPPreInfoServiceImpl.java
@@ -93,6 +93,10 @@
 	public void addUserVIPPreInfo(UserVIPPreInfo info) throws UserVIPPreInfoException {
 		if (info == null || info.getUid() == null || info.getProcess() == null)
 			throw new UserVIPPreInfoException(1, "淇℃伅涓嶅畬鏁�");
+		for (Long fuid : Constant.NO_UPGRADE_UIDS) {// 绂佹涓嶈兘鍗囩骇鐨勭敤鎴峰崌绾�
+			if (info.getUid().longValue() == fuid)
+				return;
+		}
 
 		UserVIPPreInfo oldInfo = userVIPPreInfoMapper.selectByUidAndProcess(info.getUid(), info.getProcess());
 		if (oldInfo != null)
@@ -171,20 +175,19 @@
 		// 楠岃瘉鏄惁婊¤冻鍗囩骇楂樼骇浼氬憳
 		if (doneZiGou >= limitZiGou7) {
 			try {
-				twoProcess(uid, limitZiGou7, null);
+				twoProcess(uid, limitZiGou7, null, false);
 			} catch (UserVIPPreInfoException e) {
 
 			}
 		}
 	}
-	
+
 	@Override
 	@RequestSerializableByKeyService(key = "#uid")
 	@Transactional(rollbackFor = Exception.class)
 	public void upgradeVipByTeamNum(Long uid) {
 		vipTeamVerify(uid);
 	}
-	
 
 	@Override
 	@RequestSerializableByKeyService(key = "#tid")
@@ -197,8 +200,6 @@
 		vipTeamVerify(boss.getId());
 	}
 
-	
-	
 	/**
 	 * 楠岃瘉鐢ㄦ埛鏄惁婊¤冻鍗囩骇闃熷憳鏉′欢
 	 * @param uid
@@ -220,11 +221,17 @@
 
 		long limitFirst7 = 0;
 		String first7 = userVipConfigService.getValueByKey("vip_pre_7_first_level_team_count");
+		if (Constant.IS_TEST)
+			first7 = "30";
+
 		if (!StringUtil.isNullOrEmpty(first7)) {
 			limitFirst7 = Long.parseLong(first7);
 		}
+
 		long limitSecond7 = 0;
 		String second7 = userVipConfigService.getValueByKey("vip_pre_7_second_level_team_count");
+		if (Constant.IS_TEST)
+			second7 = "30";
 		if (!StringUtil.isNullOrEmpty(second7)) {
 			limitSecond7 = Long.parseLong(second7);
 		}
@@ -232,15 +239,13 @@
 		// 楠岃瘉鏄惁婊¤冻鍗囩骇楂樼骇浼氬憳
 		if (doneFirst >= limitFirst7 && doneSecond >= limitSecond7) {
 			try {
-				twoProcess(uid, limitFirst7, limitSecond7);
+				twoProcess(uid, limitFirst7, limitSecond7, true);
 			} catch (UserVIPPreInfoException e) {
 
 			}
 		}
 	}
-	
-	
-	
+
 	/**
 	 * 浜岄樁娈�
 	 * 
@@ -251,12 +256,12 @@
 	 * @param secondTeam
 	 */
 	@Transactional(rollbackFor = Exception.class)
-	private void twoProcess(Long uid, long limit1, Long limit2) throws UserVIPPreInfoException {
+	private void twoProcess(Long uid, long limit1, Long limit2, boolean teamPass) throws UserVIPPreInfoException {
 		String item = null;
-		if (limit2 == null) {
-			item = "杩斿埄+鍒嗕韩璁㈠崟";
-		} else {
+		if (teamPass) {
 			item = "鐩存帴+闂存帴绮変笣";
+		} else {
+			item = "杩斿埄+鍒嗕韩璁㈠崟";
 		}
 
 		Date upgradeTime = new Date();
@@ -284,7 +289,7 @@
 				registerTime = userInfoRegister.getCreateTime();
 			}
 			int daysBetween = TimeUtil.getDayDifferenceCount(registerTime, upgradeTime);
-			userAccountMsgNotificationService.vipPreUpgrade(uid, "蹇渷杈句汉", "楂樼骇浼氬憳", daysBetween, limit1, limit2);
+			userAccountMsgNotificationService.vipPreUpgrade(uid, "蹇渷杈句汉", "楂樼骇浼氬憳", daysBetween, limit1, limit2, teamPass);
 
 			// 鐩存帴绮変笣鍗囩骇鎻愰啋
 			ThreeSale threeSale = threeSaleSerivce.getMyBoss(uid);

--
Gitblit v1.8.0