Selaa lähdekoodia

fix: 已购列表

hsun 3 vuotta sitten
vanhempi
commit
7eea4c4bf0
1 muutettua tiedostoa jossa 5 lisäystä ja 2 poistoa
  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 {
 	if dayReport.Id > 0 {
 		reports = append(reports, dayReport)
 		reports = append(reports, dayReport)
 	}
 	}
-	if weekReport != nil {
+	if weekReport != nil && weekReport.Id > 0 {
 		reports = append(reports, weekReport)
 		reports = append(reports, weekReport)
 	}
 	}
 	//获取未读数
 	//获取未读数
@@ -125,6 +125,7 @@ func GetLatestClassReport(permissionIds []int, userId uint64) (purchaseList []*p
 		err = tErr
 		err = tErr
 		return
 		return
 	}
 	}
+
 	if len(reports) > 0 {
 	if len(reports) > 0 {
 		otherLatestItem := new(purchase.PurchaseListItem)
 		otherLatestItem := new(purchase.PurchaseListItem)
 		// 处理其他报告()
 		// 处理其他报告()
@@ -176,7 +177,9 @@ func GetLatestClassReport(permissionIds []int, userId uint64) (purchaseList []*p
 
 
 			purchaseList = append(purchaseList, temp)
 			purchaseList = append(purchaseList, temp)
 		}
 		}
-		purchaseList = append(purchaseList, otherLatestItem)
+		if otherLatestItem.ReportId > 0 {
+			purchaseList = append(purchaseList, otherLatestItem)
+		}
 	}
 	}
 	return
 	return
 }
 }