|
@@ -160,9 +160,19 @@ public class AlgorithmController extends BaseController {
|
|
|
searchData.setPushDiags(pushDiags);
|
|
|
bigDataResponseData.setTreat(graphResponseData.getTreat());
|
|
|
//量表和指标推送
|
|
|
+ List<MedicalIndication> ruleMedicalIndications = RuleResponseData.getMedicalIndications();
|
|
|
List<MedicalIndication> medicalIndications = graphResponseData.getMedicalIndications();
|
|
|
if (medicalIndications != null && medicalIndications.size() > 0) {
|
|
|
logger.info("指标推送!!!!!!!!!");
|
|
|
+ if(ruleMedicalIndications.size()>0){
|
|
|
+ for (MedicalIndication m:ruleMedicalIndications
|
|
|
+ ) {
|
|
|
+ MedicalIndication mI = new MedicalIndication();
|
|
|
+ mI.setName(m.getName());
|
|
|
+ medicalIndications.add(mI);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
bigDataResponseData.setMedicalIndications(medicalIndications);
|
|
|
}
|
|
|
//推送管理评估
|