From dafb3638bbd1184f15ad9b7637178ea6ce510d90 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sun, 18 Apr 2021 14:02:20 +0530 Subject: fixed AddNewItemForm styling --- src/components/Form/AddNewItemForm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/Form/AddNewItemForm.js') diff --git a/src/components/Form/AddNewItemForm.js b/src/components/Form/AddNewItemForm.js index 32784ca..b126022 100644 --- a/src/components/Form/AddNewItemForm.js +++ b/src/components/Form/AddNewItemForm.js @@ -60,7 +60,7 @@ const AddNewItemForm = (props) => { "Model": itemNameValue, "Description": itemDescValue, "Quantity": parseInt(itemQtyValue), - "SinglePrice": parseFloat(itemPriceValue), + "UnitPrice": parseFloat(itemPriceValue), "TotalPrice": parseFloat(itemPriceValue * itemQtyValue), "Discount": parseInt(itemDiscountValue), "HSN": parseInt(itemHSNValue), -- cgit v1.2.3