diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
index 163fe9223..68d722ec1 100644
--- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
+++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml
@@ -1968,6 +1968,19 @@
+
+
+ 获取最低垂直径
+
+
+
+
+
+ 获取脾脏验证
+
+
+
+
获取脾脏评估
@@ -13392,6 +13405,12 @@
+
+
+ 重置阅片时间 登录和解锁调用
+
+
+
签名提交任务修改状态
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs
index 333fe9765..d32ffe780 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs
@@ -2587,7 +2587,7 @@ namespace IRaCIS.Application.Services
}
else if (startRestTimeKey != null)
{
- var cacheStartRestTime = DateTime.Parse(startReadingTime!.ToString());
+ var cacheStartRestTime = DateTime.Parse(startRestTime!.ToString());
int timespanMin = (DateTime.Now - cacheStartRestTime).Minutes;
if (timespanMin <= restMinute)
{
@@ -2635,7 +2635,7 @@ namespace IRaCIS.Application.Services
var startRestTime = _provider.Get(startReadingTimeKey).Value;
if (startRestTimeKey != null)
{
- var cacheStartRestTime = DateTime.Parse(startReadingTime!.ToString());
+ var cacheStartRestTime = DateTime.Parse(startRestTimeKey!.ToString());
int timespanMin = (DateTime.Now - cacheStartRestTime).Minutes;
if (timespanMin > restMinute)
{