refs #1408 Fixed bill total discount feature..

This commit is contained in:
Cihan Şentürk
2020-04-20 04:06:20 +03:00
parent e3240fa43b
commit e244d15480
7 changed files with 44 additions and 5 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)
});
});