Browse Source

综述

master
wxd 3 months ago
parent
commit
c67e7ad455
  1. 3
      src/Shentun.Peis.Application/SumSummaryReports/SumSummaryReportAppService.cs

3
src/Shentun.Peis.Application/SumSummaryReports/SumSummaryReportAppService.cs

@ -474,9 +474,10 @@ namespace Shentun.Peis.SumSummaryReports
.ThenInclude(x => x.SumSummaryContents)
.Where(m => m.PatientId == patientRegisterEntity.PatientId
&& m.SumSummaryHeaders.Count > 0
&& m.MedicalTimes < patientRegisterEntity.MedicalTimes
&& m.CompleteFlag != PatientRegisterCompleteFlag.PreRegistration)
.OrderByDescending(m => m.MedicalTimes).ThenByDescending(m => m.MedicalStartDate)
.ToList().Skip(1).Take(historySummaryYearsLimitInt);
.ToList().Take(historySummaryYearsLimitInt);
if (entlist.Any())
{

Loading…
Cancel
Save