From 8987046f00f90fdcf4c8c1b94050baafe2d1cf05 Mon Sep 17 00:00:00 2001 From: "B.E.N.S.O.N" Date: Fri, 6 Feb 2026 22:21:13 +0800 Subject: [PATCH] Dashboard: Goods Receipt Status Update --- .../goodsReceiptStatus/GoodsReceiptStatus.tsx | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/components/DashboardPage/goodsReceiptStatus/GoodsReceiptStatus.tsx b/src/components/DashboardPage/goodsReceiptStatus/GoodsReceiptStatus.tsx index c788078..ec56833 100644 --- a/src/components/DashboardPage/goodsReceiptStatus/GoodsReceiptStatus.tsx +++ b/src/components/DashboardPage/goodsReceiptStatus/GoodsReceiptStatus.tsx @@ -131,43 +131,43 @@ const GoodsReceiptStatus: React.FC = () => { ) : ( - +
- {t("Supplier")} - {t("Expected No. of Delivery")} - {t("No. of Orders Received at Dock")} - {t("No. of Items Inspected")} - {t("No. of Items with IQC Issue")} - {t("No. of Items Completed Put Away at Store")} + {t("Supplier")} + {t("Expected No. of Delivery")} + {t("No. of Orders Received at Dock")} + {t("No. of Items Inspected")} + {t("No. of Items with IQC Issue")} + {t("No. of Items Completed Put Away at Store")} - + {t("Show Supplier Name")} - + {t("Based on Expected Delivery Date")} - + {t("Upon entry of DN and Lot No. for all items of the order")} - + {t("Upon any IQC decision received")} - + {t("Count any item with IQC defect in any IQC criteria")} - + {t("Upon completion of put away for an material in order. Count no. of items being put away")} @@ -191,22 +191,22 @@ const GoodsReceiptStatus: React.FC = () => { '&:hover': { backgroundColor: 'grey.50' } }} > - + {row.supplierName || '-'} - + {row.expectedNoOfDelivery ?? 0} - + {row.noOfOrdersReceivedAtDock ?? 0} - + {row.noOfItemsInspected ?? 0} - + {row.noOfItemsWithIqcIssue ?? 0} - + {row.noOfItemsCompletedPutAwayAtStore ?? 0}