liusheng
4 天以前 84a995c146ce6ab74709a503d010b03fb469e022
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceReimbursementController.java
@@ -769,7 +769,7 @@
    }
    public static String convert(Double money) {
        String smoney = money.toString();
        String smoney = BigDecimal.valueOf(money).toString();
        try {
            if (smoney.indexOf(".") != -1) {                        //把数值分为整数型和带小数的数值分开处理。
                String left = smoney.substring(0, smoney.indexOf("."));