Fix for incorrect amounts reported by API

This commit is contained in:
catbref
2020-05-19 15:20:20 +01:00
parent 28991a926f
commit 7102f4a727
2 changed files with 23 additions and 15 deletions

View File

@@ -12,21 +12,7 @@ public abstract class Amounts {
public static final BigInteger ROUNDING = MULTIPLIER_BI.subtract(BigInteger.ONE);
public static String prettyAmount(long amount) {
StringBuilder stringBuilder = new StringBuilder(20);
stringBuilder.append(amount / MULTIPLIER);
stringBuilder.append('.');
int dpLength = stringBuilder.length();
stringBuilder.append(Math.abs(amount % MULTIPLIER));
int paddingRequired = 8 - (stringBuilder.length() - dpLength);
if (paddingRequired > 0)
stringBuilder.append("00000000", 0, paddingRequired);
return stringBuilder.toString();
return String.format("%d.%08d", amount / MULTIPLIER, amount % MULTIPLIER);
}
public static BigDecimal toBigDecimal(long amount) {