X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FLedgerTransactionAccount.java;h=1791cfbc5962e79b5b3c16ab4516c5e921a1765b;hb=a1f5cf187a6bc2731aa1ed057d3d11fccc5de2c4;hp=4468724e5f3771490ce81221ec8d480ce30f3817;hpb=2d09e6a32395295afec7deb5561b7eb2a82f8efc;p=mobile-ledger.git diff --git a/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java b/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java index 4468724e..1791cfbc 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java @@ -21,6 +21,8 @@ import androidx.annotation.NonNull; import net.ktnx.mobileledger.utils.Misc; +import java.util.Locale; + public class LedgerTransactionAccount { private String accountName; private String shortAccountName; @@ -28,11 +30,13 @@ public class LedgerTransactionAccount { private boolean amountSet = false; private String currency; private String comment; + private boolean amountValid = true; public LedgerTransactionAccount(String accountName, float amount, String currency, String comment) { this.setAccountName(accountName); this.amount = amount; this.amountSet = true; + this.amountValid = true; this.currency = Misc.emptyIsNull(currency); this.comment = Misc.emptyIsNull(comment); } @@ -49,6 +53,7 @@ public class LedgerTransactionAccount { setComment(origin.getComment()); if (origin.isAmountSet()) setAmount(origin.getAmount()); + amountValid = origin.amountValid; currency = origin.getCurrency(); } public String getComment() { @@ -76,13 +81,19 @@ public class LedgerTransactionAccount { public void setAmount(float account_amount) { this.amount = account_amount; this.amountSet = true; + this.amountValid = true; } public void resetAmount() { this.amountSet = false; + this.amountValid = true; + } + public void invalidateAmount() { + this.amountValid = false; } public boolean isAmountSet() { return amountSet; } + public boolean isAmountValid() { return amountValid; } public String getCurrency() { return currency; } @@ -99,8 +110,8 @@ public class LedgerTransactionAccount { sb.append(currency); sb.append(' '); } - sb.append(String.format("%,1.2f", amount)); + sb.append(String.format(Locale.US, "%,1.2f", amount)); return sb.toString(); } -} +} \ No newline at end of file