Sfoglia il codice sorgente

优化检验检查预约。

lighter 4 anni fa
parent
commit
9618b17bef

+ 1 - 1
src/main/java/thyyxxk/wxservice_server/service/BookableService.java

@@ -62,7 +62,7 @@ public class BookableService {
         Map<String, Object> resultMap = new HashMap<>(Constants.Capacity.TWO);
         Map<String, List<Map<String, Object>>> sources = new HashMap<>(Constants.Capacity.DEFAULT);
         for (Map<String, Object> item : data) {
-            if ((int) item.get("status") != 0 || !exam.getName().equals(item.get("jcxm").toString().trim())) {
+            if ((int) item.get("status") != 0) {
                 continue;
             }
             String date = item.get("recordDate").toString();