Commit ff9129aebbfe281627cbd98354e976dd728b006b
1 parent
841d60a4cd
Exists in
master
and in
8 other branches
修改新电子病历
Showing 2 changed files with 3 additions and 2 deletions
platform-dal/src/main/java/com/lyms/platform/query/ReferralApplyOrderQuery.java
View file @
ff9129a
... | ... | @@ -303,8 +303,8 @@ |
303 | 303 | |
304 | 304 | |
305 | 305 | |
306 | - if(null!=riskFactor){ | |
307 | - condition=condition.and("riskFactor",riskFactor, MongoOper.IN); | |
306 | + if(StringUtils.isNotEmpty(riskFactor)){ | |
307 | + condition=condition.and("rRisk",riskFactor, MongoOper.IN); | |
308 | 308 | } |
309 | 309 | if(StringUtils.isNotEmpty(cardNo)){ |
310 | 310 | condition=condition.and("cardNo",cardNo, MongoOper.IS); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
ff9129a
... | ... | @@ -408,6 +408,7 @@ |
408 | 408 | if (null != applyOrderQueryRequest.getTyVip() && Boolean.TRUE.equals(applyOrderQueryRequest.getTyVip())) { |
409 | 409 | referralApplyOrderQuery.setExpVip(1); |
410 | 410 | } |
411 | + referralApplyOrderQuery.setRiskFactor(applyOrderQueryRequest.getHighRisk()); | |
411 | 412 | referralApplyOrderQuery.setPage(applyOrderQueryRequest.getPage()); |
412 | 413 | referralApplyOrderQuery.setLimit(applyOrderQueryRequest.getLimit()); |
413 | 414 | referralApplyOrderQuery.setNeed("1"); |