From 0b5cfc81498840210a58d7b9186d9f3e06266d90 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Sat, 23 Nov 2024 17:53:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A8=E9=80=81=E4=BA=BA=E5=AF=BF=E6=8A=A5?= =?UTF-8?q?=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ThirdBookingPushs/ThirdBookingPushAppService.cs | 2 +- .../TransToWebPeis/TransToWebPeisAppService.cs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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); } }