lihao 4 anni fa
parent
commit
b9b6d7c98c

+ 27 - 5
gx_api/GxPress/Repository/GxPress.Repository.Implement/Note/NoteRepository.cs

@@ -277,9 +277,16 @@ namespace GxPress.Repository.Implement.Note
                         WHERE
                         UserId = {request.UserId} AND MiddleId = {sqlStr}))";
                 if (request.TypeValue == 0)
+
                     sql += "and  (a.RoleId in(2) or a.AttributeValue=1)";
                 else
-                    sql += "and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                {
+
+                    if (request.FolderId != 0)
+                        sql += "and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                    else
+                        sql += "and  (a.RoleId in(1,3))";
+                }
                 if (request.FolderId == 0 && !string.IsNullOrEmpty(request.SearchKey))
                     sql += $@"  AND(b.Title LIKE '%{request.SearchKey}%' OR a.FolderName LIKE '%{request.SearchKey}%' or b.Content LIKE '%{request.SearchKey}%' or b.UserId in (select Id from tede_user where name like '%{request.SearchKey}%'))";
                 else if (!string.IsNullOrEmpty(request.SearchKey))
@@ -392,7 +399,12 @@ namespace GxPress.Repository.Implement.Note
                 if (request.TypeValue == 0)
                     sql += "and  (a.RoleId in(2) or a.AttributeValue=1)";
                 else
-                    sql += "and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                {
+                    if (request.FolderId != 0)
+                        sql += "and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                    else
+                        sql += "and  (a.RoleId in(1,3))";
+                }
                 if (request.FolderId == 0 && !string.IsNullOrEmpty(request.SearchKey))
                     sql += $@"  AND(b.Title LIKE '%{request.SearchKey}%' OR a.FolderName LIKE '%{request.SearchKey}%' or b.Content LIKE '%{request.SearchKey}%' or b.UserId in (select Id from tede_user where name like '%{request.SearchKey}%'))";
                 else if (!string.IsNullOrEmpty(request.SearchKey))
@@ -451,7 +463,12 @@ namespace GxPress.Repository.Implement.Note
                 if (request.TypeValue == 0)
                     sql += "and  (a.RoleId in(2) or a.AttributeValue=1)";
                 else
-                    sql += "and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                {
+                    if (request.FolderId != 0)
+                        sql += "and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                    else
+                        sql += "and  (a.RoleId in(1,3))";
+                }
                 if (request.FolderId == 0 && !string.IsNullOrEmpty(request.SearchKey))
                     sql += $@"  AND(b.Title LIKE '%{request.SearchKey}%' OR a.FolderName LIKE '%{request.SearchKey}%' or b.Content LIKE '%{request.SearchKey}%' or b.UserId in (select Id from tede_user where name like '%{request.SearchKey}%'))";
                 else if (!string.IsNullOrEmpty(request.SearchKey))
@@ -464,9 +481,14 @@ namespace GxPress.Repository.Implement.Note
                 sql =
                     $@"SELECT  count(1) FROM tede_middle a LEFT JOIN tede_note b ON a.MiddleId = b.Id left join tede_user c on c.Id=b.UserId left join tede_department d on d.Id=c.DepartmentId WHERE a.UserId = {request.UserId} AND a.FolderType ={noteTypeId} AND a.IsDelete = 0";
                 if (request.TypeValue == 0)
-                    sql += " and  (a.RoleId in(2) or a.AttributeValue=1)";
+                    sql += "and  (a.RoleId in(2) or a.AttributeValue=1)";
                 else
-                    sql += " and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                {
+                    if (request.FolderId != 0)
+                        sql += "and  (a.RoleId in(1,3) or a.AttributeValue=1)";
+                    else
+                        sql += "and  (a.RoleId in(1,3))";
+                }
                 if (request.FolderId == 0 && !string.IsNullOrEmpty(request.SearchKey))
                     sql += $@"  AND(b.Title LIKE '%{request.SearchKey}%' OR a.FolderName LIKE '%{request.SearchKey}%' or b.Content LIKE '%{request.SearchKey}%' or b.UserId in (select Id from tede_user where name like '%{request.SearchKey}%'))";
                 else if (!string.IsNullOrEmpty(request.SearchKey))

+ 0 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/TopicRepository.cs

@@ -776,6 +776,5 @@ namespace GxPress.Repository.Implement
             result.Total = await connection.ExecuteScalarAsync<int>(sql);
             return result;
         }
-
     }
 }