From 972d3bc71115ec977dccf835fbcd148da3bcc86c Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期二, 03 九月 2019 16:41:49 +0800
Subject: [PATCH] 统计可用的免单券数量-countUsableFreeCouponForBuy

---
 fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java |   48 +++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 47 insertions(+), 1 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java
index 9369351..d3ec032 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SpecialServiceImpl.java
@@ -2,6 +2,7 @@
 
 import java.io.InputStream;
 import java.util.ArrayList;
+import java.util.Calendar;
 import java.util.Date;
 import java.util.List;
 import java.util.UUID;
@@ -17,11 +18,13 @@
 
 import com.yeshi.fanli.dao.mybatis.homemodule.SpecialMapper;
 import com.yeshi.fanli.dto.common.CommonContentTypeEnum;
+import com.yeshi.fanli.entity.AppVersionInfo;
 import com.yeshi.fanli.entity.accept.AcceptData;
 import com.yeshi.fanli.entity.bus.homemodule.Special;
 import com.yeshi.fanli.entity.common.JumpDetailV2;
 import com.yeshi.fanli.exception.homemodule.SpecialException;
 import com.yeshi.fanli.service.inter.common.JumpDetailV2Service;
+import com.yeshi.fanli.service.inter.config.AppVersionService;
 import com.yeshi.fanli.service.inter.config.ConfigService;
 import com.yeshi.fanli.service.inter.homemodule.SpecialCardService;
 import com.yeshi.fanli.service.inter.homemodule.SpecialPlaceService;
@@ -49,6 +52,10 @@
 
 	@Resource
 	private ConfigService configService;
+	
+	@Resource
+	private AppVersionService appVersionService;
+	
 
 	@Override
 	public Special selectByPrimaryKey(Long id) {
@@ -72,6 +79,26 @@
 		Integer sex = record.getSex();
 		if (sex == null) {
 			throw new SpecialException(1, "鎬у埆涓嶈兘涓虹┖");
+		}
+
+		String version = record.getVersion();
+		Integer platformCode = record.getPlatform();
+		if (!StringUtil.isNullOrEmpty(version) && platformCode != null) {
+			String platform = "android";
+			if (platformCode == 2)
+				platform = "ios";
+			AppVersionInfo versionInfo = appVersionService.getByPlatformAndVersion(platform, version);
+			if (versionInfo == null)
+				throw new SpecialException(1, "鐗堟湰鍙蜂俊鎭己澶�");
+			
+			record.setVersionCode(versionInfo.getVersionCode());
+			record.setPlatform(platformCode);
+		} else {
+			if (!StringUtil.isNullOrEmpty(version))
+				throw new SpecialException(1, "骞冲彴绫诲瀷涓嶈兘涓虹┖");
+			
+			if (platformCode != null) 
+				throw new SpecialException(1, "鐗堟湰鍙蜂笉鑳戒负绌�");
 		}
 
 		String params = record.getParams();
@@ -365,6 +392,13 @@
 	}
 
 	@Override
+	@Cacheable(value = "specialCache", key = "'listByVersion-'+#start+'-'+#count+'-'+#card+'-'+#platform+'-'+#versionCode")
+	public List<Special> listByVersion(long start, int count, String card, Integer platform, Integer versionCode) {
+		return specialMapper.listByVersion(start, count, card, platform, versionCode);
+	}
+	
+	
+	@Override
 	@Cacheable(value = "specialCache", key = "'listCacheSpecialToIndex'+#acceptData.platform+'-'+#acceptData.version+'-'+#sex")
 	public JSONObject listCacheSpecialToIndex(AcceptData acceptData, Integer sex) throws Exception {
 
@@ -372,7 +406,7 @@
 		JSONObject arcMap = new JSONObject();
 
 		String indexArc = "index_arc";
-		if (VersionUtil.greaterThan_1_5_60(acceptData.getPlatform(), acceptData.getVersion()))
+		if (VersionUtil.greaterThan_1_6_0(acceptData.getPlatform(), acceptData.getVersion()))
 			indexArc = "index_arc_1.6.0";
 		else if (VersionUtil.greaterThan_1_5_70(acceptData.getPlatform(), acceptData.getVersion()))
 			indexArc = "index_arc_1.5.7";
@@ -390,6 +424,8 @@
 			}
 		}
 
+		int hour = Calendar.getInstance().get(Calendar.HOUR_OF_DAY);
+
 		// 澶勭悊9.9鍖呴偖
 		if (listArc != null && VersionUtil.greaterThan_1_5_50(acceptData.getPlatform(), acceptData.getVersion()))
 			for (Special s : listArc) {
@@ -399,6 +435,16 @@
 					params.put("key", CommonContentTypeEnum._9k9.name());
 					params.put("title", CommonContentTypeEnum._9k9.getDesc());
 					s.setParams(params.toString());
+				} else if (s.getName().contains("鑷喘绔嬪噺")) {
+					if (hour < 6) {// 0-6鐐逛箣闂翠笉杩涘叆鑷喘绔嬪噺鐨勯〉闈�
+						s.setJumpDetail(jumpDetailV2Service.getByTypeCache("web"));
+						JSONObject params = new JSONObject();
+						params.put("url", configService.get("tlj_own_buy_nogoods"));
+						s.setParams(params.toString());
+					} else {
+						s.setJumpDetail(jumpDetailV2Service.getByTypeCache("tlj_own_buy"));
+						s.setParams(null);
+					}
 				}
 			}
 

--
Gitblit v1.8.0