]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java
whitespace
[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 import net.ktnx.mobileledger.json.ParsedAmount;
23 import net.ktnx.mobileledger.json.ParsedPosting;
24 import net.ktnx.mobileledger.json.ParsedQuantity;
25 import net.ktnx.mobileledger.json.ParsedStyle;
26
27 import java.util.ArrayList;
28
29 public class LedgerTransactionAccount {
30     private String accountName;
31     private String shortAccountName;
32     private float amount;
33     private boolean amountSet;
34     private String currency;
35
36     public LedgerTransactionAccount(String accountName, float amount) {
37         this(accountName, amount, null);
38     }
39     public LedgerTransactionAccount(String accountName, float amount, String currency) {
40         this.setAccountName(accountName);
41         this.amount = amount;
42         this.amountSet = true;
43         this.currency = currency;
44     }
45
46     public LedgerTransactionAccount(String accountName) {
47         this.accountName = accountName;
48     }
49
50     public String getAccountName() {
51         return accountName;
52     }
53     public void setAccountName(String accountName) {
54         this.accountName = accountName;
55         shortAccountName = accountName.replaceAll("(?<=^|:)(.)[^:]+(?=:)", "$1");
56     }
57     public String getShortAccountName() {
58         return shortAccountName;
59     }
60     public float getAmount() {
61         if (!amountSet)
62             throw new IllegalStateException("Account amount is not set");
63
64         return amount;
65     }
66
67     public void setAmount(float account_amount) {
68         this.amount = account_amount;
69         this.amountSet = true;
70     }
71
72     public void resetAmount() {
73         this.amountSet = false;
74     }
75
76     public boolean isAmountSet() {
77         return amountSet;
78     }
79     public String getCurrency() {
80         return currency;
81     }
82     @NonNull
83     public String toString() {
84         if (!amountSet)
85             return "";
86
87         StringBuilder sb = new StringBuilder();
88         if (currency != null) {
89             sb.append(currency);
90             sb.append(' ');
91         }
92         sb.append(String.format("%,1.2f", amount));
93
94         return sb.toString();
95     }
96     public ParsedPosting asParsedPosting() {
97         ParsedPosting result = new ParsedPosting();
98         result.setPaccount(accountName);
99         ArrayList<ParsedAmount> amounts = new ArrayList<>();
100         ParsedAmount amt = new ParsedAmount();
101         amt.setAcommodity((currency == null) ? "" : currency);
102         amt.setAismultiplier(false);
103         ParsedQuantity qty = new ParsedQuantity();
104         qty.setDecimalPlaces(2);
105         qty.setDecimalMantissa(Math.round(amount * 100));
106         amt.setAquantity(qty);
107         ParsedStyle style = new ParsedStyle();
108         style.setAscommodityside('L');
109         style.setAscommodityspaced(false);
110         style.setAsprecision(2);
111         style.setAsdecimalpoint('.');
112         amt.setAstyle(style);
113         amounts.add(amt);
114         result.setPamount(amounts);
115         return result;
116     }
117 }