Browse Source

trucklane dashboard

reset-do-picking-order
Tommy\2Fi-Staff 2 weeks ago
parent
commit
8daf185e60
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      src/components/DashboardPage/truckSchedule/TruckScheduleDashboard.tsx

+ 6
- 6
src/components/DashboardPage/truckSchedule/TruckScheduleDashboard.tsx View File

@@ -499,9 +499,9 @@ const TruckScheduleDashboard: React.FC = () => {
<TableCell sx={{ fontWeight: 600 }}>{t("Truck Schedule")}</TableCell>
<TableCell sx={{ fontWeight: 600 }}>{t("Time Remaining")}</TableCell>
<TableCell sx={{ fontWeight: 600 }} align="center">{t("No. of Shops")}</TableCell>
<TableCell sx={{ fontWeight: 600 }} align="center">{t("Total Items")}</TableCell>
<TableCell sx={{ fontWeight: 600 }} align="center">{t("Tickets Released")}</TableCell>
<TableCell sx={{ fontWeight: 600 }} align="center">{t("Tickets Completed")}</TableCell>
<TableCell sx={{ fontWeight: 600 }} align="center">{t("Total Items")}</TableCell>
<TableCell sx={{ fontWeight: 600 }}>{t("First Ticket Start")}</TableCell>
<TableCell sx={{ fontWeight: 600 }}>{t("Last Ticket End")}</TableCell>
<TableCell sx={{ fontWeight: 600 }} align="center">{t("Pick Time (min)")}</TableCell>
@@ -561,11 +561,6 @@ const TruckScheduleDashboard: React.FC = () => {
{row.numberOfShopsToServe} [{row.numberOfPickTickets}]
</Typography>
</TableCell>
<TableCell align="center">
<Typography variant="body2" sx={{ fontWeight: 500 }}>
{row.totalItemsToPick}
</Typography>
</TableCell>
<TableCell align="center">
<Chip
label={row.numberOfTicketsReleased}
@@ -580,6 +575,11 @@ const TruckScheduleDashboard: React.FC = () => {
color={row.numberOfTicketsCompleted > 0 ? 'success' : 'default'}
/>
</TableCell>
<TableCell align="center">
<Typography variant="body2" sx={{ fontWeight: 500 }}>
{row.totalItemsToPick}
</Typography>
</TableCell>
<TableCell>
{formatDateTime(row.firstTicketStartTime)}
</TableCell>


Loading…
Cancel
Save