|
|
@ -1,4 +1,5 @@ |
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
|
|
|
|
|
|
using IdentityModel.Client; |
|
|
|
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
using Microsoft.EntityFrameworkCore; |
|
|
using Microsoft.EntityFrameworkCore; |
|
|
using Microsoft.Extensions.Configuration; |
|
|
using Microsoft.Extensions.Configuration; |
|
|
@ -1363,6 +1364,24 @@ namespace Shentun.Peis.PrintReports |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 体检审核信息
|
|
|
|
|
|
|
|
|
|
|
|
medicalReportRegisterCheckDto.IsAudit = registerCheckRow.registerCheck.IsAudit; |
|
|
|
|
|
medicalReportRegisterCheckDto.AuditTime = DataHelper.ConversionDateToString(registerCheckRow.registerCheck.AuditTime); |
|
|
|
|
|
|
|
|
|
|
|
var auditorUserId = registerCheckRow.registerCheck.AuditorUserId; |
|
|
|
|
|
if (auditorUserId != null && auditorUserId != Guid.Empty) |
|
|
|
|
|
{ |
|
|
|
|
|
medicalReportRegisterCheckDto.AuditorUserName = _cacheService.GetSurnameAsync(auditorUserId).GetAwaiter().GetResult(); |
|
|
|
|
|
medicalReportRegisterCheckDto.AuditorUserSignUrl = _cacheService.GetUserSignAsync(auditorUserId).GetAwaiter().GetResult(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region 第三方传过来的审核信息
|
|
|
//lis审核医生+标本号
|
|
|
//lis审核医生+标本号
|
|
|
medicalReportRegisterCheckDto.LisSampleNo = registerCheckRow.registerCheck.LisSampleNo; |
|
|
medicalReportRegisterCheckDto.LisSampleNo = registerCheckRow.registerCheck.LisSampleNo; |
|
|
// medicalReportRegisterCheckDto.LisAuditorDoctorName = registerCheckRow.registerCheck.LisAuditorDoctorName;
|
|
|
// medicalReportRegisterCheckDto.LisAuditorDoctorName = registerCheckRow.registerCheck.LisAuditorDoctorName;
|
|
|
@ -1383,6 +1402,7 @@ namespace Shentun.Peis.PrintReports |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//显示顺序
|
|
|
//显示顺序
|
|
|
|