|
@@ -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
|
|
|
}
|