mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 03:07:30 -04:00 
			
		
		
		
	Merge pull request #9537 from yannickboy15/nordigen-type-fix
Fix: Update Nordigen to properly handle small money transfer amounts
This commit is contained in:
		
						commit
						f52efa88bb
					
				| @ -148,7 +148,7 @@ class TransactionTransformer implements BankRevenueInterface | ||||
|             'description' => $description, | ||||
|             'participant' => $participant, | ||||
|             'participant_name' => $participant_name, | ||||
|             'base_type' => (int) $transaction["transactionAmount"]["amount"] <= 0 ? 'DEBIT' : 'CREDIT', | ||||
|             'base_type' => $amount < 0 ? 'DEBIT' : 'CREDIT', | ||||
|         ]; | ||||
| 
 | ||||
|     } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user