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