From 5f26cbd80ff89a6772715e693953d13d518a7e6f Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Mon, 13 Mar 2023 14:15:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/ShortcutKey/ShortcutKeyService.cs | 4 ++-- IRaCIS.Core.Domain/SQLFile/Test.sql | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs b/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs index 5aa64b748..1a893150e 100644 --- a/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs @@ -114,7 +114,7 @@ namespace IRaCIS.Core.Application.Service CtrlKey = false, ShiftKey = false, MetaKey = false, - Text= "PageUp", + Text= "Page Up", Code= "PageUp" }, new ShortcutKey (){ @@ -125,7 +125,7 @@ namespace IRaCIS.Core.Application.Service CtrlKey = false, ShiftKey = false, MetaKey = false, - Text= "PageDown", + Text= "Page Down", Code= "PageDown" }, new ShortcutKey (){ diff --git a/IRaCIS.Core.Domain/SQLFile/Test.sql b/IRaCIS.Core.Domain/SQLFile/Test.sql index c55e63021..8c0052b90 100644 --- a/IRaCIS.Core.Domain/SQLFile/Test.sql +++ b/IRaCIS.Core.Domain/SQLFile/Test.sql @@ -994,3 +994,11 @@ and (SubjectVisit.PDState=1 or SubjectVisit.IsEnrollmentConfirm=1) update ReadingQuestionTrial set GroupId= (select top 1 id from ReadingQuestionTrial a where a.Type='group' and a.GroupName=ReadingQuestionTrial.GroupName and a.ReadingQuestionCriterionTrialId=ReadingQuestionTrial.ReadingQuestionCriterionTrialId) where ReadingQuestionTrial.Type!='group' update ReadingQuestionSystem set GroupId= (select top 1 id from ReadingQuestionSystem a where a.Type='group' and a.GroupName=ReadingQuestionSystem.GroupName and a.ReadingQuestionCriterionSystemId=ReadingQuestionSystem.ReadingQuestionCriterionSystemId) where ReadingQuestionSystem.Type!='group' + + + + +-----------------维护快捷键 +update ShortcutKey set Text='Page Up' where Text='PageUp' + +update ShortcutKey set Text='Page Down' where Text='PageDown' \ No newline at end of file