Browse Source

登记人员排序、导入检查单图片打印默认为Y

bjmzak
wxd 2 years ago
parent
commit
140b9fac3a
  1. 2
      src/Shentun.Peis.Application/PatientRegisters/PatientRegisterAppService.cs
  2. 2
      src/Shentun.Peis.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs

2
src/Shentun.Peis.Application/PatientRegisters/PatientRegisterAppService.cs

@ -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

2
src/Shentun.Peis.Application/RegisterCheckPictures/RegisterCheckPictureAppService.cs

@ -192,7 +192,7 @@ namespace Shentun.Peis.RegisterCheckPictures
ent = new RegisterCheckPicture
{
DisplayOrder = input.PictureBaseStrs.IndexOf(item) + 1,
IsPrint = 'N',
IsPrint = 'Y',
PictureFilename = PictureUrl,
RegisterCheckId = input.RegisterCheckId
};

Loading…
Cancel
Save