From 1c5dc6ab6d968fd50fc10bafa09b151d74527808 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 30 Dec 2016 11:58:23 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20round=20amount=20when=20exporti?= =?UTF-8?q?ng=20#506?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Export/Entry/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Export/Entry/Entry.php b/app/Export/Entry/Entry.php index c29467a178..53ace9643b 100644 --- a/app/Export/Entry/Entry.php +++ b/app/Export/Entry/Entry.php @@ -75,7 +75,7 @@ final class Entry $entry = new self; $entry->journal_id = $object->transaction_journal_id; $entry->description = self::decrypt($object->journal_encrypted, $object->journal_description); - $entry->amount = round($object->amount, 2); // always positive + $entry->amount = $object->amount; $entry->date = $object->date; $entry->transaction_type = $object->transaction_type; $entry->currency_code = $object->transaction_currency_code;