From b0268d45630f86546a7e6b97b86ebba17491ed26 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 6 Apr 2015 11:38:31 +0100 Subject: Include inflows in transaction amounts --- src/Command/ConvertCommand.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Command/ConvertCommand.php') diff --git a/src/Command/ConvertCommand.php b/src/Command/ConvertCommand.php index 2d87015..fe9868a 100644 --- a/src/Command/ConvertCommand.php +++ b/src/Command/ConvertCommand.php @@ -129,7 +129,7 @@ function toLedger (Generator $transactions) { $target = new LedgerPosting; $target->account = getAccount(explode(' : ', $txn->payee)[1], $txn); $target->currency = $txn->currency; - $target->amount = $txn->out; + $target->amount = $txn->in - $txn->out; $lTxn->postings[] = $target; $source = new LedgerPosting; @@ -149,7 +149,7 @@ function toLedger (Generator $transactions) { $target = new LedgerPosting; $target->account = array_merge(['Expenses'], $txn->category); $target->currency = $txn->currency; - $target->amount = $txn->out; + $target->amount = $txn->in - $txn->out; sscanf($txn->memo, "(Split %d/%d) %[^\r]", $i, $k, $target->note); $lTxn->postings[] = $target; @@ -167,7 +167,7 @@ function toLedger (Generator $transactions) { $target = new LedgerPosting; $target->account = array_merge(['Expenses'], $txn->category); $target->currency = $txn->currency; - $target->amount = $txn->out; + $target->amount = $txn->in - $txn->out; $lTxn->postings[] = $target; $source = new LedgerPosting; -- cgit 1.4.1