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.
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.
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/>.
18 package net.ktnx.mobileledger.model;
20 import net.ktnx.mobileledger.json.ParsedAmount;
21 import net.ktnx.mobileledger.json.ParsedPosting;
22 import net.ktnx.mobileledger.json.ParsedQuantity;
23 import net.ktnx.mobileledger.json.ParsedStyle;
25 import java.util.ArrayList;
27 import androidx.annotation.NonNull;
29 public class LedgerTransactionAccount {
30 private String accountName;
31 private String shortAccountName;
33 private boolean amountSet;
34 private String currency;
36 public LedgerTransactionAccount(String accountName, float amount) {
37 this(accountName, amount, null);
39 public LedgerTransactionAccount(String accountName, float amount, String currency) {
40 this.setAccountName(accountName);
42 this.amountSet = true;
43 this.currency = currency;
46 public LedgerTransactionAccount(String accountName) {
47 this.accountName = accountName;
50 public String getAccountName() {
53 public String getShortAccountName() {
54 return shortAccountName;
56 public void setAccountName(String accountName) {
57 this.accountName = accountName;
58 shortAccountName = accountName.replaceAll("(?<=^|:)(.)[^:]+(?=:)", "$1");
61 public float getAmount() {
62 if (!amountSet) throw new IllegalStateException("Account amount is not set");
67 public void setAmount(float account_amount) {
68 this.amount = account_amount;
69 this.amountSet = true;
72 public void resetAmount() {
73 this.amountSet = false;
76 public boolean isAmountSet() {
79 public String getCurrency() {
83 public String toString() {
84 if (!amountSet) return "";
86 StringBuilder sb = new StringBuilder();
87 if (currency != null) {
91 sb.append(String.format("%,1.2f", amount));
95 public ParsedPosting asParsedPosting() {
96 ParsedPosting result = new ParsedPosting();
97 result.setPaccount(accountName);
98 ArrayList<ParsedAmount> amounts = new ArrayList<>();
99 ParsedAmount amt = new ParsedAmount();
100 amt.setAcommodity((currency == null) ? "" : currency);
101 amt.setAismultiplier(false);
102 ParsedQuantity qty = new ParsedQuantity();
103 qty.setDecimalPlaces(2);
104 qty.setDecimalMantissa(Math.round(amount * 100));
105 amt.setAquantity(qty);
106 ParsedStyle style = new ParsedStyle();
107 style.setAscommodityside('L');
108 style.setAscommodityspaced(false);
109 style.setAsprecision(2);
110 style.setAsdecimalpoint('.');
111 amt.setAstyle(style);
113 result.setPamount(amounts);