Commit a72560d2a03aea28431c6d7dd4821e81e464666f

Authored by jiangjiazhi
1 parent 45158fe4d6

1

Showing 1 changed file with 4 additions and 4 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/TrackDownFacade.java View file @ a72560d
... ... @@ -241,7 +241,7 @@
241 241 TrackDown trackDown = mongoTemplate.findOne(Query.query(Criteria.where("parentId").is(downRecord.getParentId()).and("yn").is(1)).with(new Sort(Sort.Direction.DESC, "created")), TrackDown.class);
242 242 temp.put("age", DateUtil.getAge(downRecord.getBirth()));
243 243 // 婚检追访结果
244   - temp.put("result", trackDown == null ? "--" : TrackDownTransferEnums.getName(trackDown.getTrackDownType()));
  244 + temp.put("result", trackDown == null ? "--" : trackDown.getResult());
245 245 // 婚检追访时间
246 246 temp.put("trackDownTime", trackDown == null ? "--" : DateUtil.getyyyy_MM_dd(trackDown.getTrackDownDate()));
247 247 // 预约时间
... ... @@ -285,7 +285,7 @@
285 285 TrackDown trackDown = mongoTemplate.findOne(Query.query(Criteria.where("parentId").is(downRecord.getParentId()).and("yn").is(1)).with(new Sort(Sort.Direction.DESC, "created")), TrackDown.class);
286 286 temp.put("age", DateUtil.getAge(downRecord.getBirth()));
287 287 // 婚检追访结果
288   - temp.put("result", trackDown == null ? "--" : TrackDownTransferEnums.getName(trackDown.getTrackDownType()));
  288 + temp.put("result", trackDown == null ? "--" : trackDown.getResult());
289 289 // 婚检追访时间
290 290 temp.put("trackDownTime", trackDown == null ? "--" : DateUtil.getyyyy_MM_dd(trackDown.getTrackDownDate()));
291 291 // 预约时间
... ... @@ -313,7 +313,7 @@
313 313 TrackDown trackDown = mongoTemplate.findOne(Query.query(Criteria.where("parentId").is(downRecord.getParentId()).and("yn").is(1)).with(new Sort(Sort.Direction.DESC, "created")), TrackDown.class);
314 314 temp.put("age", DateUtil.getAge(downRecord.getBirth()));
315 315 // 婚检追访结果
316   - temp.put("result", trackDown == null ? "--" : TrackDownTransferEnums.getName(trackDown.getTrackDownType()));
  316 + temp.put("result", trackDown == null ? "--" : trackDown.getResult());
317 317 // 婚检追访时间
318 318 temp.put("trackDownTime", trackDown == null ? "--" : DateUtil.getyyyy_MM_dd(trackDown.getTrackDownDate()));
319 319 // 预约时间
... ... @@ -340,7 +340,7 @@
340 340 TrackDown trackDown = mongoTemplate.findOne(Query.query(Criteria.where("parentId").is(downRecord.getParentId()).and("yn").is(1)).with(new Sort(Sort.Direction.DESC, "created")), TrackDown.class);
341 341 temp.put("age", DateUtil.getAge(downRecord.getBirth()));
342 342 // 婚检追访结果
343   - temp.put("result", trackDown == null ? "--" : TrackDownTransferEnums.getName(trackDown.getTrackDownType()));
  343 + temp.put("result", trackDown == null ? "--" : trackDown.getResult());
344 344 // 婚检追访时间
345 345 temp.put("trackDownTime", trackDown == null ? "--" : DateUtil.getyyyy_MM_dd(trackDown.getTrackDownDate()));
346 346 // 预约时间