瀏覽代碼

fix:阅读记录详情修复

zqbao 9 月之前
父節點
當前提交
b577ea90db
共有 2 個文件被更改,包括 21 次插入1 次删除
  1. 7 1
      controllers/user_read_record.go
  2. 14 0
      models/user_read_record.go

+ 7 - 1
controllers/user_read_record.go

@@ -254,13 +254,19 @@ func (this *UserReadRecordController) Detail() {
 		}
 	}
 
+	total, err := models.GetUserReadRecordCountByUserId(UserId, condition, pars)
+	if err != nil {
+		br.Msg = "查询阅读记录失败"
+		br.ErrMsg = "查询阅读记录失败,Err:" + err.Error()
+		return
+	}
 	readList, err := models.GetUserReadRecordByUserId(UserId, condition, pars, startSize, pageSize)
 	if err != nil {
 		br.Msg = "查询阅读记录失败"
 		br.ErrMsg = "查询阅读记录失败,系统错误,Err:" + err.Error()
 		return
 	}
-	page := paging.GetPaging(currentIndex, pageSize, len(readList))
+	page := paging.GetPaging(currentIndex, pageSize, total)
 	resp := new(response.UserReadRecordListResp)
 	resp.Paging = page
 	resp.List = readList

+ 14 - 0
models/user_read_record.go

@@ -53,6 +53,20 @@ func GetUserReadRecordByUserId(userId int, condition string, pars []interface{},
 	return
 }
 
+func GetUserReadRecordCountByUserId(userId int, condition string, pars []interface{}) (count int, err error) {
+	o := orm.NewOrm()
+	sql := `SELECT COUNT(*) AS count
+	  	FROM user_read_record AS ur
+		LEFT JOIN user_read_permission2 AS urp2
+		ON ur.user_read_record_id = urp2.user_read_record_id
+		WHERE user_id = ? `
+	if condition != "" {
+		sql += condition
+	}
+	err = o.Raw(sql, userId, pars).QueryRow(&count)
+	return
+}
+
 func GetStaticReadCnt(condition string, pars []interface{}, startDate, endDate string) (items []*ReadCntStaitc, err error) {
 	o := orm.NewOrm()
 	sql := `SELECT create_date, COUNT(*) AS count