B2
Build and Push Docker Image / build (push) Successful in 44s

This commit is contained in:
jason
2026-04-22 09:39:00 -05:00
parent e0dfac2d48
commit a165428f14
5 changed files with 124 additions and 3 deletions
@@ -80,9 +80,12 @@ export async function GET(_req: NextRequest, ctx: { params: Promise<{ id: string
operations: part.operations.map((op) => ({
sequence: op.sequence,
name: op.name,
kind: op.kind,
machineName: op.machine?.name ?? null,
qcRequired: op.qcRequired,
qrToken: op.qrToken,
unitsCompleted: op.unitsCompleted,
status: op.status,
})),
};
@@ -94,6 +97,7 @@ export async function GET(_req: NextRequest, ctx: { params: Promise<{ id: string
id: op.id,
sequence: op.sequence,
name: op.name,
kind: op.kind,
qrToken: op.qrToken,
machineName: op.machine?.name ?? null,
machineKind: op.machine?.kind ?? null,
@@ -103,6 +107,8 @@ export async function GET(_req: NextRequest, ctx: { params: Promise<{ id: string
qcRequired: op.qcRequired,
plannedMinutes: op.plannedMinutes,
plannedUnits: op.plannedUnits,
unitsCompleted: op.unitsCompleted,
status: op.status,
},
}));