Container truck assignment on customer portal for import

This commit is contained in:
Hagernesh
2026-07-08 04:36:03 +00:00
parent 25c9bdeecd
commit 3f6b9ac974
21 changed files with 133 additions and 79 deletions

View File

@@ -31,7 +31,7 @@ const STAGE_COLOR: Record<string, string> = {
LOADED: 'green',
};
const weight = (w: number | null) => (w == null ? '—' : `${Number(w).toLocaleString()} kg`);
const weight = (w: number | null) => (w == null ? '—' : `${Number(w).toLocaleString()} t`);
interface BookingGroup {
bookingId: string | null;