|
@ -101,6 +101,19 @@ public class CarePatientService extends BaseJpaService<BasePatientDO, BasePatien
|
|
|
return PageEnvelop.getSuccessListWithPage("success",list,page,size,count);
|
|
|
}
|
|
|
|
|
|
public JSONObject findPatientLabelAndCar(String patientId) throws Exception{
|
|
|
JSONObject res = new JSONObject();
|
|
|
List<WlyyPatientLabelDO> list = patientLabelDao.findByPatient(patientId);
|
|
|
res.put("label",list);
|
|
|
CapacityAssessmentRecordDO recordDO = capacityAssessmentRecordService.findAssessmentByPatientId(patientId);
|
|
|
if(recordDO==null){
|
|
|
res.put("levelConclusionName","");
|
|
|
}else{
|
|
|
res.put("levelConclusionName",recordDO.getLevelConclusionName());
|
|
|
}
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 居民id
|
|
|
* @param patientId
|