diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-18 13:37:12 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-18 13:37:12 +0530 |
commit | b7c32d7ea171ce460d07af316220758ebde9893c (patch) | |
tree | f976df8b4bd28afcd62a4da6832bbd5235e26bde /src/components/Display/SummaryDisplay.js | |
parent | bb331d9c61a0e38cbbfc891204819557327e1ca0 (diff) |
Bug Fix: now the total price of an item is the multiple of it's unit price and quantity like it should be
Diffstat (limited to 'src/components/Display/SummaryDisplay.js')
-rw-r--r-- | src/components/Display/SummaryDisplay.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Display/SummaryDisplay.js b/src/components/Display/SummaryDisplay.js index 1110358..27ebe0b 100644 --- a/src/components/Display/SummaryDisplay.js +++ b/src/components/Display/SummaryDisplay.js @@ -6,7 +6,7 @@ const getSummary = (items) => { let totalQuantity = 0; for (let i = 0; i < items.length; i++) { - totalRawPrice += items[i].Price; + totalRawPrice += items[i].TotalPrice; totalQuantity += items[i].Quantity } |