李昊 %!s(int64=4) %!d(string=hai) anos
pai
achega
55c4e6b040

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

@@ -388,9 +388,7 @@ namespace GxPress.Repository.Implement
                                     tede_flow_todo
                                 WHERE
                                     FlowId = b.SourceId
-                                        AND type = 'ApproverCheck'
-                                        AND IsDone = 0
-                                        AND IsChecked = 0) AS UCheckedCount,
+                                        AND type = 'ApproverCheck') AS UCheckedCount,
                             (SELECT 
                                     COUNT(1)
                                 FROM

+ 9 - 8
gx_api/GxPress/Service/GxPress.Service.Implement/Notice/NoticeService.cs

@@ -343,7 +343,7 @@ namespace GxPress.Service.Implement.Notice
                     item.MiddleId = item.SourceId;
                     //item.UserName = item.SendUserName;
                     item.ReadCount = item.CheckedCount;
-                    item.UReadCount = item.UCheckedCount;
+                    item.AllCount = item.UCheckedCount;
                     item.EnjoyUser = item.FlowUserName;
                     //我发起的
                     if (item.TypeValue == AllTypeConst.MySubmitted.GetHashCode())
@@ -372,14 +372,15 @@ namespace GxPress.Service.Implement.Notice
                     {
                         item.FlowState = FlowState.Checking;
                     }
-                    item.Title = _contentJsonService.GetTitile(item.Title, item.Content);
-                    if (item.IsDelete == true)
-                        item.NoticeStatus = 0;
-                    else if (item.NoticeAddresseeType == NoticeTypeConst.Draft)
-                        item.NoticeStatus = 2;
-                    else
-                        item.NoticeStatus = 1;
+
                 }
+                item.Title = _contentJsonService.GetTitile(item.Title, item.Content);
+                if (item.IsDelete == true)
+                    item.NoticeStatus = 0;
+                else if (item.NoticeAddresseeType == NoticeTypeConst.Draft)
+                    item.NoticeStatus = 2;
+                else
+                    item.NoticeStatus = 1;
             }
             return result;
         }