保存错误
parent
14808500a9
commit
0611bcb8d3
|
@ -5625,7 +5625,7 @@
|
|||
字典Type
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.ForeignKeyTable">
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.FrontAuditConfigAddOrEdit.ForeignKeyTableName">
|
||||
<summary>
|
||||
外键Table
|
||||
</summary>
|
||||
|
|
|
@ -259,7 +259,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
|||
/// 外键Table
|
||||
/// </summary>
|
||||
|
||||
public string ForeignKeyTable { get; set; } = string.Empty;
|
||||
public string ForeignKeyTableName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 外键Ke
|
||||
|
|
|
@ -151,6 +151,7 @@ update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('VisitTask
|
|||
update DataInspection set SubjectVisitId=null where EntityName='ReadModule'
|
||||
update DataInspection set TrialReadingCriterionId=(select TrialReadingCriterionId from VisitTask where Id =VisitTaskId) where VisitTaskId is not null and TrialReadingCriterionId is null
|
||||
|
||||
--不用同步
|
||||
update FrontAuditConfig set ValueCN='任务名称' where Value='TaskName' and ValueCN='访视/阅片期名称' and Code='TaskName'
|
||||
update FrontAuditConfig set ValueCN='任务盲态标识' where Value='TaskBlindName' and ValueCN='访视盲态名称' and Code='TaskBlindName'
|
||||
|
||||
|
|
|
@ -78,3 +78,15 @@ update DataInspection set VisitTaskId = GeneralId where EntityName='VisitTask'
|
|||
|
||||
--发布之前备份 前后端代码和完整的数据库
|
||||
|
||||
--2022-12-17 维护稽查数据
|
||||
update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('OriginalReReadingTaskId":"',JsonDetail)+26,36) where EntityName='VisitTaskReReading'
|
||||
update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('VisitTaskId":"',JsonDetail)+14,36) where EntityName='TaskMedicalReview'
|
||||
update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('VisitTaskId":"',JsonDetail)+14,36) where EntityName='ReadingOncologyTaskInfo'
|
||||
update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('VisitTaskId":"',JsonDetail)+14,36) where EntityName='ReadingMedicalReviewDialog'
|
||||
update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('VisitTaskId":"',JsonDetail)+14,36) where EntityName='ReadingTaskQuestionAnswer'
|
||||
update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('VisitTaskId":"',JsonDetail)+14,36) where EntityName='ReadingTableAnswerRowInfo'
|
||||
update DataInspection set VisitTaskId= substring(JsonDetail,CHARINDEX('VisitTaskId":"',JsonDetail)+14,36) where EntityName='ReadingMedicineQuestionAnswer'
|
||||
|
||||
update DataInspection set SubjectVisitId=null where EntityName='ReadModule'
|
||||
update DataInspection set TrialReadingCriterionId=(select TrialReadingCriterionId from VisitTask where Id =VisitTaskId) where VisitTaskId is not null and TrialReadingCriterionId is null
|
||||
|
||||
|
|
Loading…
Reference in New Issue