lihao 4 年之前
父节点
当前提交
77f447db60

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/NoticeRepository.cs

@@ -537,7 +537,7 @@ namespace GxPress.Repository.Implement
                                     tede_flow
                                 WHERE
                                     id = b.SourceId)) as UserName
-                                    ,(select count(1) from tede_flow where id=b.SourceId and UserId={request.UserId}) as IsAdmin
+                                    ,(select count(1) from tede_flow where id=b.SourceId and UserId={request.UserId}) as IsAdmin,b.UserId
                                     FROM
                                         tede_middle a
                                             left   JOIN

+ 2 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Notice/NoticeService.cs

@@ -337,12 +337,12 @@ namespace GxPress.Service.Implement.Notice
             var result = await _noticeRepository.GetNoticeListPageAsync(request);
             foreach (var item in result.Items)
             {
+                if (item.UserId == request.UserId)
+                    item.IsAdmin = true;
                 var typeValueIds = new List<int>{AllTypeConst.MyChecked.GetHashCode()
                 ,AllTypeConst.MyCc.GetHashCode(),AllTypeConst.MySubmitted.GetHashCode()};
                 if (typeValueIds.Contains(item.TypeValue))
                 {
-                    // if (item.TypeValue == AllTypeConst.MySubmitted.GetHashCode())
-                    //     item.IsAdmin = true;
                     item.TodoId = item.SonId;
                     item.MiddleId = item.SourceId;
                     //item.UserName = item.SendUserName;