|
|
@@ -510,10 +510,10 @@ const PoDetail: React.FC<Props> = ({ po, qc, warehouse, printerCombo }) => { |
|
|
|
<TableCell align="left">{row.itemName}</TableCell> |
|
|
|
<TableCell align="right">{integerFormatter.format(row.qty)}</TableCell> |
|
|
|
<TableCell align="right">{integerFormatter.format(row.processed)}</TableCell> |
|
|
|
<TableCell align="left">{row.uom?.code}</TableCell> |
|
|
|
<TableCell align="left">{row.uom?.udfudesc}</TableCell> |
|
|
|
{/* <TableCell align="right">{decimalFormatter.format(row.stockUom.stockQty)}</TableCell> */} |
|
|
|
<TableCell align="right">{decimalFormatter.format(row.stockInLine.filter((sil) => sil.purchaseOrderLineId === row.id).reduce((acc, cur) => acc + (cur.acceptedQty ?? 0),0) * purchaseToStockRatio)}</TableCell> |
|
|
|
<TableCell align="left">{row.stockUom.stockUomCode}</TableCell> |
|
|
|
<TableCell align="left">{row.stockUom.stockUomDesc}</TableCell> |
|
|
|
{/* <TableCell align="right"> |
|
|
|
{decimalFormatter.format(totalWeight)} {weightUnit} |
|
|
|
</TableCell> */} |
|
|
|