Commit 176b533d34279450ffca7df468920de2fe989d4c
1 parent
10876d6a5c
Exists in
master
and in
6 other branches
update code
Showing 2 changed files with 4 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
176b533
... | ... | @@ -4204,13 +4204,13 @@ |
4204 | 4204 | DiagnoseConfigQuery diagnoseConfigQuery = new DiagnoseConfigQuery(); |
4205 | 4205 | diagnoseConfigQuery.setHospitalId(hospitalId); |
4206 | 4206 | List<DiagnoseConfigModel> configModels = diagnoseConfigService.queryDiagnoseConfigs(diagnoseConfigQuery); |
4207 | - | |
4207 | + System.out.println("configModels"+configModels); | |
4208 | 4208 | List<Map<String, String>> riskList = new ArrayList<>(); |
4209 | 4209 | |
4210 | 4210 | Map<String, String> status = new HashMap<>(); |
4211 | 4211 | if (CollectionUtils.isNotEmpty(configModels)) { |
4212 | 4212 | DiagnoseConfigModel model = configModels.get(0); |
4213 | - | |
4213 | + System.out.println("model"+model); | |
4214 | 4214 | List<Map<String, String>> configs = model.getConfigs(); |
4215 | 4215 | |
4216 | 4216 | if (model == null || "0".equals(model.getEnable()) || configs == null || configs.size() == 0) { |
4217 | 4217 | |
... | ... | @@ -4222,9 +4222,8 @@ |
4222 | 4222 | } |
4223 | 4223 | } |
4224 | 4224 | } |
4225 | - | |
4226 | - | |
4227 | 4225 | Map<Integer, List<DiagnoseItemModel>> mapItems = getRiskConfig(configModels); |
4226 | + System.out.println("mapItems"+mapItems); | |
4228 | 4227 | if (mapItems != null && mapItems.size() > 0) { |
4229 | 4228 | if (isEnableItem(status, DiagnoseEnums.DiagnoseItemEnums.age.getId())) { |
4230 | 4229 | Patients patients = patientsService.findOnePatientById(antExcAddRequest.getParentId()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
176b533