diff --git a/src/Shentun.Peis.Application/ThirdBookingPushs/ThirdBookingPushAppService.cs b/src/Shentun.Peis.Application/ThirdBookingPushs/ThirdBookingPushAppService.cs index 6b00fa0..53467a4 100644 --- a/src/Shentun.Peis.Application/ThirdBookingPushs/ThirdBookingPushAppService.cs +++ b/src/Shentun.Peis.Application/ThirdBookingPushs/ThirdBookingPushAppService.cs @@ -321,7 +321,7 @@ namespace Shentun.Peis.ThirdBookingPushs var fileInputParm = new EncryDataRequstDto { SIGN = fileSign, - ICODE = thirdBookingEnt.ICode + ICODE = iCode }; var fileResultEncry = await CallBookingFileAppServiceAsync(baseApiAddress, fileUploadApiAddress, fileInputParm, fileDataEncrypt, $"{input.PatientRegisterId.ToString()}.pdf"); diff --git a/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs b/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs index f2a6026..18c7242 100644 --- a/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs +++ b/src/Shentun.Peis.Application/TransToWebPeis/TransToWebPeisAppService.cs @@ -180,6 +180,9 @@ namespace Shentun.Peis.TransToWebPeis PatientRegisterId = input.PatientRegisterId, ReportBase64 = input.ReportBase64 }); + + isPatientRegister.IsUpload = 'Y'; + await _patientRegisterRepository.UpdateAsync(isPatientRegister); } }