close #1551 Fixed: Reconciliation form checkbox missing values

This commit is contained in:
Cüneyt Şentürk
2020-08-10 14:15:15 +03:00
parent 115b55f688
commit 48a37246c5
5 changed files with 33 additions and 3 deletions

View File

@ -43,6 +43,10 @@ const app = new Vue({
if (document.getElementById('closing_balance') != null) {
this.totals.closing_balance = parseFloat(document.getElementById('closing_balance').value);
}
if (this.form._method == 'PATCH') {
this.onCalculate();
}
},
methods:{