lihao 4 years ago
parent
commit
4dd05ffd07

+ 5 - 0
gx_api/GxPress/Model/GxPress.Result/Notice/NoticeListPageResult.cs

@@ -193,5 +193,10 @@ namespace GxPress.Result.Notice
         /// </summary>
         /// <value></value>
         public int TodoId { get; set; }
+        /// <summary>
+        /// 工作流
+        /// </summary>
+        /// <value></value>
+        public bool IsFlowAdmin { get; set; }
     }
 }

+ 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,b.UserId
+                                    ,(select count(1) from tede_flow where id=b.SourceId and UserId={request.UserId}) as IsFlowAdmin,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;
+                item.IsAdmin = item.UserId == request.UserId;
                 var typeValueIds = new List<int>{AllTypeConst.MyChecked.GetHashCode()
                 ,AllTypeConst.MyCc.GetHashCode(),AllTypeConst.MySubmitted.GetHashCode()};
                 if (typeValueIds.Contains(item.TypeValue))
                 {
+                    item.IsAdmin = item.IsFlowAdmin;
                     item.TodoId = item.SonId;
                     item.MiddleId = item.SourceId;
                     //item.UserName = item.SendUserName;