docs: clarify container returns are last-mile only (not first-mile)

Update labels and comments to reflect that container returns are for
last-mile trucks only: either EDR last-mile or customer self-haul. Same
truck that delivered will return with empty containers. Changed labels
from "EDR Returns" → "EDR Last Mile" and "Customer Returns" →
"Customer Self-Haul".

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Hagernesh
2026-07-30 14:17:12 +00:00
parent 319ebb42ec
commit 63aa2c7920
2 changed files with 25 additions and 14 deletions

View File

@@ -76,7 +76,7 @@ export default function ContainerReturnsPage() {
for (const item of unloadedQueue) {
if (!item.bookingId) continue;
// EDR returns
// EDR last-mile returns: same EDR truck that delivered will return with empty containers
const edrTrucks = await warehouseService.getLastMileTrucks(item.bookingId).catch(() => []);
if (edrTrucks.length > 0) {
const inventory = await api.warehouses.listInventory
@@ -112,7 +112,7 @@ export default function ContainerReturnsPage() {
}
}
// Customer returns
// Customer self-haul last-mile returns: same customer truck that delivered will return with empty containers
const customerTrucks = await warehouseService.getCustomerTrucks(item.bookingId).catch(() => []);
if (customerTrucks.length > 0) {
const inventory = await api.warehouses.listInventory
@@ -229,7 +229,7 @@ export default function ContainerReturnsPage() {
<PageContainer>
<PageHeader
title="Container Returns"
subtitle="Track empty container returns by EDR or customer"
subtitle="Empty containers returned by last-mile trucks (EDR or customer self-haul)"
/>
<Group mb="lg">
@@ -238,8 +238,8 @@ export default function ContainerReturnsPage() {
onChange={(val) => setFilterType(val as ReturnType)}
data={[
{ label: "All", value: "all" },
{ label: "EDR Returns", value: "edr" },
{ label: "Customer Returns", value: "customer" },
{ label: "EDR Last Mile", value: "edr" },
{ label: "Customer Self-Haul", value: "customer" },
]}
/>
</Group>
@@ -282,7 +282,7 @@ export default function ContainerReturnsPage() {
<Table.Td>{group.companyName ?? "—"}</Table.Td>
<Table.Td>
<Badge color={group.returnType === "EDR" ? "edr-green" : "blue"}>
{group.returnType}
{group.returnType === "EDR" ? "EDR Last Mile" : "Customer Self-Haul"}
</Badge>
</Table.Td>
<Table.Td>
@@ -416,7 +416,7 @@ function ContainerReturnModal({ opened, onClose, group, onSubmit, loading }: Con
<Group>
<Text fw={600}>{group.bookingRef}</Text>
<Badge color={group.returnType === "EDR" ? "edr-green" : "blue"}>
{group.returnType}
{group.returnType === "EDR" ? "EDR Last Mile" : "Customer Self-Haul"}
</Badge>
</Group>