|
@@ -135,6 +135,7 @@ namespace GxPress.Repository.Implement
|
|
public async Task<PagedList<GroupUserFindResult>> FindGroupByGroupFolderId(GroupSearchRequest request)
|
|
public async Task<PagedList<GroupUserFindResult>> FindGroupByGroupFolderId(GroupSearchRequest request)
|
|
{
|
|
{
|
|
var pagedList = new PagedList<GroupUserFindResult>();
|
|
var pagedList = new PagedList<GroupUserFindResult>();
|
|
|
|
+ var groupConst = AllTypeConst.Group.GetHashCode();
|
|
//根据文件夹ID查询成员
|
|
//根据文件夹ID查询成员
|
|
var sqlValue = "";
|
|
var sqlValue = "";
|
|
// if (!string.IsNullOrEmpty(request.Key))
|
|
// if (!string.IsNullOrEmpty(request.Key))
|
|
@@ -168,7 +169,7 @@ namespace GxPress.Repository.Implement
|
|
else
|
|
else
|
|
sql += $" and (a.FolderName like '%{request.Key}%' or b.Name like '%{request.Key}%')";
|
|
sql += $" and (a.FolderName like '%{request.Key}%' or b.Name like '%{request.Key}%')";
|
|
sql +=
|
|
sql +=
|
|
- $@" and a.UserId=@userId and a.FolderType=7 and a.IsDelete=0 {sqlValue} and (b.id>0 or a.AttributeValue=2) ORDER BY a.IsTop DESC, a.LastModifiedDate DESC ,a.AttributeValue DESC LIMIT @page , @pageSize";
|
|
|
|
|
|
+ $@" and a.UserId=@userId and a.FolderType={groupConst} and a.IsDelete=0 {sqlValue} and (b.id>0 or a.AttributeValue=2) ORDER BY a.IsTop DESC, a.LastModifiedDate DESC ,a.AttributeValue DESC LIMIT @page , @pageSize";
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
var database = new Database(databaseType, _connectionString);
|
|
var database = new Database(databaseType, _connectionString);
|
|
var connection = database.GetConnection();
|
|
var connection = database.GetConnection();
|
|
@@ -202,7 +203,7 @@ namespace GxPress.Repository.Implement
|
|
else
|
|
else
|
|
sql += $" and (a.FolderName like '%{request.Key}%' or b.Name like '%{request.Key}%')";
|
|
sql += $" and (a.FolderName like '%{request.Key}%' or b.Name like '%{request.Key}%')";
|
|
sqlCount +=
|
|
sqlCount +=
|
|
- $" and a.UserId={request.UserId} and a.FolderType=7 and a.IsDelete=0 {sqlValue} and (b.id>0 or a.AttributeValue=2)";
|
|
|
|
|
|
+ $" and a.UserId={request.UserId} and a.FolderType={groupConst} and a.IsDelete=0 {sqlValue} and (b.id>0 or a.AttributeValue=2)";
|
|
pagedList.Total = await FindGroupByGroupFolderIdCountAsync(sqlCount);
|
|
pagedList.Total = await FindGroupByGroupFolderIdCountAsync(sqlCount);
|
|
return pagedList;
|
|
return pagedList;
|
|
}
|
|
}
|
|
@@ -258,7 +259,7 @@ namespace GxPress.Repository.Implement
|
|
//获取当前用户的权限
|
|
//获取当前用户的权限
|
|
groupDetailResult.GroupUserRoleId = groupUser != null ? groupUser.GroupUserRoleId : 0;
|
|
groupDetailResult.GroupUserRoleId = groupUser != null ? groupUser.GroupUserRoleId : 0;
|
|
groupDetailResult.IsUDisturb = groupUser != null ? groupUser.IsUDisturb : false;
|
|
groupDetailResult.IsUDisturb = groupUser != null ? groupUser.IsUDisturb : false;
|
|
- groupDetailResult.IsAdmin = groupUser != null ? groupUser.UserId == groupDetailResult.UserId : false;
|
|
|
|
|
|
+ //groupDetailResult.IsAdmin = groupUser != null ? groupUser.UserId == groupDetailResult.UserId : false;
|
|
groupDetailResult.IsUser = groupUser != null ? groupUser.UserId == request.UserId : false;
|
|
groupDetailResult.IsUser = groupUser != null ? groupUser.UserId == request.UserId : false;
|
|
groupDetailResult.CreatedDate = groupDetail.CreatedDate;
|
|
groupDetailResult.CreatedDate = groupDetail.CreatedDate;
|
|
return groupDetailResult;
|
|
return groupDetailResult;
|