|
@@ -637,8 +637,9 @@ public class SiManageService {
|
|
|
if (ListUtil.isBlank(page.getRecords())) {
|
|
|
return ResultVoUtil.fail(ExceptionEnum.NO_DATA_EXIST);
|
|
|
}
|
|
|
- Set<String> inpatientNo = new HashSet<>();
|
|
|
+ Set<String> inpatientNos = new HashSet<>();
|
|
|
for (TSiSetlinfo item : page.getRecords()) {
|
|
|
+ inpatientNos.add(item.getPatNo());
|
|
|
item.setGendName(item.getGend().equals("1") ? "男" : "女");
|
|
|
if (item.getClrOptinsName() == null) {
|
|
|
item.setClrOptinsName(Objects.requireNonNull(Admdvs.get(item.getClrOptins())).getName());
|