From 4656c6f15ac8cbf5caf0ae5bb9bd2cc6bb0c00d2 Mon Sep 17 00:00:00 2001 From: "DESKTOP-G961P6V\\Zhh" <839860190@qq.com> Date: Tue, 25 Jun 2024 20:27:04 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E7=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WebAppoints/WebAppointWebPeisPlugIns.cs | 1 + .../AppointPatientRegisterAppService.cs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointWebPeisPlugIns.cs b/src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointWebPeisPlugIns.cs index 8fd5b0c..026116d 100644 --- a/src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointWebPeisPlugIns.cs +++ b/src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointWebPeisPlugIns.cs @@ -62,6 +62,7 @@ namespace Shentun.Peis.PlugIns.WebAppoints MobilePhone = input.MobilePhone, AppointStartDate = input.AppointStartDate, AppointStopDate = input.AppointStopDate, + CompleteFlag = input.CompleteFlag, }; var appointPatientRegisterDtos = await CallWePeisAppServiceAsync>(_webPeisGetAppointPatientRegisterListByFilterUrl, webAppointPatientRegisterInput); diff --git a/src/Shentun.Peis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs b/src/Shentun.Peis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs index 030ac61..44099ff 100644 --- a/src/Shentun.Peis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs +++ b/src/Shentun.Peis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs @@ -50,7 +50,8 @@ namespace Shentun.Peis.AppointPatientRegisters IdNo = input.IdNo, MobilePhone = input.MobilePhone, AppointStartDate = input.AppointStartDate, - AppointStopDate = input.AppointStopDate + AppointStopDate = input.AppointStopDate, + CompleteFlag = input.CompleteFlag, }; object[] objects = [appointPatientRegisterPlugInsInputDto]; var parmValue = thirdInterface.ParmValue;