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

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

@@ -8,8 +8,8 @@ package cn.qqck.kotlin.tools
  */
 fun Long.元(厘: Boolean = false): String {
     return if (厘) {
-        String.format("%.3f", this / 1000.0)
+        String.format("%.3f", this / 1000.0).trimEnd('0').trimEnd('.')
     } else {
-        String.format("%.2f", this / 100.0)
+        String.format("%.2f", this / 100.0).trimEnd('0').trimEnd('.')
     }
 }