xiaochan 3 anni fa
parent
commit
c4093b2a18

+ 2 - 1
src/main/java/thyyxxk/webserver/service/medicalinsurance/SiManageService.java

@@ -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());