From fe879975a3e8a0a1aa280fb839e02d159bfbcff8 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 27 八月 2019 18:04:38 +0800
Subject: [PATCH] 金币任务多次获取bug修改

---
 fanli/src/main/java/com/yeshi/fanli/util/factory/msg/UserMsgVOFactory.java |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/UserMsgVOFactory.java b/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/UserMsgVOFactory.java
index 08e4562..2eb2630 100644
--- a/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/UserMsgVOFactory.java
+++ b/fanli/src/main/java/com/yeshi/fanli/util/factory/msg/UserMsgVOFactory.java
@@ -626,7 +626,15 @@
 			if (dto.getLeftDay() != null) {
 				contentList = new ArrayList<>();
 				contentList.add(new ClientTextStyleVO(dto.getLeftDay() + "", COLOR_HIGHLIGHT_CONTENT));
-				contentList.add(new ClientTextStyleVO("澶�", COLOR_CONTENT));
+				
+				if (msg.getType() == MsgTypeOtherTypeEnum.couponReward) {
+					contentList.add(new ClientTextStyleVO("澶╋紙鏈娇鐢ㄥ皢浼氳繃鏈燂級", COLOR_CONTENT));
+				} else if (msg.getType() == MsgTypeOtherTypeEnum.couponMianDan) {
+					contentList.add(new ClientTextStyleVO("澶╋紙鏈娇鐢ㄥ皢浼氳繃鏈燂級", COLOR_CONTENT));
+				} else {
+					contentList.add(new ClientTextStyleVO("澶�", COLOR_CONTENT));
+				}
+				
 				items.add(new CommonMsgItemVO(new ClientTextStyleVO("鍓╀綑澶╂暟", COLOR_TITLE), contentList));
 			}
 
@@ -758,9 +766,8 @@
 			if (dto == null)
 				return null;
 
-			icon = "http://img.flqapp.com/resource/msg/icon_msg_other_tlj.png";
+			icon = "http://img.flqapp.com/resource/msg/icon_msg_other_integral.png";
 			
-
 			List<ClientTextStyleVO> contentList = new ArrayList<>();
 			contentList.add(new ClientTextStyleVO(dto.getState(), COLOR_CONTENT));
 			items.add(new CommonMsgItemVO(new ClientTextStyleVO("鐘舵��", COLOR_TITLE), contentList));
@@ -774,7 +781,7 @@
 			if (!StringUtil.isNullOrEmpty(dto.getTotalGold())) {
 				contentList = new ArrayList<>();
 				contentList.add(new ClientTextStyleVO(dto.getTotalGold() + "", COLOR_CONTENT));
-				items.add(new CommonMsgItemVO(new ClientTextStyleVO("閲戝竵鎬绘暟", COLOR_TITLE), contentList));
+				items.add(new CommonMsgItemVO(new ClientTextStyleVO("鍓╀綑", COLOR_TITLE), contentList));
 			}
 
 			if (!StringUtil.isNullOrEmpty(dto.getThing())) {

--
Gitblit v1.8.0