856 lines
48 KiB
C#
856 lines
48 KiB
C#
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-01-05 09:17:03
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
//--------------------------------------------------------------------
|
|
|
|
using IRaCIS.Core.Application.Contracts;
|
|
using IRaCIS.Core.Application.Filter;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace IRaCIS.Core.Application.Services
|
|
{
|
|
/// <summary>
|
|
/// TrialDocumentService
|
|
/// </summary>
|
|
[ApiExplorerSettings(GroupName = "Trial")]
|
|
public class TrialDocumentService(IRepository<TrialDocument> _trialDocumentRepository,
|
|
IRepository<TrialDocConfirmedUser> _trialDocUserTypeConfirmedUserRepository,
|
|
IRepository<Trial> _trialRepository,
|
|
ISystemDocumentService _systemDocumentService,
|
|
IRepository<SystemDocConfirmedUser> _systemDocConfirmedUserRepository,
|
|
IRepository<SystemDocNeedConfirmedUserType> _systemDocNeedConfirmedUserTypeRepository,
|
|
IRepository<TrialDocNeedConfirmedUserType> _trialDocNeedConfirmedUserTypeRepository,
|
|
IRepository<SystemDocument> _systemDocumentRepository,
|
|
IRepository<TrialUserRole> _trialUserRoleRepository,
|
|
IRepository<TrialDocConfirmedUser> _trialDocConfirmedUserRepository,
|
|
IRepository<ReadingQuestionCriterionTrial> _readingQuestionCriterionTrialRepository, IMapper _mapper, IUserInfo _userInfo, IStringLocalizer _localizer) : BaseService, ITrialDocumentService
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Setting 界面的 项目所有文档列表
|
|
/// </summary>
|
|
/// <param name="inQuery"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
public async Task<PageOutput<TrialDocumentView>> GetTrialDocumentList(TrialDocumentQuery inQuery)
|
|
{
|
|
|
|
var trialDocumentQueryable = _trialDocumentRepository.AsQueryable(true).Where(t => t.TrialId == inQuery.TrialId)
|
|
.WhereIf(!string.IsNullOrEmpty(inQuery.Name), t => t.Name.Contains(inQuery.Name))
|
|
.WhereIf(inQuery.FileTypeId != null, t => t.FileTypeId == inQuery.FileTypeId)
|
|
.WhereIf(inQuery.UserTypeId != null, t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == inQuery.UserTypeId))
|
|
.WhereIf(inQuery.IsDeleted != null, t => t.IsDeleted == inQuery.IsDeleted)
|
|
.ProjectTo<TrialDocumentView>(_mapper.ConfigurationProvider, new { token = _userInfo.UserToken, isEn_Us = _userInfo.IsEn_Us });
|
|
|
|
return await trialDocumentQueryable.ToPagedListAsync(inQuery);
|
|
}
|
|
|
|
[HttpPost]
|
|
public async Task<PageOutput<TrialSignDocView>> GetTrialSignDocumentList(TrialDocQuery inQuery)
|
|
{
|
|
var trialDocQueryable = from trialDoc in _trialDocumentRepository.AsQueryable(true)
|
|
.WhereIf(inQuery.TrialId != null, t => t.TrialId == inQuery.TrialId)
|
|
.Where(t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
|
|
join trialUser in _trialUserRoleRepository.Where(t => t.UserId == _userInfo.UserRoleId) on trialDoc.TrialId equals trialUser.TrialId
|
|
join confirm in _trialDocConfirmedUserRepository.Where() on
|
|
new { trialUser.UserId, TrialDocumentId = trialDoc.Id } equals new { UserId = confirm.ConfirmUserId, confirm.TrialDocumentId } into cc
|
|
|
|
from confirm in cc.DefaultIfEmpty()
|
|
select new TrialSignDocView()
|
|
{
|
|
TrialCode = trialDoc.Trial.TrialCode,
|
|
ResearchProgramNo = trialDoc.Trial.ResearchProgramNo,
|
|
ExperimentName = trialDoc.Trial.ExperimentName,
|
|
Id = trialDoc.Id,
|
|
IsSystemDoc = false,
|
|
CreateTime = trialDoc.CreateTime,
|
|
FullFilePath = trialDoc.Path,
|
|
IsDeleted = trialDoc.IsDeleted,
|
|
Name = trialDoc.Name,
|
|
Path = trialDoc.Path,
|
|
FileTypeId = trialDoc.FileTypeId,
|
|
FileType = _userInfo.IsEn_Us ? trialDoc.FileType.Value : trialDoc.FileType.ValueCN,
|
|
UpdateTime = trialDoc.UpdateTime,
|
|
SignViewMinimumMinutes = trialDoc.SignViewMinimumMinutes,
|
|
|
|
//IsConfirmed = confirm.ConfirmTime != null,
|
|
ConfirmUserId = confirm.ConfirmUserId,
|
|
ConfirmTime = confirm.ConfirmTime,
|
|
RealName = trialUser.UserRole.FullName,
|
|
UserName = trialUser.UserRole.IdentityUser.UserName,
|
|
UserTypeId = trialUser.UserRole.UserTypeId,
|
|
UserTypeShortName = trialUser.UserRole.UserTypeRole.UserTypeShortName
|
|
|
|
};
|
|
|
|
trialDocQueryable = trialDocQueryable.WhereIf(!string.IsNullOrEmpty(inQuery.Name), t => t.Name.Contains(inQuery.Name))
|
|
.WhereIf(inQuery.FileTypeId != null, t => t.FileTypeId == inQuery.FileTypeId)
|
|
.WhereIf(inQuery.IsSigned == true, t => t.ConfirmTime != null)
|
|
.WhereIf(inQuery.IsSigned == false, t => t.ConfirmTime == null);
|
|
|
|
|
|
return await trialDocQueryable.ToPagedListAsync(inQuery);
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取下一个未签名的文件
|
|
/// </summary>
|
|
/// <param name="inDto"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
public async Task<UnionDocumentWithConfirmInfoView?> GetNextUnSignDocument(GetNextUnSignDocumentInDto inDto)
|
|
{
|
|
var result = new PageOutput<UnionDocumentWithConfirmInfoView>() { };
|
|
|
|
if (inDto.TrialId != null)
|
|
{
|
|
result = (await this.GetUserDocumentList(new TrialUserDocUnionQuery()
|
|
{
|
|
Asc = inDto.Asc,
|
|
IsSign = false,
|
|
SortField = inDto.SortField,
|
|
TrialId = inDto.TrialId.Value,
|
|
PageIndex = 1,
|
|
PageSize = 1,
|
|
})).Data;
|
|
}
|
|
else
|
|
{
|
|
result = await _systemDocumentService.getWaitSignSysDocList(new SystemDocumentQuery()
|
|
{
|
|
PageIndex = 1,
|
|
IsSigned = false,
|
|
PageSize = 1,
|
|
Asc = false,
|
|
SortField = "UpdateTime",
|
|
});
|
|
|
|
}
|
|
|
|
|
|
if (result.CurrentPageData.Count > 0)
|
|
{
|
|
return result.CurrentPageData.First();
|
|
}
|
|
else
|
|
{
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 具体用户看到的 系统文件列表 + 项目类型文档
|
|
/// </summary>
|
|
/// <param name="inQuery"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
public async Task<IResponseOutput<PageOutput<UnionDocumentWithConfirmInfoView>>> GetUserDocumentList(TrialUserDocUnionQuery inQuery)
|
|
{
|
|
#region https://github.com/dotnet/efcore/issues/16243 操作不行
|
|
////系统文档查询
|
|
//var systemDocumentQueryable = _systemDocumentRepository
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.IsAbandon == false || (t.IsAbandon == true && t.SystemDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.Id)))
|
|
//.ProjectTo<UnionDocumentView>(_mapper.ConfigurationProvider, new { userId = _userInfo.Id, token = _userInfo.UserToken });
|
|
|
|
////项目文档查询
|
|
//var trialDocQueryable = _trialDocumentRepository.Where(t => t.TrialId == querySystemDocument.TrialId)
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.IsAbandon == false || (t.IsAbandon == true && t.TrialDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.Id)))
|
|
// .ProjectTo<UnionDocumentView>(_mapper.ConfigurationProvider, new { userId = _userInfo.Id, token = _userInfo.UserToken });
|
|
|
|
//var unionQuery = systemDocumentQueryable.Union(trialDocQueryable);
|
|
// .WhereIf(!string.IsNullOrEmpty(querySystemDocument.Name), t => t.Name.Contains(querySystemDocument.Name))
|
|
// .WhereIf(!string.IsNullOrEmpty(querySystemDocument.Type), t => t.Type.Contains(querySystemDocument.Type));
|
|
#endregion
|
|
|
|
#region 仅仅文档信息
|
|
|
|
////系统文档查询
|
|
//var systemDocumentQueryable = _systemDocumentRepository
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.IsAbandon == false || (t.IsAbandon == true && t.SystemDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.Id)))
|
|
// .Select(t => new UnionDocumentView()
|
|
// {
|
|
// Id = t.Id,
|
|
// IsSystemDoc = true,
|
|
// CreateTime = t.CreateTime,
|
|
// FullFilePath = t.Path + "?access_token=" + _userInfo.UserToken,
|
|
// IsAbandon = t.IsAbandon,
|
|
// Name = t.Name,
|
|
// Path = t.Path,
|
|
// Type = t.Type,
|
|
// UpdateTime = t.UpdateTime,
|
|
// SignViewMinimumMinutes = t.SignViewMinimumMinutes,
|
|
|
|
// });
|
|
|
|
////项目文档查询
|
|
//var trialDocQueryable = _trialDocumentRepository.Where(t => t.TrialId == querySystemDocument.TrialId)
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
// .WhereIf(!_userInfo.IsAdmin, t => t.IsAbandon == false || (t.IsAbandon == true && t.TrialDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.Id)))
|
|
// .Select(t => new UnionDocumentView()
|
|
// {
|
|
// Id = t.Id,
|
|
// IsSystemDoc = false,
|
|
// CreateTime = t.CreateTime,
|
|
// FullFilePath = t.Path + "?access_token=" + _userInfo.UserToken,
|
|
// IsAbandon = t.IsAbandon,
|
|
// Name = t.Name,
|
|
// Path = t.Path,
|
|
// Type = t.Type,
|
|
// UpdateTime = t.UpdateTime,
|
|
// SignViewMinimumMinutes = t.SignViewMinimumMinutes,
|
|
|
|
// });
|
|
|
|
#endregion
|
|
|
|
var trialId = inQuery.TrialId;
|
|
|
|
var trialInfo = await (_trialRepository.Where(t => t.Id == inQuery.TrialId, ignoreQueryFilters: true).Select(t => new { t.TrialFinishedTime, t.TrialStatusStr }).FirstNotNullAsync());
|
|
|
|
//系统文档查询
|
|
var systemDocumentQueryable = from needConfirmedUserType in _systemDocNeedConfirmedUserTypeRepository.Where(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId, ignoreQueryFilters: true)
|
|
.WhereIf(trialInfo.TrialFinishedTime != null, u => u.SystemDocument.CreateTime < trialInfo.TrialFinishedTime)
|
|
.WhereIf(!_userInfo.IsAdmin, t => t.SystemDocument.IsDeleted == false || (t.SystemDocument.IsDeleted == true && t.SystemDocument.SystemDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.UserRoleId)))
|
|
|
|
join trialUser in _trialUserRoleRepository.Where(t => t.TrialId == inQuery.TrialId && t.UserId == _userInfo.UserRoleId)
|
|
on needConfirmedUserType.NeedConfirmUserTypeId equals trialUser.UserRole.UserTypeId
|
|
join confirm in _systemDocConfirmedUserRepository.Where() on new { ConfirmUserId = trialUser.UserId, SystemDocumentId = needConfirmedUserType.SystemDocumentId } equals new { confirm.ConfirmUserId, confirm.SystemDocumentId } into cc
|
|
from confirm in cc.DefaultIfEmpty()
|
|
select new UnionDocumentWithConfirmInfoView()
|
|
{
|
|
IsSystemDoc = true,
|
|
|
|
Id = needConfirmedUserType.SystemDocument.Id,
|
|
CreateTime = needConfirmedUserType.SystemDocument.CreateTime,
|
|
IsDeleted = needConfirmedUserType.SystemDocument.IsDeleted,
|
|
SignViewMinimumMinutes = needConfirmedUserType.SystemDocument.SignViewMinimumMinutes,
|
|
Name = needConfirmedUserType.SystemDocument.Name,
|
|
Path = needConfirmedUserType.SystemDocument.Path,
|
|
FileTypeId = needConfirmedUserType.SystemDocument.FileTypeId,
|
|
FileType = _userInfo.IsEn_Us ? needConfirmedUserType.SystemDocument.FileType.Value : needConfirmedUserType.SystemDocument.FileType.ValueCN,
|
|
UpdateTime = needConfirmedUserType.SystemDocument.UpdateTime,
|
|
|
|
FullFilePath = needConfirmedUserType.SystemDocument.Path,
|
|
|
|
//IsConfirmed = confirm.ConfirmTime != null,
|
|
ConfirmUserId = confirm.ConfirmUserId,
|
|
ConfirmTime = confirm.ConfirmTime,
|
|
RealName = trialUser.UserRole.FullName,
|
|
UserName = trialUser.UserRole.IdentityUser.UserName,
|
|
UserTypeId = trialUser.UserRole.UserTypeId,
|
|
UserTypeShortName = trialUser.UserRole.UserTypeRole.UserTypeShortName
|
|
};
|
|
|
|
//项目文档查询
|
|
var trialDocQueryable = from trialDoc in _trialDocumentRepository.AsQueryable(true).Where(t => t.TrialId == inQuery.TrialId)
|
|
.WhereIf(!_userInfo.IsAdmin, t => t.NeedConfirmedUserTypeList.Any(t => t.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
.WhereIf(!_userInfo.IsAdmin, t => t.IsDeleted == false || (t.IsDeleted == true && t.TrialDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.UserRoleId)))
|
|
|
|
join trialUser in _trialUserRoleRepository.Where(t => t.TrialId == inQuery.TrialId && t.UserId == _userInfo.UserRoleId) on trialDoc.TrialId equals trialUser.TrialId
|
|
join confirm in _trialDocConfirmedUserRepository.Where(t => t.TrialDocument.TrialId == inQuery.TrialId) on
|
|
new { trialUser.UserId, TrialDocumentId = trialDoc.Id } equals new { UserId = confirm.ConfirmUserId, confirm.TrialDocumentId } into cc
|
|
from confirm in cc.DefaultIfEmpty()
|
|
select new UnionDocumentWithConfirmInfoView()
|
|
{
|
|
Id = trialDoc.Id,
|
|
IsSystemDoc = false,
|
|
CreateTime = trialDoc.CreateTime,
|
|
FullFilePath = trialDoc.Path,
|
|
IsDeleted = trialDoc.IsDeleted,
|
|
Name = trialDoc.Name,
|
|
Path = trialDoc.Path,
|
|
FileTypeId = trialDoc.FileTypeId,
|
|
FileType = _userInfo.IsEn_Us ? trialDoc.FileType.Value : trialDoc.FileType.ValueCN,
|
|
UpdateTime = trialDoc.UpdateTime,
|
|
SignViewMinimumMinutes = trialDoc.SignViewMinimumMinutes,
|
|
|
|
//IsConfirmed = confirm.ConfirmTime != null,
|
|
ConfirmUserId = confirm.ConfirmUserId,
|
|
ConfirmTime = confirm.ConfirmTime,
|
|
RealName = trialUser.UserRole.FullName,
|
|
UserName = trialUser.UserRole.IdentityUser.UserName,
|
|
UserTypeId = trialUser.UserRole.UserTypeId,
|
|
UserTypeShortName = trialUser.UserRole.UserTypeRole.UserTypeShortName
|
|
|
|
};
|
|
|
|
#region 报错 奇怪的bug
|
|
var unionQuery = systemDocumentQueryable.Union(trialDocQueryable)
|
|
.WhereIf(!string.IsNullOrEmpty(inQuery.Name), t => t.Name.Contains(inQuery.Name))
|
|
.WhereIf(inQuery.FileTypeId != null, t => t.FileTypeId == inQuery.FileTypeId)
|
|
.WhereIf(inQuery.IsSign == true, t => t.ConfirmTime != null)
|
|
.WhereIf(inQuery.IsSign == false, t => t.ConfirmTime == null);
|
|
|
|
|
|
|
|
var result = await unionQuery.ToPagedListAsync(inQuery);
|
|
#endregion
|
|
|
|
#region 临时方案
|
|
|
|
//var list1 = systemDocumentQueryable
|
|
// .WhereIf(!string.IsNullOrEmpty(querySystemDocument.Name), t => t.Name.Contains(querySystemDocument.Name))
|
|
// .WhereIf(querySystemDocument.FileTypeId != null, t => t.FileTypeId == querySystemDocument.FileTypeId)
|
|
// .WhereIf(querySystemDocument.IsSign == true, t => t.ConfirmTime != null)
|
|
// .WhereIf(querySystemDocument.IsSign == false, t => t.ConfirmTime == null).ToList();
|
|
|
|
//var list2 = trialDocQueryable
|
|
// .WhereIf(!string.IsNullOrEmpty(querySystemDocument.Name), t => t.Name.Contains(querySystemDocument.Name))
|
|
//.WhereIf(querySystemDocument.FileTypeId != null, t => t.FileTypeId == querySystemDocument.FileTypeId)
|
|
//.WhereIf(querySystemDocument.IsSign == true, t => t.ConfirmTime != null)
|
|
//.WhereIf(querySystemDocument.IsSign == false, t => t.ConfirmTime == null).ToList();
|
|
|
|
//var list3 = list1.Union(list2).ToList();
|
|
|
|
//var result=list3.ToPagedList(querySystemDocument.PageIndex, querySystemDocument.PageSize, querySystemDocument.SortField, querySystemDocument.Asc);
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
var needSignTrialDocCount = await _trialDocumentRepository.AsQueryable(true).Where(t => t.TrialId == inQuery.TrialId && t.Trial.TrialStatusStr != StaticData.TrialState.TrialStopped)
|
|
.Where(t => t.Trial.TrialIdentityUserList.Any(t => t.IdentityUserId == _userInfo.IdentityUserId))
|
|
.Where(t => t.IsDeleted == false && !t.TrialDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.UserRoleId && t.ConfirmTime != null) && t.NeedConfirmedUserTypeList.Any(u => u.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
.CountAsync();
|
|
|
|
|
|
var needSignSystemDocCount = await _systemDocumentRepository
|
|
.Where(t => t.IsDeleted == false && !t.SystemDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.UserRoleId && t.ConfirmTime != null) && t.NeedConfirmedUserTypeList.Any(u => u.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
.CountAsync();
|
|
|
|
var trialTaskConfig = _trialRepository.Where(t => t.Id == inQuery.TrialId).ProjectTo<TrialProcessConfigDTO>(_mapper.ConfigurationProvider).FirstOrDefault();
|
|
|
|
|
|
|
|
var isManualGenerateTask = _readingQuestionCriterionTrialRepository.Where(t => t.TrialId == trialId && t.IsSigned && t.IsAutoCreate == false).Any();
|
|
var isAdditionalAssessment = _readingQuestionCriterionTrialRepository.Where(t => t.TrialId == trialId && t.IsSigned && t.IsAdditionalAssessment == true
|
|
&& t.TrialCriterionAdditionalAssessmentTypeList.Any(c =>/*c.AdditionalAssessmentType==Domain.Share.Reading.AdditionalAssessmentType.BrainMetastasis &&*/ c.IsSelected == true)).Any();
|
|
|
|
return ResponseOutput.Ok<PageOutput<UnionDocumentWithConfirmInfoView>>(result, new { NeedSignCount = needSignTrialDocCount + needSignSystemDocCount, NeedSignTrialDocCount = needSignTrialDocCount, NeedSignSystemDocCount = needSignSystemDocCount, IsAdditionalAssessment = isAdditionalAssessment && isManualGenerateTask, TrialStatusStr = trialInfo.TrialStatusStr, TrialConfig = trialTaskConfig });
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 获取确认列表情况 项目文档+系统文档+具体的人
|
|
/// </summary>
|
|
/// <param name="inQuery"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
public async Task<IResponseOutput<PageOutput<UnionDocumentWithConfirmInfoView>>> GetDocumentConfirmList(DocumentTrialUnionQuery inQuery)
|
|
{
|
|
|
|
|
|
#region linq join 方式
|
|
//var trialDocQuery = from trialDocumentNeedConfirmedUserType in _trialDocumentNeedConfirmedUserTypeRepository.Where(t => t.TrialDocument.TrialId == querySystemDocument.TrialId)
|
|
// join trialUser in _trialUserRoleRepository.Where(t => t.TrialId == querySystemDocument.TrialId)
|
|
// .WhereIf(querySystemDocument.UserId != null, t => t.UserId == querySystemDocument.UserId)
|
|
// on trialDocumentNeedConfirmedUserType.NeedConfirmUserTypeId equals trialUser.User.UserTypeId
|
|
|
|
// join confirm in _trialDocuserConfrimedRepository.AsQueryable() on trialUser.UserId equals confirm.ConfirmUserId into cc
|
|
// from confirm in cc.DefaultIfEmpty()
|
|
// select new UnionDocumentConfirmListView()
|
|
// {
|
|
// Id = trialDocumentNeedConfirmedUserType.TrialDocument.Id,
|
|
// CreateTime = trialDocumentNeedConfirmedUserType.TrialDocument.CreateTime,
|
|
// IsAbandon = trialDocumentNeedConfirmedUserType.TrialDocument.IsAbandon,
|
|
// SignViewMinimumMinutes = trialDocumentNeedConfirmedUserType.TrialDocument.SignViewMinimumMinutes,
|
|
// Name = trialDocumentNeedConfirmedUserType.TrialDocument.Name,
|
|
// Path = trialDocumentNeedConfirmedUserType.TrialDocument.Path,
|
|
// Type = trialDocumentNeedConfirmedUserType.TrialDocument.Type,
|
|
// UpdateTime = trialDocumentNeedConfirmedUserType.TrialDocument.UpdateTime,
|
|
|
|
// UserConfirmInfo = /*confirm == null ? null : */new UnionDocumentUserConfirmView()
|
|
// {
|
|
|
|
// ConfirmUserId = confirm.ConfirmUserId,
|
|
// ConfirmTime = confirm.ConfirmTime,
|
|
// RealName = trialUser.User.LastName + " / " + trialUser.User.LastName,
|
|
// UserName = trialUser.User.UserName,
|
|
// },
|
|
|
|
// FullFilePath = trialDocumentNeedConfirmedUserType.TrialDocument.Path + "?access_token=" + _userInfo.UserToken
|
|
// };
|
|
|
|
#endregion
|
|
|
|
var trialInfo = (await _trialRepository.Where(t => t.Id == inQuery.TrialId, ignoreQueryFilters: true).Select(t => new { t.TrialFinishedTime, t.TrialStatusStr }).FirstNotNullAsync());
|
|
|
|
var trialDocQuery = from trialDocumentNeedConfirmedUserType in _trialDocNeedConfirmedUserTypeRepository.Where(t => t.TrialDocument.TrialId == inQuery.TrialId)
|
|
join trialUser in _trialUserRoleRepository.Where(t => t.TrialId == inQuery.TrialId)
|
|
.WhereIf(inQuery.UserId != null, t => t.UserId == inQuery.UserId)
|
|
.WhereIf(inQuery.UserTypeId != null, t => t.UserRole.UserTypeId == inQuery.UserTypeId)
|
|
on trialDocumentNeedConfirmedUserType.NeedConfirmUserTypeId equals trialUser.UserRole.UserTypeId
|
|
|
|
join confirm in _trialDocConfirmedUserRepository.Where(t => t.TrialDocument.TrialId == inQuery.TrialId) on
|
|
new { trialUser.UserId, TrialDocumentId = trialDocumentNeedConfirmedUserType.TrialDocumentId } equals new { UserId = confirm.ConfirmUserId, confirm.TrialDocumentId } into cc
|
|
from confirm in cc.DefaultIfEmpty()
|
|
select new UnionDocumentWithConfirmInfoView()
|
|
{
|
|
IsSystemDoc = false,
|
|
|
|
Id = trialDocumentNeedConfirmedUserType.TrialDocument.Id,
|
|
CreateTime = trialDocumentNeedConfirmedUserType.TrialDocument.CreateTime,
|
|
IsDeleted = trialDocumentNeedConfirmedUserType.TrialDocument.IsDeleted,
|
|
SignViewMinimumMinutes = trialDocumentNeedConfirmedUserType.TrialDocument.SignViewMinimumMinutes,
|
|
Name = trialDocumentNeedConfirmedUserType.TrialDocument.Name,
|
|
Path = trialDocumentNeedConfirmedUserType.TrialDocument.Path,
|
|
FileTypeId = trialDocumentNeedConfirmedUserType.TrialDocument.FileTypeId,
|
|
FileType = _userInfo.IsEn_Us ? trialDocumentNeedConfirmedUserType.TrialDocument.FileType.Value : trialDocumentNeedConfirmedUserType.TrialDocument.FileType.ValueCN,
|
|
UpdateTime = trialDocumentNeedConfirmedUserType.TrialDocument.UpdateTime,
|
|
//IsConfirmed= confirm.ConfirmTime!=null,
|
|
|
|
|
|
|
|
ConfirmUserId = confirm.ConfirmUserId,
|
|
ConfirmTime = confirm.ConfirmTime,
|
|
RealName = trialUser.UserRole.FullName,
|
|
UserName = trialUser.UserRole.IdentityUser.UserName,
|
|
UserTypeId = trialUser.UserRole.UserTypeId,
|
|
UserTypeShortName = trialUser.UserRole.UserTypeRole.UserTypeShortName,
|
|
|
|
FullFilePath = trialDocumentNeedConfirmedUserType.TrialDocument.Path
|
|
};
|
|
|
|
|
|
|
|
var systemDocQuery = from needConfirmEdUserType in _systemDocNeedConfirmedUserTypeRepository.WhereIf(trialInfo.TrialFinishedTime != null, u => u.SystemDocument.CreateTime < trialInfo.TrialFinishedTime)
|
|
|
|
join trialUser in _trialUserRoleRepository.Where(t => t.TrialId == inQuery.TrialId)
|
|
.WhereIf(inQuery.UserId != null, t => t.UserId == inQuery.UserId)
|
|
on needConfirmEdUserType.NeedConfirmUserTypeId equals trialUser.UserRole.UserTypeId
|
|
join confirm in _systemDocConfirmedUserRepository.Where() on new { ConfirmUserId = trialUser.UserId, SystemDocumentId = needConfirmEdUserType.SystemDocumentId } equals new { confirm.ConfirmUserId, confirm.SystemDocumentId } into cc
|
|
from confirm in cc.DefaultIfEmpty()
|
|
select new UnionDocumentWithConfirmInfoView()
|
|
{
|
|
IsSystemDoc = true,
|
|
|
|
Id = needConfirmEdUserType.SystemDocument.Id,
|
|
CreateTime = needConfirmEdUserType.SystemDocument.CreateTime,
|
|
IsDeleted = needConfirmEdUserType.SystemDocument.IsDeleted,
|
|
SignViewMinimumMinutes = needConfirmEdUserType.SystemDocument.SignViewMinimumMinutes,
|
|
Name = needConfirmEdUserType.SystemDocument.Name,
|
|
Path = needConfirmEdUserType.SystemDocument.Path,
|
|
FileType = _userInfo.IsEn_Us ? needConfirmEdUserType.SystemDocument.FileType.Value : needConfirmEdUserType.SystemDocument.FileType.ValueCN,
|
|
FileTypeId = needConfirmEdUserType.SystemDocument.FileTypeId,
|
|
UpdateTime = needConfirmEdUserType.SystemDocument.UpdateTime,
|
|
//IsConfirmed = confirm.ConfirmTime != null,
|
|
|
|
ConfirmUserId = confirm.ConfirmUserId,
|
|
ConfirmTime = confirm.ConfirmTime,
|
|
RealName = trialUser.UserRole.FullName,
|
|
UserName = trialUser.UserRole.IdentityUser.UserName,
|
|
UserTypeId = trialUser.UserRole.UserTypeId,
|
|
UserTypeShortName = trialUser.UserRole.UserTypeRole.UserTypeShortName,
|
|
|
|
FullFilePath = needConfirmEdUserType.SystemDocument.Path
|
|
};
|
|
|
|
var unionQuery = trialDocQuery.Union(systemDocQuery).IgnoreQueryFilters().Where(t => !(t.IsDeleted == true && t.ConfirmUserId == null))
|
|
.WhereIf(!string.IsNullOrEmpty(inQuery.Name), t => t.Name.Contains(inQuery.Name))
|
|
.WhereIf(inQuery.FileTypeId != null, t => t.FileTypeId == inQuery.FileTypeId)
|
|
.WhereIf(inQuery.IsConfirmed == true, t => t.ConfirmTime != null)
|
|
.WhereIf(inQuery.IsConfirmed == false, t => t.ConfirmTime == null)
|
|
.WhereIf(inQuery.IsDeleted != null, t => t.IsDeleted == inQuery.IsDeleted)
|
|
.WhereIf(inQuery.UserTypeId != null, t => t.UserTypeId == inQuery.UserTypeId);
|
|
|
|
var result = await unionQuery.ToPagedListAsync(inQuery);
|
|
|
|
var needSignTrialDocCount = await _trialDocumentRepository.AsQueryable(true)
|
|
.Where(t => t.Trial.TrialIdentityUserList.Any(t => t.IdentityUserId == _userInfo.IdentityUserId))
|
|
.Where(t => t.IsDeleted == false && !t.TrialDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.UserRoleId) && t.NeedConfirmedUserTypeList.Any(u => u.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
.CountAsync();
|
|
|
|
|
|
var needSignSystemDocCount = await _systemDocumentRepository
|
|
.Where(t => t.IsDeleted == false && !t.SystemDocConfirmedUserList.Any(t => t.ConfirmUserId == _userInfo.UserRoleId) && t.NeedConfirmedUserTypeList.Any(u => u.NeedConfirmUserTypeId == _userInfo.UserTypeId))
|
|
.CountAsync();
|
|
|
|
|
|
return ResponseOutput.Ok(result, new { NeedSignCount = needSignTrialDocCount + needSignSystemDocCount, NeedSignTrialDocCount = needSignTrialDocCount, NeedSignSystemDocCount = needSignSystemDocCount, TrialStatusStr = trialInfo.TrialStatusStr });
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 项目下面的参与用户下拉
|
|
/// </summary>
|
|
/// <param name="trialId"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("{trialId:guid}")]
|
|
public async Task<List<TrialUserDto>> GetTrialUserSelect(Guid trialId)
|
|
{
|
|
return await _trialUserRoleRepository.Where(t => t.TrialId == trialId)
|
|
.Select(t => new TrialUserDto() { UserId = t.UserId, RealName = t.UserRole.FullName, UserName = t.UserRole.IdentityUser.UserName })
|
|
.ToListAsync();
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 项目+系统的文档类型 下拉
|
|
/// </summary>
|
|
/// <param name="trialId"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("{trialId:guid}")]
|
|
public async Task<IResponseOutput> GetTrialDocAndSystemDocType(Guid trialId)
|
|
{
|
|
var result = await _trialDocumentRepository.Where(t => t.TrialId == trialId).Select(t => new { FileType = _userInfo.IsEn_Us ? t.FileType.Value : t.FileType.ValueCN, t.FileTypeId })
|
|
.Union(_systemDocumentRepository.Select(t => new { FileType = _userInfo.IsEn_Us ? t.FileType.Value : t.FileType.ValueCN, t.FileTypeId }))
|
|
.ToListAsync();
|
|
|
|
return ResponseOutput.Ok(result);
|
|
}
|
|
|
|
[TrialGlobalLimit( "BeforeOngoingCantOpt", "AfterStopCannNotOpt" )]
|
|
//[Authorize(Policy = IRaCISPolicy.PM)]
|
|
public async Task<IResponseOutput> AddOrUpdateTrialDocument(AddOrEditTrialDocument addOrEditTrialDocument)
|
|
{
|
|
if (addOrEditTrialDocument.Id == null)
|
|
{
|
|
var entity = _mapper.Map<TrialDocument>(addOrEditTrialDocument);
|
|
|
|
|
|
if (await _trialDocumentRepository.AnyAsync(t => t.FileTypeId == addOrEditTrialDocument.FileTypeId && t.Name == addOrEditTrialDocument.Name && t.TrialId == addOrEditTrialDocument.TrialId, true))
|
|
{
|
|
//---该项目中已经存在同类型的同名文件。
|
|
return ResponseOutput.NotOk(_localizer["TrialD_DuplicateFileInProject"]);
|
|
}
|
|
|
|
//entity.Id = NewId.NextGuid();
|
|
await _trialDocumentRepository.AddAsync(entity, true);
|
|
return ResponseOutput.Ok(entity.Id.ToString());
|
|
}
|
|
else
|
|
{
|
|
if (await _trialDocumentRepository.AnyAsync(t => t.FileTypeId == addOrEditTrialDocument.FileTypeId && t.Name == addOrEditTrialDocument.Name && t.Id != addOrEditTrialDocument.Id && t.TrialId == addOrEditTrialDocument.TrialId, true))
|
|
{
|
|
//---该项目中已经存在同类型的同名文件。
|
|
return ResponseOutput.NotOk(_localizer["TrialD_DuplicateFileInProject"]);
|
|
}
|
|
|
|
var document = (await _trialDocumentRepository.Where(t => t.Id == addOrEditTrialDocument.Id, true).Include(t => t.NeedConfirmedUserTypeList).FirstOrDefaultAsync()).IfNullThrowException();
|
|
|
|
|
|
|
|
_mapper.Map(addOrEditTrialDocument, document);
|
|
|
|
#region 不区分路径了
|
|
|
|
//if (document.FileTypeId != addOrEditTrialDocument.FileTypeId)
|
|
//{
|
|
|
|
|
|
// var rootPath = Directory.GetParent(_hostEnvironment.ContentRootPath.TrimEnd('\\')).IfNullThrowException().FullName;
|
|
// var beforeFilePath = Path.Combine(rootPath, document.Path);
|
|
|
|
// document.Path = document.Path.Replace(document.FileTypeId.ToString(), addOrEditTrialDocument.FileTypeId.ToString());
|
|
|
|
// var nowPath = Path.Combine(rootPath, document.Path);
|
|
|
|
// if (File.Exists(beforeFilePath))
|
|
// {
|
|
// File.Move(beforeFilePath, nowPath, true);
|
|
// File.Delete(beforeFilePath);
|
|
// }
|
|
|
|
//}
|
|
|
|
#endregion
|
|
|
|
|
|
var success = await _trialDocumentRepository.SaveChangesAsync();
|
|
|
|
return ResponseOutput.Ok(document.Id.ToString());
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 已签名的文档 不允许删除
|
|
/// </summary>
|
|
/// <param name="trialDocumentId"></param>
|
|
/// <param name="trialId"></param>
|
|
/// <returns></returns>
|
|
[HttpDelete("{trialId:guid}/{trialDocumentId:guid}")]
|
|
//[Authorize(Policy = IRaCISPolicy.PM)]
|
|
[TrialGlobalLimit( "BeforeOngoingCantOpt", "AfterStopCannNotOpt" )]
|
|
public async Task<IResponseOutput> DeleteTrialDocument(Guid trialDocumentId, Guid trialId)
|
|
{
|
|
if (await _trialDocumentRepository.AsQueryable(true).Where(t => t.Id == trialDocumentId).AnyAsync(t => t.TrialDocConfirmedUserList.Any()))
|
|
{
|
|
//---已有用户阅读该文档,并签名,不允许删除。
|
|
return ResponseOutput.NotOk(_localizer["TrialD_DocumentHasAlready"]);
|
|
}
|
|
|
|
var success = await _trialDocumentRepository.BatchDeleteNoTrackingAsync(t => t.Id == trialDocumentId);
|
|
|
|
return ResponseOutput.Result(success);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 浏览文档说明时调用,记录第一次看的时间
|
|
/// </summary>
|
|
/// <param name="documentId"></param>
|
|
/// <param name="isSystemDoc"></param>
|
|
/// <returns></returns>
|
|
[HttpPut("{trialId:guid}/{documentId:guid}/{isSystemDoc:bool}")]
|
|
[UnitOfWork]
|
|
public async Task<IResponseOutput> SetFirstViewDocumentTime(Guid documentId, bool isSystemDoc)
|
|
{
|
|
|
|
var success = false;
|
|
if (isSystemDoc)
|
|
{
|
|
if (!await _systemDocConfirmedUserRepository.AnyAsync(t => t.SystemDocumentId == documentId && t.ConfirmUserId == _userInfo.UserRoleId))
|
|
{
|
|
await _systemDocConfirmedUserRepository.AddAsync(new SystemDocConfirmedUser() { SystemDocumentId = documentId, ConfirmUserId = _userInfo.UserRoleId, SignFirstViewTime = DateTime.Now });
|
|
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
|
|
if (!await _trialDocUserTypeConfirmedUserRepository.AnyAsync(t => t.TrialDocumentId == documentId && t.ConfirmUserId == _userInfo.UserRoleId))
|
|
{
|
|
|
|
await _trialDocConfirmedUserRepository.AddAsync(new TrialDocConfirmedUser() { TrialDocumentId = documentId, ConfirmUserId = _userInfo.UserRoleId, SignFirstViewTime = DateTime.Now });
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
success = await _systemDocConfirmedUserRepository.SaveChangesAsync();
|
|
|
|
return ResponseOutput.Ok(success);
|
|
}
|
|
|
|
[HttpPut("{documentId:guid}")]
|
|
public async Task<IResponseOutput> SetSystemDocFirstViewTime(Guid documentId)
|
|
{
|
|
if (!await _systemDocConfirmedUserRepository.AnyAsync(t => t.SystemDocumentId == documentId && t.ConfirmUserId == _userInfo.UserRoleId))
|
|
{
|
|
await _systemDocConfirmedUserRepository.AddAsync(new SystemDocConfirmedUser() { SystemDocumentId = documentId, ConfirmUserId = _userInfo.UserRoleId, SignFirstViewTime = DateTime.Now });
|
|
|
|
}
|
|
|
|
var success = await _systemDocConfirmedUserRepository.SaveChangesAsync();
|
|
|
|
return ResponseOutput.Ok(success);
|
|
}
|
|
|
|
[HttpPut("{trialId:guid}/{documentId:guid}")]
|
|
public async Task<IResponseOutput> SetTrialDocFirstViewTime(Guid documentId)
|
|
{
|
|
if (!await _trialDocUserTypeConfirmedUserRepository.AnyAsync(t => t.TrialDocumentId == documentId && t.ConfirmUserId == _userInfo.UserRoleId))
|
|
{
|
|
|
|
await _trialDocConfirmedUserRepository.AddAsync(new TrialDocConfirmedUser() { TrialDocumentId = documentId, ConfirmUserId = _userInfo.UserRoleId, SignFirstViewTime = DateTime.Now });
|
|
|
|
}
|
|
var success = await _trialDocConfirmedUserRepository.SaveChangesAsync();
|
|
|
|
return ResponseOutput.Ok(success);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 用户 签名某个文档 可能是系统的,也可能是项目的
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[TrialGlobalLimit( "BeforeOngoingCantOpt", "AfterStopCannNotOpt" )]
|
|
public async Task<IResponseOutput> UserConfirm(UserConfirmCommand userConfirmCommand)
|
|
{
|
|
|
|
if (userConfirmCommand.isSystemDoc)
|
|
{
|
|
|
|
var sysDocConfirm = await _systemDocConfirmedUserRepository.FirstOrDefaultAsync(t => t.SystemDocumentId == userConfirmCommand.DocumentId && t.ConfirmUserId == _userInfo.UserRoleId, true);
|
|
|
|
if (sysDocConfirm.ConfirmTime != null)
|
|
{
|
|
//---该文件已经签名
|
|
return ResponseOutput.NotOk(_localizer["TrialD_FileAlreadySigned"]);
|
|
}
|
|
|
|
if (sysDocConfirm.IsDeleted)
|
|
{
|
|
//---文件已废除,签署失败!
|
|
return ResponseOutput.NotOk(_localizer["TrialD_ObsoleteFile"]);
|
|
}
|
|
|
|
|
|
sysDocConfirm.ConfirmTime = DateTime.Now;
|
|
sysDocConfirm.SignText = userConfirmCommand.SignText;
|
|
|
|
|
|
|
|
await _systemDocConfirmedUserRepository.SaveChangesAsync();
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
|
|
var trialDocConfirm = await _trialDocUserTypeConfirmedUserRepository.FirstOrDefaultAsync(t => t.TrialDocumentId == userConfirmCommand.DocumentId && t.ConfirmUserId == _userInfo.UserRoleId, true);
|
|
|
|
if (trialDocConfirm.ConfirmTime != null)
|
|
{
|
|
//---该文件已经签名
|
|
return ResponseOutput.NotOk(_localizer["TrialD_FileAlreadySigned"]);
|
|
}
|
|
|
|
if (trialDocConfirm.IsDeleted)
|
|
{
|
|
//---文件已废除,签署失败!
|
|
return ResponseOutput.NotOk(_localizer["TrialD_ObsoleteFile"]);
|
|
}
|
|
|
|
trialDocConfirm.ConfirmTime = DateTime.Now;
|
|
trialDocConfirm.SignText = userConfirmCommand.SignText;
|
|
|
|
await _trialDocUserTypeConfirmedUserRepository.SaveChangesAsync();
|
|
|
|
}
|
|
|
|
|
|
return ResponseOutput.Ok();
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 用户 废除某个文档
|
|
/// </summary>
|
|
/// <param name="documentId"></param>
|
|
/// <param name="isSystemDoc"></param>
|
|
/// <returns></returns>
|
|
[HttpPut("{documentId:guid}/{isSystemDoc:bool}")]
|
|
[TrialGlobalLimit( "BeforeOngoingCantOpt", "AfterStopCannNotOpt", "SignSystemDocNoTrialId" )]
|
|
public async Task<IResponseOutput> UserAbandonDoc(Guid documentId, bool isSystemDoc)
|
|
{
|
|
if (isSystemDoc)
|
|
{
|
|
await _systemDocumentRepository.UpdatePartialFromQueryAsync(documentId, u => new SystemDocument() { IsDeleted = true });
|
|
await _systemDocConfirmedUserRepository.UpdatePartialFromQueryAsync(x => x.SystemDocumentId == documentId, x => new SystemDocConfirmedUser()
|
|
{
|
|
IsDeleted = true
|
|
});
|
|
}
|
|
else
|
|
{
|
|
await _trialDocumentRepository.UpdatePartialFromQueryAsync(documentId, u => new TrialDocument() { IsDeleted = true });
|
|
await _trialDocUserTypeConfirmedUserRepository.UpdatePartialFromQueryAsync(x => x.TrialDocumentId == documentId, x => new TrialDocConfirmedUser()
|
|
{
|
|
IsDeleted = true
|
|
});
|
|
}
|
|
await _systemDocumentRepository.SaveChangesAsync();
|
|
return ResponseOutput.Ok();
|
|
}
|
|
|
|
|
|
#region 废弃
|
|
|
|
|
|
/// <summary>
|
|
/// 从项目下参与者的维度 先看人员列表(展示统计数字) 点击数字 再看人员具体签署的 系统文档+项目文档(共用上面与人相关的具体文档列表)
|
|
/// </summary>
|
|
/// <param name="trialId"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("{trialId:guid}")]
|
|
[Obsolete]
|
|
public List<TrialUserUnionDocumentView> GetTrialUserDocumentList(Guid trialId)
|
|
{
|
|
var query = _trialUserRoleRepository.Where(t => t.TrialId == trialId)
|
|
.Select(t => new TrialUserUnionDocumentView()
|
|
{
|
|
UserId = t.UserId,
|
|
UserName = t.UserRole.IdentityUser.UserName,
|
|
RealName = t.UserRole.FullName,
|
|
UserTypeShortName = t.UserRole.UserTypeRole.UserTypeShortName,
|
|
TrialDocumentCount = t.Trial.TrialDocumentList.Count(u => u.NeedConfirmedUserTypeList.Any(k => k.NeedConfirmUserTypeId == t.UserRole.UserTypeId)),
|
|
TrialDocumentConfirmedCount = t.Trial.TrialDocumentList.SelectMany(u => u.TrialDocConfirmedUserList).Count(k => k.ConfirmUserId == t.UserId),
|
|
SystemDocumentConfirmedCount = t.UserRole.SystemDocConfirmedList.Count(),
|
|
//这样写不行
|
|
//SystemDocumentCount = _systemDocumentRepository.Where(s => s.NeedConfirmedUserTypeList.Any(kk => kk.NeedConfirmUserTypeId == t.User.UserTypeId))
|
|
// .WhereIf(!_userInfo.IsAdmin, s => s.IsAbandon == false || (s.IsAbandon == true && s.SystemDocConfirmedUserList.Any(uu => uu.ConfirmUserId == t.UserId))).Count()
|
|
SystemDocumentCount = t.UserRole.UserTypeRole.SystemDocNeedConfirmedUserTypeList.Where(cc => cc.NeedConfirmUserTypeId == t.UserRole.UserTypeId).Select(y => y.SystemDocument).Count()
|
|
});
|
|
|
|
return query.ToList();
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 从 文档的维度 先看到文档列表(系统文档+项目文档 以及需要确认的人数 和已经确认人数) 点击数字查看某文档下面人确认情况
|
|
/// </summary>
|
|
/// <param name="inQuery"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Obsolete]
|
|
public async Task<PageOutput<DocumentUnionWithUserStatView>> GetTrialSystemDocumentList(DocumentTrialUnionQuery inQuery)
|
|
{
|
|
var systemDocumentQueryable = _systemDocumentRepository
|
|
.WhereIf(!_userInfo.IsAdmin, t => t.IsDeleted == false)
|
|
.Select(t => new DocumentUnionWithUserStatView()
|
|
{
|
|
Id = t.Id,
|
|
IsSystemDoc = true,
|
|
CreateTime = t.CreateTime,
|
|
FullFilePath = t.Path,
|
|
IsDeleted = t.IsDeleted,
|
|
Name = t.Name,
|
|
Path = t.Path,
|
|
FileType = t.FileType.Value,
|
|
UpdateTime = t.UpdateTime,
|
|
SignViewMinimumMinutes = t.SignViewMinimumMinutes,
|
|
DocumentConfirmedUserCount = t.SystemDocConfirmedUserList.Count(),
|
|
|
|
//DocumentUserCount= _trialUserRoleRepository.Where(tu=>tu.TrialId== querySystemDocument.TrialId).Count(u=>t.NeedConfirmedUserTypeList.Any(cc=>cc.NeedConfirmUserTypeId== u.User.UserTypeId ))
|
|
DocumentUserCount = t.NeedConfirmedUserTypeList.SelectMany(u => u.UserTypeRole.UserList.SelectMany(b => b.UserRoleTrials.Where(r => r.TrialId == inQuery.TrialId))).Count()
|
|
});
|
|
|
|
var trialDocQueryable = _trialDocumentRepository.Where(t => t.TrialId == inQuery.TrialId).Select(t => new DocumentUnionWithUserStatView()
|
|
{
|
|
Id = t.Id,
|
|
IsSystemDoc = false,
|
|
CreateTime = t.CreateTime,
|
|
FullFilePath = t.Path,
|
|
IsDeleted = t.IsDeleted,
|
|
Name = t.Name,
|
|
Path = t.Path,
|
|
FileType = t.FileType.Value,
|
|
UpdateTime = t.UpdateTime,
|
|
SignViewMinimumMinutes = t.SignViewMinimumMinutes,
|
|
|
|
DocumentConfirmedUserCount = t.TrialDocConfirmedUserList.Count(),
|
|
DocumentUserCount = t.Trial.TrialUserRoleList.Count(cc => t.NeedConfirmedUserTypeList.Any(k => k.NeedConfirmUserTypeId == cc.UserRole.UserTypeId))
|
|
|
|
});
|
|
|
|
var unionQuery = systemDocumentQueryable.Union(trialDocQueryable)
|
|
.WhereIf(!string.IsNullOrEmpty(inQuery.Name), t => t.Name.Contains(inQuery.Name))
|
|
.WhereIf(inQuery.FileTypeId != null, t => t.FileTypeId == inQuery.FileTypeId);
|
|
|
|
return await unionQuery.ToPagedListAsync(inQuery);
|
|
}
|
|
#endregion
|
|
|
|
|
|
|
|
}
|
|
}
|