X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FLedgerTransactionAccount.java;h=774112acef076cd1ad78695da6a0acdcbcde40ac;hb=7c579bb2ed5235a2dc1af600013606ee689527dd;hp=bfef8e2c171c906459d1dc851e99d500776bdc65;hpb=1ba89117b4fce6e0b603884cf7c45e281602eb3a;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 bfef8e2c..774112ac 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java @@ -1,88 +1,137 @@ /* - * Copyright © 2018 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * Copyright © 2021 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opinion), any later version. * - * Mobile-Ledger is distributed in the hope that it will be useful, + * MoLe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License terms for details. * * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.model; -import android.support.annotation.NonNull; +import androidx.annotation.NonNull; + +import net.ktnx.mobileledger.db.TransactionAccount; +import net.ktnx.mobileledger.utils.Misc; + +import java.util.Locale; public class LedgerTransactionAccount { private String accountName; private String shortAccountName; private float amount; - private boolean amountSet; + private boolean amountSet = false; private String currency; - - public LedgerTransactionAccount(String accountName, float amount) { - this(accountName, amount, null); - } - public LedgerTransactionAccount(String accountName, float amount, String currency) { + private String comment; + private boolean amountValid = true; + private long dbId; + public LedgerTransactionAccount(String accountName, float amount, String currency, + String comment) { this.setAccountName(accountName); this.amount = amount; this.amountSet = true; - this.currency = currency; + this.amountValid = true; + this.currency = Misc.emptyIsNull(currency); + this.comment = Misc.emptyIsNull(comment); } - public LedgerTransactionAccount(String accountName) { this.accountName = accountName; } - + public LedgerTransactionAccount(String accountName, String currency) { + this.accountName = accountName; + this.currency = Misc.emptyIsNull(currency); + } + public LedgerTransactionAccount(LedgerTransactionAccount origin) { + // copy constructor + setAccountName(origin.getAccountName()); + setComment(origin.getComment()); + if (origin.isAmountSet()) + setAmount(origin.getAmount()); + amountValid = origin.amountValid; + currency = origin.getCurrency(); + } + public LedgerTransactionAccount(TransactionAccount dbo) { + this(dbo.getAccountName(), dbo.getAmount(), Misc.emptyIsNull(dbo.getCurrency()), + Misc.emptyIsNull(dbo.getComment())); + amountSet = true; + amountValid = true; + dbId = dbo.getId(); + } + public String getComment() { + return comment; + } + public void setComment(String comment) { + this.comment = comment; + } public String getAccountName() { return accountName; } - public String getShortAccountName() { - return shortAccountName; - } public void setAccountName(String accountName) { this.accountName = accountName; shortAccountName = accountName.replaceAll("(?<=^|:)(.)[^:]+(?=:)", "$1"); } - + public String getShortAccountName() { + return shortAccountName; + } public float getAmount() { - if (!amountSet) throw new IllegalStateException("Account amount is not set"); + if (!amountSet) + throw new IllegalStateException("Account amount is not set"); return amount; } - 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; } + public void setCurrency(String currency) { + this.currency = Misc.emptyIsNull(currency); + } @NonNull public String toString() { - if (!amountSet) return ""; + if (!amountSet) + return ""; StringBuilder sb = new StringBuilder(); if (currency != null) { sb.append(currency); sb.append(' '); } - sb.append(String.format("%,1.2f", amount)); + sb.append(String.format(Locale.US, "%,1.2f", amount)); return sb.toString(); } -} + public TransactionAccount toDBO() { + TransactionAccount dbo = new TransactionAccount(); + dbo.setAccountName(accountName); + if (amountSet) + dbo.setAmount(amount); + dbo.setComment(comment); + dbo.setCurrency(Misc.nullIsEmpty(currency)); + dbo.setId(dbId); + + return dbo; + } +} \ No newline at end of file