mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-29 17:34:02 +00:00
fix purchase order input bug
This commit is contained in:
@@ -221,8 +221,8 @@
|
||||
stockCode: this.product.stockCode,
|
||||
description: this.product.description,
|
||||
quantity: this.product.quantity,
|
||||
unit_price: this.product.unit_price,
|
||||
total: this.productTotal
|
||||
unit_price: parseFloat((this.product.unit_price).toString().replace(',', '')),
|
||||
total: this.product.quantity * parseFloat((this.product.unit_price).toString().replace(',', ''))
|
||||
});
|
||||
|
||||
this.product = {
|
||||
|
||||
Reference in New Issue
Block a user