Merge pull request #1811 from SevanNerse/master

onCalculateTotal should be called with timeout
This commit is contained in:
Cüneyt Şentürk
2021-01-28 15:38:33 +03:00
committed by GitHub

View File

@ -309,7 +309,9 @@ const app = new Vue({
// invoice_item_checkbox_sample: [],
});
this.onCalculateTotal();
setTimeout(function() {
this.onCalculateTotal();
}.bind(this), 800);
},
onSelectedTax(item_index) {