Commit ba7f953ad3ddf6cd8201c0a92484955e27537860
1 parent
d29956b7ba
Exists in
master
and in
6 other branches
测量
Showing 1 changed file with 3 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java
View file @
ba7f953
... | ... | @@ -2379,6 +2379,9 @@ |
2379 | 2379 | Map<String, Map<Integer, Double>> series = new HashMap<>(); |
2380 | 2380 | Map<String, Map<String, Object>> datas = new TreeMap<>(); |
2381 | 2381 | PatientWeight patientWeight = mongoTemplate.findOne(Query.query(Criteria.where("_id").is(pid)), PatientWeight.class); |
2382 | + | |
2383 | + updateWeight(beforeWeight,patientWeight); | |
2384 | + | |
2382 | 2385 | //1.获取该孕妇是否有推荐的高危项 |
2383 | 2386 | Patients patients = mongoTemplate.findOne(Query.query(Criteria.where("_id").is(patientWeight.getPatientId())), Patients.class); |
2384 | 2387 | //1.1获取到这孕妇所有的高危因素id |