李昊 4 년 전
부모
커밋
9a209c07c1

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

@@ -396,8 +396,7 @@ namespace GxPress.Repository.Implement
                                 WHERE
                                     FlowId = b.SourceId
                                         AND type = 'ApproverCheck'
-                                        AND IsDone = 1
-                                        AND IsChecked = 1) AS CheckedCount,
+                                        AND IsRead = 1) AS CheckedCount,
                                         (SELECT 
                                                 IsRead
                                             FROM
@@ -414,7 +413,7 @@ namespace GxPress.Repository.Implement
                                             WHERE
                                                 UserId = b.UserId
                                                     AND FlowId = b.SourceId
-                                                    AND Type = 'ApproverCheck'
+                                                    AND Type = 'ApproverCheck' and IsRead=1
                                             LIMIT 1) AS IsFlowChecked,
                                         (SELECT 
                                                 IsRead

+ 35 - 4
gx_api/GxPress/Service/GxPress.Service.Implement/Collection/CollectionService.cs

@@ -125,6 +125,8 @@ namespace GxPress.Service.Implement.Collection
             {
                 var topic = await _topicRepository.GetAsync(request.CollectionDataId);
                 collection.Title = topic.Title;
+                if (string.IsNullOrEmpty(collection.Title))
+                    collection.Title = GetCollctionTitle(topic.Content);
                 //收藏
                 analyzeRequest.TypeValue = request.CollectionType;
                 await _analyzeService.SetAnalyzeAsync(analyzeRequest);
@@ -145,24 +147,30 @@ namespace GxPress.Service.Implement.Collection
                 await _analyzeService.SetAnalyzeAsync(analyzeRequest);
                 var note = await _noteRepository.GetAsync(request.CollectionDataId);
                 collection.Title = note.Title;
+                if (string.IsNullOrEmpty(collection.Title))
+                    collection.Title = GetCollctionTitle(note.Content);
             }
             //通知
-            else if (request.CollectionType == AllTypeConst.Notice.GetHashCode())
+            else if (request.CollectionType == AllTypeConst.Inbox.GetHashCode())
             {
                 //通知
                 analyzeRequest.TypeValue = request.CollectionType;
                 await _analyzeService.SetAnalyzeAsync(analyzeRequest);
                 var notice = await _noticeRepository.GetAsync(request.CollectionDataId);
                 collection.Title = notice.Title;
+                if (string.IsNullOrEmpty(collection.Title))
+                    collection.Title = GetCollctionTitle(notice.Content);
             }
             //站内信
-            else if (request.CollectionType == AllTypeConst.Missive.GetHashCode())
+            else if (request.CollectionType == AllTypeConst.Inbox.GetHashCode())
             {
-                var missive = await _missiveRepository.GetAsync(request.CollectionDataId);
-                collection.Title = missive.Title;
+                var notice = await _noticeRepository.GetAsync(request.CollectionDataId);
+                collection.Title = notice.Title;
                 //站内信
                 analyzeRequest.TypeValue = request.CollectionType;
                 await _analyzeService.SetAnalyzeAsync(analyzeRequest);
+                if (string.IsNullOrEmpty(collection.Title))
+                    collection.Title = GetCollctionTitle(notice.Content);
             }
             //收藏会议
             if (request.CollectionType == AllTypeConst.Meeting.GetHashCode())
@@ -671,5 +679,28 @@ namespace GxPress.Service.Implement.Collection
             var data = JsonConvert.DeserializeObject<List<CollectionContentJsonData>>(json);
             return await AnalyzeAsync(data);
         }
+        /// <summary>
+        /// 
+        /// </summary>
+        /// <param name="content"></param>
+        /// <returns></returns>
+        public string GetCollctionTitle(string content)
+        {
+            if (!string.IsNullOrEmpty(content))
+            {
+
+                var forCount = 1;
+                var contentJsonData = JsonConvert.DeserializeObject<List<ContentJsonData>>(content);
+                foreach (var jsonData in contentJsonData)
+                {
+                    if (jsonData.TypeValue == AllTypeConst.Text.GetHashCode() && forCount == 1)
+                        //文本
+                        return jsonData.Text;
+                    else
+                        break;
+                }
+            }
+            return "";
+        }
     }
 }

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

@@ -349,10 +349,10 @@ namespace GxPress.Service.Implement.Notice
                     item.EnjoyUser = item.FlowUserName;
                     //我发起的
                     if (item.TypeValue == AllTypeConst.MySubmitted.GetHashCode())
-                        item.IsRead = item.IsMyFlowRead;
+                        item.IsRead = true;
                     //我抄送
                     if (item.TypeValue == AllTypeConst.MyCc.GetHashCode())
-                        item.IsRead = item.IsFlowRead;
+                        item.IsRead = true;
                     //我审批
                     if (item.TypeValue == AllTypeConst.MyChecked.GetHashCode())
                         item.IsRead = item.IsFlowChecked;