]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java
add functional currency selector when entering new transactions
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / LedgerTransactionAccount.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.model;
19
20 import androidx.annotation.NonNull;
21
22 public class LedgerTransactionAccount {
23     private String accountName;
24     private String shortAccountName;
25     private float amount;
26     private boolean amountSet = false;
27     private String currency;
28     private String comment;
29     public LedgerTransactionAccount(String accountName, float amount, String currency,
30                                     String comment) {
31         this.setAccountName(accountName);
32         this.amount = amount;
33         this.amountSet = true;
34         this.currency = currency;
35         this.comment = comment;
36     }
37     public LedgerTransactionAccount(String accountName) {
38         this.accountName = accountName;
39     }
40     public LedgerTransactionAccount(LedgerTransactionAccount origin) {
41         // copy constructor
42         setAccountName(origin.getAccountName());
43         setComment(origin.getComment());
44         if (origin.isAmountSet())
45             setAmount(origin.getAmount());
46         currency = origin.getCurrency();
47     }
48     public String getComment() {
49         return comment;
50     }
51     public void setComment(String comment) {
52         this.comment = comment;
53     }
54     public String getAccountName() {
55         return accountName;
56     }
57     public void setAccountName(String accountName) {
58         this.accountName = accountName;
59         shortAccountName = accountName.replaceAll("(?<=^|:)(.)[^:]+(?=:)", "$1");
60     }
61     public String getShortAccountName() {
62         return shortAccountName;
63     }
64     public float getAmount() {
65         if (!amountSet)
66             throw new IllegalStateException("Account amount is not set");
67
68         return amount;
69     }
70     public void setAmount(float account_amount) {
71         this.amount = account_amount;
72         this.amountSet = true;
73     }
74     public void resetAmount() {
75         this.amountSet = false;
76     }
77     public boolean isAmountSet() {
78         return amountSet;
79     }
80     public String getCurrency() {
81         return currency;
82     }
83     public void setCurrency(String currency) {
84         this.currency = currency;
85     }
86     @NonNull
87     public String toString() {
88         if (!amountSet)
89             return "";
90
91         StringBuilder sb = new StringBuilder();
92         if (currency != null) {
93             sb.append(currency);
94             sb.append(' ');
95         }
96         sb.append(String.format("%,1.2f", amount));
97
98         return sb.toString();
99     }
100 }