|
|
|
@ -197,6 +197,8 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
lisRequestItem.registerCheck.CheckDoctorId = inputItem.CheckDoctorName; |
|
|
|
lisRequestItem.registerCheck.CheckDate = inputItem.CheckDate; |
|
|
|
lisRequestItem.registerCheck.ExecOrganizationUnitId = inputItem.ExecOrganizationUnitId; |
|
|
|
lisRequestItem.registerCheck.LisAuditorDoctorName = inputItem.LisAuditorDoctorName; |
|
|
|
lisRequestItem.registerCheck.LisSampleNo = inputItem.LisSampleNo; |
|
|
|
registerChecks.Add(lisRequestItem.registerCheck); |
|
|
|
} |
|
|
|
} |
|
|
|
@ -204,6 +206,7 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
List<RegisterCheckAsbitem> updateRegisterCheckAsbitem = new List<RegisterCheckAsbitem>(); |
|
|
|
|
|
|
|
//更新参考范围和单位
|
|
|
|
foreach (var registerCheck in registerChecks) |
|
|
|
@ -253,7 +256,9 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
ItemId = o.registerCheckItem.ItemId, |
|
|
|
Result = o.registerCheckItem.Result, |
|
|
|
|
|
|
|
}).ToList() |
|
|
|
}).ToList(), |
|
|
|
LisSampleNo = registerCheck.LisSampleNo, |
|
|
|
LisAuditorDoctorName = registerCheck.LisAuditorDoctorName |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
@ -282,7 +287,6 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
await _registerCheckAppService.UpdateCheckResult(updateCheckResultDto); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
/// <summary>
|
|
|
|
/// 导入某个人的结果
|
|
|
|
@ -477,7 +481,9 @@ namespace Shentun.Peis.ImportLisResults |
|
|
|
ReportPrompt = "", |
|
|
|
ResultStatusId = null, |
|
|
|
Result = item.Result, |
|
|
|
Unit = item.Unit |
|
|
|
Unit = item.Unit, |
|
|
|
LisAuditorDoctorName = item.LisAuditorDoctorName, |
|
|
|
LisSampleNo = item.LisSampleNo |
|
|
|
}; |
|
|
|
|
|
|
|
inputDtoList.Add(inputDto); |
|
|
|
|