diff --git a/frontend/src/components/accounts/Index.vue b/frontend/src/components/accounts/Index.vue index c8bc2c0b17..fe939d15f9 100644 --- a/frontend/src/components/accounts/Index.vue +++ b/frontend/src/components/accounts/Index.vue @@ -309,7 +309,7 @@ export default { this.accounts[i].order = newOrder; let url = './api/v1/accounts/' + current.id; axios.put(url, {order: newOrder}).then(response => { - // TODO should update local account list, not refresh the whole thing. +// See reference nr. 8 this.getAccountList(); }); } @@ -485,7 +485,7 @@ export default { // // allAccounts.push(acct); // if ('asset' === this.type) { - // // TODO +// See reference nr. 9 // //this.getAccountBalanceDifference(this.allAccounts.length - 1, current); // //this.getAccountLastActivity(this.allAccounts.length - 1, current); // } diff --git a/frontend/src/components/dashboard/Calendar.vue b/frontend/src/components/dashboard/Calendar.vue index d88342e4ef..b1d2c92ada 100644 --- a/frontend/src/components/dashboard/Calendar.vue +++ b/frontend/src/components/dashboard/Calendar.vue @@ -324,7 +324,7 @@ export default { let today = new Date(this.range.start); let start; let end; - let title = 'todo'; + let title = 'tbd'; let half = 1; // its currently first half of year: diff --git a/frontend/src/components/dashboard/MainCreditList.vue b/frontend/src/components/dashboard/MainCreditList.vue index 3edfe805ad..61be807717 100644 --- a/frontend/src/components/dashboard/MainCreditList.vue +++ b/frontend/src/components/dashboard/MainCreditList.vue @@ -79,7 +79,7 @@ import format from "date-fns/format"; const {mapState, mapGetters, mapActions, mapMutations} = createNamespacedHelpers('dashboard/index') -// TODO same as credit list but reversed +// See reference nr. 2 export default { name: "MainCreditList", diff --git a/frontend/src/components/store/modules/transactions/create.js b/frontend/src/components/store/modules/transactions/create.js index 899c93b893..564c614fbe 100644 --- a/frontend/src/components/store/modules/transactions/create.js +++ b/frontend/src/components/store/modules/transactions/create.js @@ -56,7 +56,7 @@ const getters = { return state.transactionType; }, accountToTransaction: state => { - // TODO better architecture here, does not need the store. +// See reference nr. 1 // possible API point!! return state.accountToTransaction; }, diff --git a/frontend/src/components/transactions/Create.vue b/frontend/src/components/transactions/Create.vue index ccf954acbd..62633af550 100644 --- a/frontend/src/components/transactions/Create.vue +++ b/frontend/src/components/transactions/Create.vue @@ -23,7 +23,7 @@
- +
{ - // TODO error handling. +// See reference nr. 4 })); } } diff --git a/frontend/src/components/transactions/Edit.vue b/frontend/src/components/transactions/Edit.vue index 1048aa1963..5bd8f5b53a 100644 --- a/frontend/src/components/transactions/Edit.vue +++ b/frontend/src/components/transactions/Edit.vue @@ -298,7 +298,7 @@ export default { if (0 === index) { this.transactionType = array.type.charAt(0).toUpperCase() + array.type.slice(1); - // TODO here you may need to catch stuff like loan/debt/mortgage +// See reference nr. 5 this.sourceAllowedTypes = [array.source_type]; this.destinationAllowedTypes = [array.destination_type]; this.date = array.date.substring(0, 16); @@ -938,7 +938,7 @@ export default { return JSON.stringify(compare); }, // uploadAttachments: function (result) { - // //console.log('TODO, upload attachments.'); +// See reference nr. 6 // if (0 === Object.keys(result).length) { // // for (let i in this.transactions) { @@ -1172,7 +1172,7 @@ export default { for (let i in this.transactions) { if (this.transactions.hasOwnProperty(i) && /^0$|^[1-9]\d*$/.test(i) && i <= 4294967294) { if (this.transactions.hasOwnProperty(i)) { - // TODO +// See reference nr. 7 } } } diff --git a/frontend/src/components/transactions/TransactionLinks.vue b/frontend/src/components/transactions/TransactionLinks.vue index 9ad37419f2..1c81805095 100644 --- a/frontend/src/components/transactions/TransactionLinks.vue +++ b/frontend/src/components/transactions/TransactionLinks.vue @@ -185,7 +185,7 @@