refs #1408 Fixed invoice total discount feature..

This commit is contained in:
Cüneyt Şentürk
2020-04-20 03:42:13 +03:00
parent 024c70da84
commit e3240fa43b
7 changed files with 44 additions and 4 deletions

View File

@ -83,7 +83,7 @@ const app = new Vue({
price: (item.price).toFixed(2),
quantity: item.quantity,
tax_id: item.tax_id,
discount: (typeof item_backup.discount !== 'undefined') ? item.discount_rate : 0,
discount: item.discount_rate,
total: (item.total).toFixed(2)
});
});