]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/json/v1_14/ParsedPosting.java
common class for version-independent functionality of ParsedPosting
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / v1_14 / ParsedPosting.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.json.v1_14;
19
20 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
21
22 import net.ktnx.mobileledger.model.LedgerTransactionAccount;
23
24 import java.util.ArrayList;
25 import java.util.List;
26
27 @JsonIgnoreProperties(ignoreUnknown = true)
28 public class ParsedPosting extends net.ktnx.mobileledger.json.ParsedPosting {
29     private Void pbalanceassertion;
30     private String pstatus = "Unmarked";
31     private String paccount;
32     private List<ParsedAmount> pamount;
33     private String pdate = null;
34     private String pdate2 = null;
35     private String ptype = "RegularPosting";
36     private String pcomment = "";
37     private List<List<String>> ptags = new ArrayList<>();
38     private String poriginal = null;
39     private int ptransaction_;
40     public ParsedPosting() {
41     }
42     public static ParsedPosting fromLedgerAccount(LedgerTransactionAccount acc) {
43         ParsedPosting result = new ParsedPosting();
44         result.setPaccount(acc.getAccountName());
45
46         String comment = acc.getComment();
47         if (comment == null)
48             comment = "";
49         result.setPcomment(comment);
50
51         ArrayList<ParsedAmount> amounts = new ArrayList<>();
52         ParsedAmount amt = new ParsedAmount();
53         amt.setAcommodity((acc.getCurrency() == null) ? "" : acc.getCurrency());
54         amt.setAismultiplier(false);
55         ParsedQuantity qty = new ParsedQuantity();
56         qty.setDecimalPlaces(2);
57         qty.setDecimalMantissa(Math.round(acc.getAmount() * 100));
58         amt.setAquantity(qty);
59         ParsedStyle style = new ParsedStyle();
60         style.setAscommodityside('L');
61         style.setAscommodityspaced(false);
62         style.setAsprecision(2);
63         style.setAsdecimalpoint('.');
64         amt.setAstyle(style);
65         amounts.add(amt);
66         result.setPamount(amounts);
67         return result;
68     }
69     public String getPdate2() {
70         return pdate2;
71     }
72     public void setPdate2(String pdate2) {
73         this.pdate2 = pdate2;
74     }
75     public int getPtransaction_() {
76         return ptransaction_;
77     }
78     public void setPtransaction_(int ptransaction_) {
79         this.ptransaction_ = ptransaction_;
80     }
81     public String getPdate() {
82         return pdate;
83     }
84     public void setPdate(String pdate) {
85         this.pdate = pdate;
86     }
87     public String getPtype() {
88         return ptype;
89     }
90     public void setPtype(String ptype) {
91         this.ptype = ptype;
92     }
93     public String getPcomment() {
94         return pcomment;
95     }
96     public void setPcomment(String pcomment) {
97         this.pcomment = (pcomment == null) ? null : pcomment.trim();
98     }
99     public List<List<String>> getPtags() {
100         return ptags;
101     }
102     public void setPtags(List<List<String>> ptags) {
103         this.ptags = ptags;
104     }
105     public String getPoriginal() {
106         return poriginal;
107     }
108     public void setPoriginal(String poriginal) {
109         this.poriginal = poriginal;
110     }
111     public String getPstatus() {
112         return pstatus;
113     }
114     public void setPstatus(String pstatus) {
115         this.pstatus = pstatus;
116     }
117     public Void getPbalanceassertion() {
118         return pbalanceassertion;
119     }
120     public void setPbalanceassertion(Void pbalanceassertion) {
121         this.pbalanceassertion = pbalanceassertion;
122     }
123     public String getPaccount() {
124         return paccount;
125     }
126     public void setPaccount(String paccount) {
127         this.paccount = paccount;
128     }
129     public List<ParsedAmount> getPamount() {
130         return pamount;
131     }
132     public void setPamount(List<ParsedAmount> pamount) {
133         this.pamount = pamount;
134     }
135     public LedgerTransactionAccount asLedgerAccount() {
136         ParsedAmount amt = pamount.get(0);
137         return new LedgerTransactionAccount(paccount, amt.getAquantity()
138                                                          .asFloat(), amt.getAcommodity(),
139                 getPcomment());
140     }
141
142 }