瀏覽代碼

Merge branch 'debug' of http://8.136.199.33:3000/hongze/hongze_cygx into debug

xingzai 2 年之前
父節點
當前提交
f52c437ed2
共有 2 個文件被更改,包括 8 次插入8 次删除
  1. 6 6
      controllers/report.go
  2. 2 2
      models/report.go

+ 6 - 6
controllers/report.go

@@ -392,7 +392,7 @@ func (this *ReportController) ArticleCategoryList() {
 			return
 		}
 		var recordItem *models.CygxPageHistoryRecord
-		if count > 0 {
+		if count > 1 {
 			recordItem, err = models.GetTimeLineRecordItem(user.UserId, industrialManagementId)
 			if err != nil {
 				br.Msg = "查询浏览记录失败"
@@ -413,9 +413,9 @@ func (this *ReportController) ArticleCategoryList() {
 		}
 		//因为无法记录用户是否看过晨会点评,所以用用户今天是否看过时间线来判断是否显示小红点,这里是判断分类的小红点
 		timeLineRed := false
-		if count == 0 {
+		if count < 2 {
 			timeLineRed = true
-		} else if count > 0 && recordItem.CreateTime.Before(utils.StrTimeToTime(morningMeetingTime)){
+		} else if count > 1 && recordItem.CreateTime.Before(utils.StrTimeToTime(morningMeetingTime)){
 			timeLineRed = true
 		}
 		if !timeLineItem.IsRed && timeLineRed && haveMorningMeeting {
@@ -667,7 +667,7 @@ func (this *ReportController) List() {
 			return
 		}
 		var recordItem *models.CygxPageHistoryRecord
-		if count > 0 {
+		if count > 1 {
 			recordItem, err = models.GetTimeLineRecordItem(user.UserId, industrialManagementId)
 			if err != nil {
 				br.Msg = "查询浏览记录失败"
@@ -681,9 +681,9 @@ func (this *ReportController) List() {
 				list[k].IsRed = true
 			}
 			timeLineRed := false
-			if count == 0 {
+			if count < 2 {
 				timeLineRed = true
-			} else if count > 0 && recordItem.CreateTime.Before(utils.StrTimeToTime(v.PublishTime)){
+			} else if count > 1 && recordItem.CreateTime.Before(utils.StrTimeToTime(v.PublishTime)){
 				timeLineRed = true
 			}
 			if v.SubCategoryName == "时间线" && timeLineRed {

+ 2 - 2
models/report.go

@@ -901,7 +901,7 @@ FROM
 	SELECT
 		mmc.id,
 		'' AS title,
-		mm.meeting_time AS publish_time,
+		mm.publish_time AS publish_time,
 		'' AS video_url,
 		'时间线' AS sub_category_name,
 		mmc.content,
@@ -935,7 +935,7 @@ type IndustrialReadNum struct {
 //获取该产业下文章的用户阅读次数-小红点用
 func GetReportIndustrialReadNumList(userId int, industrialIds string) (items []*IndustrialReadNum, err error) {
 	o := orm.NewOrm()
-	sql := `SELECT a.industrial_management_id, SUM(a.readnum) AS readnum FROM (
+	sql := `SELECT a.industrial_management_id, MIN(a.readnum) AS readnum FROM (
 SELECT man_g.industrial_management_id,( SELECT COUNT( 1 ) FROM cygx_article_history_record AS rec WHERE rec.user_id = ` + strconv.Itoa(userId) + ` AND rec.article_id = a.article_id ) AS readnum 
 FROM
 	cygx_article AS a