|
|
|
@ -205,6 +205,8 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
lisRequestItem.registerCheck.ExecOrganizationUnitId = inputItem.ExecOrganizationUnitId; |
|
|
|
lisRequestItem.registerCheck.AuditorName = inputItem.AuditorName; |
|
|
|
lisRequestItem.registerCheck.LisSampleNo = inputItem.LisSampleNo; |
|
|
|
lisRequestItem.registerCheck.AuditorTime = inputItem.AuditorTime; |
|
|
|
lisRequestItem.registerCheck.SubmissionTime = inputItem.SubmissionTime; |
|
|
|
registerChecks.Add(lisRequestItem.registerCheck); |
|
|
|
} |
|
|
|
} |
|
|
|
@ -264,8 +266,9 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
|
|
|
|
}).ToList(), |
|
|
|
LisSampleNo = registerCheck.LisSampleNo, |
|
|
|
AuditorName = registerCheck.AuditorName |
|
|
|
|
|
|
|
AuditorName = registerCheck.AuditorName, |
|
|
|
AuditorTime = registerCheck.AuditorTime, |
|
|
|
SubmissionTime = registerCheck.SubmissionTime |
|
|
|
}; |
|
|
|
|
|
|
|
var getDiagnosisResultRequestDto = new GetDiagnosisResultRequestDto() |
|
|
|
@ -471,7 +474,7 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
var config = configurationBuilder.Build(); |
|
|
|
Guid execOrganizationUnitId = Guid.Parse(config.GetSection("Interface").GetSection("ExecOrganizationUnitId").Value); |
|
|
|
Guid columnReferenId = Guid.Parse(config.GetSection("Interface").GetSection("ColumnReferenId").Value); |
|
|
|
Guid userColumnReferenId= Guid.Parse(config.GetSection("Interface").GetSection("UserColumnReferenId").Value); |
|
|
|
Guid userColumnReferenId = Guid.Parse(config.GetSection("Interface").GetSection("UserColumnReferenId").Value); |
|
|
|
|
|
|
|
List<CreateImportLisResultDto> inputDtoList = new List<CreateImportLisResultDto>(); |
|
|
|
|
|
|
|
@ -516,7 +519,9 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
Result = item.Result, |
|
|
|
Unit = item.Unit, |
|
|
|
AuditorName = item.AuditorName, |
|
|
|
LisSampleNo = item.LisSampleNo |
|
|
|
LisSampleNo = item.LisSampleNo, |
|
|
|
AuditorTime = item.AuditorTime, |
|
|
|
SubmissionTime = item.SubmissionTime |
|
|
|
}; |
|
|
|
inputDtoList.Add(inputDto); |
|
|
|
} |
|
|
|
@ -598,7 +603,7 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
//};
|
|
|
|
//修改参考范围
|
|
|
|
await UpdateItemReferenceRangeValueAsync(inputItem.ItemId, lisRequestItem.patientRegister.SexId, |
|
|
|
lisRequestItem.patientRegister.Age, inputItem.ReferenceRangeValue,inputItem.CriticalRangeValue); |
|
|
|
lisRequestItem.patientRegister.Age, inputItem.ReferenceRangeValue, inputItem.CriticalRangeValue); |
|
|
|
//修改单位
|
|
|
|
await UpdateItemUnitAsync(inputItem.ItemId, inputItem.Unit); |
|
|
|
|
|
|
|
@ -611,6 +616,8 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
lisRequestItem.registerCheck.ExecOrganizationUnitId = inputItem.ExecOrganizationUnitId; |
|
|
|
lisRequestItem.registerCheck.AuditorName = inputItem.AuditorName; |
|
|
|
lisRequestItem.registerCheck.LisSampleNo = inputItem.LisSampleNo; |
|
|
|
lisRequestItem.registerCheck.SubmissionTime = inputItem.SubmissionTime; |
|
|
|
lisRequestItem.registerCheck.AuditorTime = inputItem.AuditorTime; |
|
|
|
registerChecks.Add(lisRequestItem.registerCheck); |
|
|
|
} |
|
|
|
} |
|
|
|
@ -670,8 +677,9 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
|
|
|
|
}).ToList(), |
|
|
|
LisSampleNo = registerCheck.LisSampleNo, |
|
|
|
AuditorName = registerCheck.AuditorName |
|
|
|
|
|
|
|
AuditorName = registerCheck.AuditorName, |
|
|
|
AuditorTime = registerCheck.AuditorTime, |
|
|
|
SubmissionTime = registerCheck.SubmissionTime |
|
|
|
}; |
|
|
|
|
|
|
|
var getDiagnosisResultRequestDto = new GetDiagnosisResultRequestDto() |
|
|
|
|