Commit a8c0c1eccca33f8972501b00093c402b7af32ae5
1 parent
71f34efb6a
Exists in
dev
#fix:优化甲减查询逻辑
Showing 2 changed files with 7 additions and 4 deletions
platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/LisServiceImpl.java
View file @
a8c0c1e
... | ... | @@ -280,6 +280,7 @@ |
280 | 280 | } |
281 | 281 | params.put(code, item.getResult().trim()); |
282 | 282 | } |
283 | + //TODO 稀有血型 Rh血型(D)抗原鉴定 阴性 code:rh | |
283 | 284 | //TODO code HBcAb-J 乙肝表面抗原 HBeAb-J 乙肝表面抗体 HBeAg-j 乙肝e抗原 HBsAb-J 乙肝e抗体 HBsAg-J 乙肝核心抗体 HIV(1+2)抗体-J 人类免疫缺陷病毒抗体 TP-抗体 梅毒螺旋体抗体 |
284 | 285 | String time = DateUtil.getyyyy_MM_dd(new Date()); |
285 | 286 | //根据辅助检查项日期判断是初检还是复检 |
... | ... | @@ -390,7 +391,8 @@ |
390 | 391 | p=true; |
391 | 392 | patients.setGlucm(params.get("GLUCm")); |
392 | 393 | } |
393 | - //TODO code HBcAb-J 乙肝表面抗原 HBeAb-J 乙肝表面抗体 HBeAg-j 乙肝e抗原 HBsAb-J 乙肝e抗体 HBsAg-J 乙肝核心抗体 HIV(1+2)抗体-J 人类免疫缺陷病毒抗体 TP-抗体 梅毒螺旋体抗体 | |
394 | + //TODO 稀有血型 Rh血型(D)抗原鉴定 阴性 code:rh | |
395 | + //TODO code HBcAb-J 乙肝表面抗原 HBeAb-J 乙肝表面抗体 HBeAg-j 乙肝e抗原 HBsAb-J 乙肝e抗体 HBsAg-J 乙肝核心抗体 HIV(1+2)抗体-J 人类免疫缺陷病毒抗体 TP-抗体 梅毒螺旋体抗体 | |
394 | 396 | if (StringUtils.isNotEmpty(params.get("HBcAb-J"))){ |
395 | 397 | p=true; |
396 | 398 | patients.setHBcAbJ(params.get("HBcAb-J")); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java
View file @
a8c0c1e
... | ... | @@ -1768,12 +1768,13 @@ |
1768 | 1768 | }*/ |
1769 | 1769 | //riskPatientsQueryRequest.sethId(hospital); |
1770 | 1770 | //组合请求 |
1771 | - PatientsQuery patientsQuery = new PatientsQuery();//complayRequest(riskPatientsQueryRequest, isHighRisk, type, userId, needPage, isRegion); | |
1772 | - patientsQuery.setHospitalId(hospital); | |
1771 | + PatientsQuery patientsQuery= complayRequest(riskPatientsQueryRequest, isHighRisk, type, userId, needPage, isRegion);/*= new PatientsQuery();*/ | |
1772 | + /*patientsQuery.setHospitalId(hospital); | |
1773 | 1773 | patientsQuery.setNeed(needPage); |
1774 | 1774 | patientsQuery.setType(type); |
1775 | + | |
1775 | 1776 | patientsQuery.setLimit(riskPatientsQueryRequest.getLimit()); |
1776 | - patientsQuery.setPage(riskPatientsQueryRequest.getPage()); | |
1777 | + patientsQuery.setPage(riskPatientsQueryRequest.getPage());*/ | |
1777 | 1778 | //查询符合条件的孕妇 |
1778 | 1779 | StopWatch stopWatch = new StopWatch("queryPatient1 -" + hospital); |
1779 | 1780 | stopWatch.start(); |