Commit b8febe6e408485d8725f4fc9728440bd24f36cf8

Authored by yangfei
1 parent 26e26160ac

取消注释

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ b8febe6
... ... @@ -772,7 +772,7 @@
772 772 //体重指数计算规则:孕前体重/身高(单位米)的平方
773 773 java.text.DecimalFormat df = new java.text.DecimalFormat("#.#");
774 774 double tzzs = Double.parseDouble(data.getYqWeight()) / Math.pow(Double.parseDouble(data.getHeight()) / 100, 2);
775   - System.out.println("tzzs==================" + tzzs);
  775 + // System.out.println("tzzs==================" + tzzs);
776 776 map.put("tzzs", df.format(tzzs));
777 777 } catch (Exception e) {
778 778 ExceptionUtils.catchException(e, "体重指数计算错误");
... ... @@ -1783,7 +1783,7 @@
1783 1783 java.text.DecimalFormat df = new java.text.DecimalFormat("#.#");
1784 1784 df.setRoundingMode(RoundingMode.FLOOR);
1785 1785 double tzzs = Double.parseDouble(data.getYqWeight()) / Math.pow(Double.parseDouble(data.getHeight()) / 100, 2);
1786   - System.out.println("tzzs==================" + tzzs);
  1786 + // System.out.println("tzzs==================" + tzzs);
1787 1787 map.put("tzzs", df.format(tzzs));
1788 1788 } catch (Exception e) {
1789 1789 ExceptionUtils.catchException(e, "体重指数计算错误");