From 8d382fd6568db6271d486261882f2a2b71b34577 Mon Sep 17 00:00:00 2001 From: JiaSheng Date: Tue, 12 Sep 2023 23:27:13 +0800 Subject: [PATCH] comment --- .../Accounting/ControllersLogic/ImportBankStatementLogic.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Classes/Modules/Accounting/ControllersLogic/ImportBankStatementLogic.php b/app/Classes/Modules/Accounting/ControllersLogic/ImportBankStatementLogic.php index 33d9df75..2565ea82 100644 --- a/app/Classes/Modules/Accounting/ControllersLogic/ImportBankStatementLogic.php +++ b/app/Classes/Modules/Accounting/ControllersLogic/ImportBankStatementLogic.php @@ -123,6 +123,7 @@ class ImportBankStatementLogic extends AbstractControllerLogic $existingTransaction = StatementTransaction::where('transaction_ref', $transactionRef) ->where('posting_date', $postingDate) ->where('amount', $amount) + // ->where('transaction_description', $transactionDescription) //commented this line because same transaction have different transaction description ->where('teller_id', $tellerId) ->where('branch_channel', $branchChannel) ->where('transaction_code', $transactionCode)