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}