| @@ -131,43 +131,43 @@ const GoodsReceiptStatus: React.FC = () => { | |||||
| </Box> | </Box> | ||||
| ) : ( | ) : ( | ||||
| <TableContainer component={Paper}> | <TableContainer component={Paper}> | ||||
| <Table size="small" sx={{ minWidth: 1200 }}> | |||||
| <Table size="small" sx={{ minWidth: 900 }}> | |||||
| <TableHead> | <TableHead> | ||||
| <TableRow sx={{ backgroundColor: 'grey.100' }}> | <TableRow sx={{ backgroundColor: 'grey.100' }}> | ||||
| <TableCell sx={{ fontWeight: 600 }}>{t("Supplier")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600 }} align="center">{t("Expected No. of Delivery")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600 }} align="center">{t("No. of Orders Received at Dock")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600 }} align="center">{t("No. of Items Inspected")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600 }} align="center">{t("No. of Items with IQC Issue")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600 }} align="center">{t("No. of Items Completed Put Away at Store")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600, width: '200px', padding: '8px 12px' }}>{t("Supplier")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600, width: '120px', padding: '8px 12px' }} align="center">{t("Expected No. of Delivery")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600, width: '150px', padding: '8px 12px' }} align="center">{t("No. of Orders Received at Dock")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600, width: '120px', padding: '8px 12px' }} align="center">{t("No. of Items Inspected")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600, width: '150px', padding: '8px 12px' }} align="center">{t("No. of Items with IQC Issue")}</TableCell> | |||||
| <TableCell sx={{ fontWeight: 600, width: '180px', padding: '8px 12px' }} align="center">{t("No. of Items Completed Put Away at Store")}</TableCell> | |||||
| </TableRow> | </TableRow> | ||||
| <TableRow sx={{ backgroundColor: 'grey.50' }}> | <TableRow sx={{ backgroundColor: 'grey.50' }}> | ||||
| <TableCell> | |||||
| <TableCell sx={{ padding: '6px 12px' }}> | |||||
| <Typography variant="caption" color="text.secondary"> | <Typography variant="caption" color="text.secondary"> | ||||
| {t("Show Supplier Name")} | {t("Show Supplier Name")} | ||||
| </Typography> | </Typography> | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '6px 12px' }} align="center"> | |||||
| <Typography variant="caption" color="text.secondary"> | <Typography variant="caption" color="text.secondary"> | ||||
| {t("Based on Expected Delivery Date")} | {t("Based on Expected Delivery Date")} | ||||
| </Typography> | </Typography> | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '6px 12px' }} align="center"> | |||||
| <Typography variant="caption" color="text.secondary"> | <Typography variant="caption" color="text.secondary"> | ||||
| {t("Upon entry of DN and Lot No. for all items of the order")} | {t("Upon entry of DN and Lot No. for all items of the order")} | ||||
| </Typography> | </Typography> | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '6px 12px' }} align="center"> | |||||
| <Typography variant="caption" color="text.secondary"> | <Typography variant="caption" color="text.secondary"> | ||||
| {t("Upon any IQC decision received")} | {t("Upon any IQC decision received")} | ||||
| </Typography> | </Typography> | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '6px 12px' }} align="center"> | |||||
| <Typography variant="caption" color="text.secondary"> | <Typography variant="caption" color="text.secondary"> | ||||
| {t("Count any item with IQC defect in any IQC criteria")} | {t("Count any item with IQC defect in any IQC criteria")} | ||||
| </Typography> | </Typography> | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '6px 12px' }} align="center"> | |||||
| <Typography variant="caption" color="text.secondary"> | <Typography variant="caption" color="text.secondary"> | ||||
| {t("Upon completion of put away for an material in order. Count no. of items being put away")} | {t("Upon completion of put away for an material in order. Count no. of items being put away")} | ||||
| </Typography> | </Typography> | ||||
| @@ -191,22 +191,22 @@ const GoodsReceiptStatus: React.FC = () => { | |||||
| '&:hover': { backgroundColor: 'grey.50' } | '&:hover': { backgroundColor: 'grey.50' } | ||||
| }} | }} | ||||
| > | > | ||||
| <TableCell> | |||||
| <TableCell sx={{ padding: '8px 12px' }}> | |||||
| {row.supplierName || '-'} | {row.supplierName || '-'} | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '8px 12px' }} align="center"> | |||||
| {row.expectedNoOfDelivery ?? 0} | {row.expectedNoOfDelivery ?? 0} | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '8px 12px' }} align="center"> | |||||
| {row.noOfOrdersReceivedAtDock ?? 0} | {row.noOfOrdersReceivedAtDock ?? 0} | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '8px 12px' }} align="center"> | |||||
| {row.noOfItemsInspected ?? 0} | {row.noOfItemsInspected ?? 0} | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '8px 12px' }} align="center"> | |||||
| {row.noOfItemsWithIqcIssue ?? 0} | {row.noOfItemsWithIqcIssue ?? 0} | ||||
| </TableCell> | </TableCell> | ||||
| <TableCell align="center"> | |||||
| <TableCell sx={{ padding: '8px 12px' }} align="center"> | |||||
| {row.noOfItemsCompletedPutAwayAtStore ?? 0} | {row.noOfItemsCompletedPutAwayAtStore ?? 0} | ||||
| </TableCell> | </TableCell> | ||||
| </TableRow> | </TableRow> | ||||