From 9750e0c9b2cadbff653f69ff92b8b3daa214c5ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Wed, 8 Feb 2023 01:37:55 +0300 Subject: [PATCH] fixed import transaction issue --- app/Imports/Banking/Transactions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Imports/Banking/Transactions.php b/app/Imports/Banking/Transactions.php index 5bb9deee9..b710a8e03 100644 --- a/app/Imports/Banking/Transactions.php +++ b/app/Imports/Banking/Transactions.php @@ -17,10 +17,10 @@ class Transactions extends Import { $row = parent::map($row); + $row['currency_code'] = $this->getCurrencyCode($row); $row['account_id'] = $this->getAccountId($row); $row['category_id'] = $this->getCategoryId($row); $row['contact_id'] = $this->getContactId($row); - $row['currency_code'] = $this->getCurrencyCode($row); $row['document_id'] = $this->getDocumentId($row); return $row;