blob: ebc382c11bb5279d74c8e571401e4b61d2dcb7af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import React from "react";
import "./Display.css";
const getSummary = (items) => {
let totalRawPrice = 0;
let totalQuantity = 0;
for (let i = 0; i < items.length; i++) {
totalRawPrice += items[i].Price;
totalQuantity += items[i].Quantity
}
return (
{
"TotalRawPrice": totalRawPrice,
"TotalQuantity": totalQuantity
}
);
}
const SummaryDisplayTR = (props) => {
const summary = getSummary(props.items);
return (
<tr className={"SummaryDisplayTR"}>
<td>Total</td>
<td className={"disabledBorder"}></td>
<td className={"disabledBorder"}></td>
<td>{summary.TotalQuantity}</td>
<td className={"disabledBorder"}></td>
<td className={"disabledBorder"}></td>
<td>{summary.TotalRawPrice}</td>
</tr>
);
}
export default SummaryDisplayTR;
|