Commit 5f408f970bdb2484c3b831df5d434c3248aa44de
1 parent
f80af5fe74
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 3 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java
View file @
5f408f9
... | ... | @@ -1933,6 +1933,7 @@ |
1933 | 1933 | list.add(temp); |
1934 | 1934 | } |
1935 | 1935 | } |
1936 | + | |
1936 | 1937 | series.put("portData", list); |
1937 | 1938 | restMap.put("reportModel", reportModel); |
1938 | 1939 | } |
... | ... | @@ -2044,7 +2045,8 @@ |
2044 | 2045 | Iterator<Map.Entry<Integer, String>> iterator = weights.entrySet().iterator(); |
2045 | 2046 | while (iterator.hasNext()) { |
2046 | 2047 | Map.Entry<Integer, String> next = iterator.next(); |
2047 | - list.add(Arrays.asList(next.getKey(), getDiff(beforeWeight, next.getValue()))); | |
2048 | +// list.add(Arrays.asList(next.getKey(), getDiff(beforeWeight, next.getValue()))); | |
2049 | + list.add(Arrays.asList(next.getKey(), getDiff(beforeWeight, next.getValue()).toString() + " 当前体重数66 测量日期2021-02-02")); | |
2048 | 2050 | } |
2049 | 2051 | } |
2050 | 2052 | series.put("portData", list); |