Commit 6206c044378729eb4c87609a3cd67a4cb1777f2e
1 parent
8b2845b2eb
Exists in
master
and in
6 other branches
1
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/TrackDownFacade.java
View file @
6206c04
... | ... | @@ -347,7 +347,7 @@ |
347 | 347 | |
348 | 348 | temp.put("residenceAddress", CommonsHelper.getFullAddress(downRecord.getProvinceRegisterId(), downRecord.getCityRegisterId(), downRecord.getAreaRegisterId(), downRecord.getAddressRegister(), basicConfigService)); /** 居住地 */ |
349 | 349 | temp.put("phone", StringUtils.encryPhone(downRecord.getPhone())); |
350 | - TrackDown trackDown = mongoTemplate.findOne(Query.query(Criteria.where("parentId").is(downRecord.getResidentsArchiveId()).and("yn").is(1).and("trackType").is(downRecord.getTrackType())).with(new Sort(Sort.Direction.DESC, "created")), TrackDown.class); | |
350 | + TrackDown trackDown = mongoTemplate.findOne(Query.query(Criteria.where("parentId").is(downRecord.getResidentsArchiveId()).and("yn").is(1).and("trackDownType").is(downRecord.getTrackType())).with(new Sort(Sort.Direction.DESC, "created")), TrackDown.class); | |
351 | 351 | temp.put("age", DateUtil.getAge(downRecord.getBirth())); |
352 | 352 | // 婚检追访结果 |
353 | 353 | temp.put("result", trackDown == null ? "--" : trackDown.getResult()); |