|
|
@@ -167,7 +167,7 @@ const SearchResultsTable: React.FC<SearchResultsTableProps> = ({ |
|
|
|
color={item.currentStockBalance && item.currentStockBalance > 0 ? "success.main" : "error.main"} |
|
|
|
sx={{ fontWeight: item.currentStockBalance && item.currentStockBalance > 0 ? 'bold' : 'normal' }} |
|
|
|
> |
|
|
|
{item.currentStockBalance || 0} |
|
|
|
{item.currentStockBalance?.toLocaleString()||0} |
|
|
|
</Typography> |
|
|
|
</TableCell> |
|
|
|
|
|
|
@@ -177,6 +177,7 @@ const SearchResultsTable: React.FC<SearchResultsTableProps> = ({ |
|
|
|
{item.uomDesc || "-"} |
|
|
|
</Typography> |
|
|
|
</TableCell> |
|
|
|
<TableCell align="right"> |
|
|
|
|
|
|
|
{/* Order Quantity */} |
|
|
|
|
|
|
@@ -208,7 +209,7 @@ const SearchResultsTable: React.FC<SearchResultsTableProps> = ({ |
|
|
|
}} |
|
|
|
disabled={isItemInCreated(item.id)} |
|
|
|
/> |
|
|
|
|
|
|
|
</TableCell> |
|
|
|
{/* Target Date */} |
|
|
|
<TableCell align="right"> |
|
|
|
<Typography variant="body2"> |
|
|
|