|
|
|
@ -503,7 +503,7 @@ namespace Shentun.Peis.PatientRegisters |
|
|
|
|
|
|
|
int totalCount = entlist.Count(); |
|
|
|
|
|
|
|
entlist = entlist.OrderBy(o => o.patientRegister.Id).Skip(input.SkipCount * input.MaxResultCount).Take(input.MaxResultCount); |
|
|
|
entlist = entlist.OrderByDescending(o=>o.patientRegister.CompleteFlag).ThenBy(o => o.patientRegister.Id).Skip(input.SkipCount * input.MaxResultCount).Take(input.MaxResultCount); |
|
|
|
|
|
|
|
|
|
|
|
var entdto = entlist.Select(s => new PatientRegisterOrNoDto |
|
|
|
|