Administrator 2 weeks ago
parent
commit
498243296a
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/main/kotlin/cn/qqck/kotlin/tools/Money.kt

+ 5 - 1
src/main/kotlin/cn/qqck/kotlin/tools/Money.kt

@@ -7,5 +7,9 @@ package cn.qqck.kotlin.tools
  * @return 转换后的金额字符串,保留两位小数。
  */
 fun Long.元(厘: Boolean = false): String {
-    return String.format("%.2f", this / (if (厘) 1000.0 else 100.0))
+    return if (厘) {
+        String.format("%.3f", this / 1000.0)
+    } else {
+        String.format("%.2f", this / 100.0)
+    }
 }