liusheng
8 天以前 2af026a8b4ff03fe32136d9c891568db64b30d6c
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("."));