浏览代码

fix: 已购列表

hsun 3 年之前
父节点
当前提交
7eea4c4bf0
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      services/report/report.go

+ 5 - 2
services/report/report.go

@@ -116,7 +116,7 @@ func GetLatestClassReport(permissionIds []int, userId uint64) (purchaseList []*p
 	if dayReport.Id > 0 {
 		reports = append(reports, dayReport)
 	}
-	if weekReport != nil {
+	if weekReport != nil && weekReport.Id > 0 {
 		reports = append(reports, weekReport)
 	}
 	//获取未读数
@@ -125,6 +125,7 @@ func GetLatestClassReport(permissionIds []int, userId uint64) (purchaseList []*p
 		err = tErr
 		return
 	}
+
 	if len(reports) > 0 {
 		otherLatestItem := new(purchase.PurchaseListItem)
 		// 处理其他报告()
@@ -176,7 +177,9 @@ func GetLatestClassReport(permissionIds []int, userId uint64) (purchaseList []*p
 
 			purchaseList = append(purchaseList, temp)
 		}
-		purchaseList = append(purchaseList, otherLatestItem)
+		if otherLatestItem.ReportId > 0 {
+			purchaseList = append(purchaseList, otherLatestItem)
+		}
 	}
 	return
 }