This commit is contained in:
James Cole
2020-08-20 17:57:19 +02:00
parent 229d4bfe6b
commit d78d2f25eb
12 changed files with 151 additions and 196 deletions

View File

@@ -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;