checkbox group is adjusted

This commit is contained in:
Sevan Nerse
2021-01-07 12:32:11 +03:00
parent 3e4efa36ce
commit a87f4610ce
2 changed files with 15 additions and 4 deletions

View File

@ -299,6 +299,8 @@ const app = new Vue({
add_discount: false,
discount: 0,
total: total,
// @todo
// invoice_item_checkbox_sample: [],
});
this.onCalculateTotal();
@ -566,7 +568,9 @@ const app = new Vue({
tax_ids: item_taxes,
add_discount: (item.discount_rate) ? true : false,
discount: item.discount_rate,
total: (item.total).toFixed(2)
total: (item.total).toFixed(2),
// @todo
// invoice_item_checkbox_sample: [],
});
}, this);