mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
Fix #3710
This commit is contained in:
@@ -541,11 +541,11 @@ export default {
|
||||
// depends on the transaction type, where we get the currency.
|
||||
if('withdrawal' === transactionType || 'transfer' === transactionType) {
|
||||
row.currency_id = row.source_account.currency_id;
|
||||
console.log('Overruled currency ID to ' + row.currency_id);
|
||||
// console.log('Overruled currency ID to ' + row.currency_id);
|
||||
}
|
||||
if('deposit' === transactionType) {
|
||||
row.currency_id = row.destination_account.currency_id;
|
||||
console.log('Overruled currency ID to ' + row.currency_id);
|
||||
// console.log('Overruled currency ID to ' + row.currency_id);
|
||||
}
|
||||
|
||||
date = row.date;
|
||||
|
Reference in New Issue
Block a user