Commit df29378a61b53b20a1a461b5717f6ef9bc60859c

Authored by liquanyu
1 parent fc084c329c

体重管理

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java View file @ df29378
... ... @@ -1339,7 +1339,7 @@
1339 1339 }
1340 1340 Double b = Double.parseDouble(before);
1341 1341 Double n = Double.parseDouble(now);
1342   - return MathUtil.doubleFormat2(n - b);
  1342 + return Double.parseDouble(MathUtil.doubleFormat(n - b));
1343 1343 }
1344 1344  
1345 1345