X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FLedgerTransaction.java;h=8e16408ff18c69abc73d693fa18734b642c18194;hp=fd2a8407dfca79910216bc3191ed692d3661f956;hb=c0a2a2d5aa42ad56f76dfe73ba10250e11e7f3fd;hpb=00a1049ca910c976363fd1c2f6304d4512cfcedb diff --git a/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java b/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java index fd2a8407..8e16408f 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java @@ -21,6 +21,8 @@ import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.util.Log; +import net.ktnx.mobileledger.json.ParsedLedgerTransaction; +import net.ktnx.mobileledger.json.ParsedPosting; import net.ktnx.mobileledger.utils.Digest; import net.ktnx.mobileledger.utils.Globals; @@ -55,8 +57,8 @@ public class LedgerTransaction { throws ParseException { this(id, Globals.parseLedgerDate(dateString), description); } - public LedgerTransaction(Integer id, Date date, String description) { - this.profile = Data.profile.get().getUuid(); + public LedgerTransaction(Integer id, Date date, String description, MobileLedgerProfile profile) { + this.profile = profile.getUuid(); this.id = id; this.date = date; this.description = description; @@ -64,6 +66,9 @@ public class LedgerTransaction { this.dataHash = null; dataLoaded = false; } + public LedgerTransaction(Integer id, Date date, String description) { + this(id, date, description, Data.profile.get()); + } public LedgerTransaction(Date date, String description) { this(null, date, description); } @@ -186,4 +191,21 @@ public class LedgerTransaction { public void finishLoading() { dataLoaded = true; } + public ParsedLedgerTransaction toParsedLedgerTransaction() { + ParsedLedgerTransaction result = new ParsedLedgerTransaction(); + result.setTcomment(""); + result.setTprecedingcomment(""); + + ArrayList postings = new ArrayList<>(); + for (LedgerTransactionAccount acc : accounts) { + if (!acc.getAccountName().isEmpty()) postings.add(acc.asParsedPosting()); + } + + result.setTpostings(postings); + result.setTdate(Globals.formatIsoDate(date)); + result.setTdate2(null); + result.setTindex(1); + result.setTdescription(description); + return result; + } }