mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 12:04:00 +00:00
Remove some debug.
This commit is contained in:
2
public/v1/js/create_transaction.js
vendored
2
public/v1/js/create_transaction.js
vendored
File diff suppressed because one or more lines are too long
2
public/v1/js/edit_transaction.js
vendored
2
public/v1/js/edit_transaction.js
vendored
File diff suppressed because one or more lines are too long
@@ -116,7 +116,7 @@
|
|||||||
this.triggerTransactionType();
|
this.triggerTransactionType();
|
||||||
},
|
},
|
||||||
accountName() {
|
accountName() {
|
||||||
console.log('AccountSelect watch accountName!');
|
// console.log('AccountSelect watch accountName!');
|
||||||
this.name = this.accountName;
|
this.name = this.accountName;
|
||||||
},
|
},
|
||||||
accountTypeFilters() {
|
accountTypeFilters() {
|
||||||
|
@@ -265,7 +265,7 @@
|
|||||||
};
|
};
|
||||||
let value = arr[searchType] ?? searchType;
|
let value = arr[searchType] ?? searchType;
|
||||||
|
|
||||||
console.log('FULL account type: ' + value);
|
// console.log('FULL account type: ' + value);
|
||||||
return value;
|
return value;
|
||||||
},
|
},
|
||||||
convertData: function () {
|
convertData: function () {
|
||||||
@@ -288,7 +288,7 @@
|
|||||||
// the presence of a source or destination account
|
// the presence of a source or destination account
|
||||||
firstSource = this.transactions[0].source_account.type;
|
firstSource = this.transactions[0].source_account.type;
|
||||||
firstDestination = this.transactions[0].destination_account.type;
|
firstDestination = this.transactions[0].destination_account.type;
|
||||||
console.log('Type of first source is ' + firstSource);
|
// console.log('Type of first source is ' + firstSource);
|
||||||
|
|
||||||
if ('invalid' === transactionType && ['asset', 'Asset account', 'Loan', 'Debt', 'Mortgage'].includes(firstSource)) {
|
if ('invalid' === transactionType && ['asset', 'Asset account', 'Loan', 'Debt', 'Mortgage'].includes(firstSource)) {
|
||||||
transactionType = 'withdrawal';
|
transactionType = 'withdrawal';
|
||||||
@@ -831,8 +831,8 @@
|
|||||||
// force types on destination selector.
|
// force types on destination selector.
|
||||||
this.transactions[index].destination_account.allowed_types = window.allowedOpposingTypes.source[model.type];
|
this.transactions[index].destination_account.allowed_types = window.allowedOpposingTypes.source[model.type];
|
||||||
}
|
}
|
||||||
console.log('Transactions:');
|
//console.log('Transactions:');
|
||||||
console.log(this.transactions);
|
//console.log(this.transactions);
|
||||||
},
|
},
|
||||||
selectedDestinationAccount: function (index, model) {
|
selectedDestinationAccount: function (index, model) {
|
||||||
// console.log('Now in selectedDestinationAccount()');
|
// console.log('Now in selectedDestinationAccount()');
|
||||||
|
@@ -184,6 +184,14 @@
|
|||||||
enabled: true
|
enabled: true
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
this.enabledCurrencies = [
|
||||||
|
{
|
||||||
|
name: this.no_currency,
|
||||||
|
id: 0,
|
||||||
|
enabled: true
|
||||||
|
}
|
||||||
|
];
|
||||||
for (const key in res.data) {
|
for (const key in res.data) {
|
||||||
if (res.data.hasOwnProperty(key) && /^0$|^[1-9]\d*$/.test(key) && key <= 4294967294) {
|
if (res.data.hasOwnProperty(key) && /^0$|^[1-9]\d*$/.test(key) && key <= 4294967294) {
|
||||||
if (res.data[key].enabled) {
|
if (res.data[key].enabled) {
|
||||||
@@ -192,6 +200,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// console.log(this.enabledCurrencies);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user