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;