修改文档签署
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-01-03 13:32:49 +08:00
parent 2dfcedfe3c
commit 5c0d30d2bc
2 changed files with 8 additions and 5 deletions
@@ -181,11 +181,14 @@ namespace IRaCIS.Core.Application.Services
//UserTypeShortName = user.UserTypeRole.UserTypeShortName
};
return await query.WhereIf(inQuery.IsSigned == true, t => t.ConfirmTime != null)
var list = await query.WhereIf(inQuery.IsSigned == true, t => t.ConfirmTime != null)
.WhereIf(inQuery.IsSigned == false, t => t.ConfirmTime == null)
.ToPagedListAsync(inQuery);
return list;
}