Compare commits
No commits in common. "1e5f01fdebac36829d1bc6c0d6b17a6e3be0e979" and "933a43f4eaadc8667328052552105e7cb37a9f02" have entirely different histories.
1e5f01fdeb
...
933a43f4ea
|
@ -1696,15 +1696,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public class ResetReadingTaskOutDto
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public class ResetReadingTaskInDto
|
|
||||||
{
|
|
||||||
public Guid VisitTaskId { get; set; }
|
|
||||||
}
|
|
||||||
public class GetNextTaskInDto
|
public class GetNextTaskInDto
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -2947,25 +2947,6 @@ namespace IRaCIS.Application.Services
|
||||||
return task;
|
return task;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 重置阅片任务
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="inDto"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
[HttpPost]
|
|
||||||
public async Task<ResetReadingTaskOutDto> ResetReadingTask(ResetReadingTaskInDto inDto)
|
|
||||||
{
|
|
||||||
await VerifyTaskIsSign(inDto.VisitTaskId);
|
|
||||||
var taskinfo = await _visitTaskRepository.Where(x => x.Id == inDto.VisitTaskId).FirstNotNullAsync();
|
|
||||||
if (taskinfo.ReadingCategory != ReadingCategory.Visit)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
return new ResetReadingTaskOutDto() { };
|
|
||||||
}
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 验证阅片休息时间
|
/// 验证阅片休息时间
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -2973,7 +2954,7 @@ namespace IRaCIS.Application.Services
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public async Task VerifyReadingRestTime()
|
public async Task VerifyReadingRestTime()
|
||||||
{
|
{
|
||||||
var userTypeEnum = (UserTypeEnum)_userInfo.UserTypeEnumInt;
|
var userTypeEnum = (UserTypeEnum)_userInfo.UserTypeEnumInt;
|
||||||
if (userTypeEnum != UserTypeEnum.IndependentReviewer)
|
if (userTypeEnum != UserTypeEnum.IndependentReviewer)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue