|
|
|
@ -1024,8 +1024,10 @@ namespace Shentun.Peis.PrintReports |
|
|
|
PersonnelTypeName = _cacheService.GetPersonnelTypeNameAsync(patientRegister.PersonnelTypeId).Result, |
|
|
|
MedicalStartDate = patientRegister.MedicalStartDate, |
|
|
|
SummaryDoctorName = _cacheService.GetSurnameAsync(patientRegister.SummaryDoctorId).Result, |
|
|
|
SummaryDoctorSignUrl = _cacheService.GetUserSignAsync(patientRegister.SummaryDoctorId).GetAwaiter().GetResult(), |
|
|
|
SummaryDate = patientRegister.SummaryDate, |
|
|
|
AuditDoctorName = _cacheService.GetSurnameAsync(patientRegister.AuditDoctorId).Result, |
|
|
|
AuditDoctorSignUrl = _cacheService.GetUserSignAsync(patientRegister.AuditDoctorId).GetAwaiter().GetResult(), |
|
|
|
AuditDate = patientRegister.AuditDate, |
|
|
|
//体检中心信息
|
|
|
|
MedicalCenterTelphone = medicalCenterTelphone, |
|
|
|
@ -1212,6 +1214,7 @@ namespace Shentun.Peis.PrintReports |
|
|
|
if (Guid.TryParse(checkDoctorId, out var checkDoctorIdGuid)) |
|
|
|
{ |
|
|
|
medicalReportRegisterCheckDto.CheckDoctorName = _cacheService.GetSurnameAsync(checkDoctorIdGuid).Result; |
|
|
|
medicalReportRegisterCheckDto.CheckDoctorSignUrl = _cacheService.GetUserSignAsync(checkDoctorIdGuid).Result; |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
@ -1222,6 +1225,7 @@ namespace Shentun.Peis.PrintReports |
|
|
|
//lis审核医生+标本号
|
|
|
|
medicalReportRegisterCheckDto.LisSampleNo = registerCheckRow.registerCheck.LisSampleNo; |
|
|
|
medicalReportRegisterCheckDto.LisAuditorDoctorName = registerCheckRow.registerCheck.LisAuditorDoctorName; |
|
|
|
|
|
|
|
|
|
|
|
//显示顺序
|
|
|
|
medicalReportRegisterCheckDto.DisplayOrder = registerCheckRow.asbitem.DisplayOrder; |
|
|
|
|