From 9572b7159235c18617ff46058c94dfd9cfab8abc Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 17 Nov 2025 17:07:41 -0600 Subject: [PATCH] feat(quality): added location moved to to the table --- .../quality/-components/QualityRequest.tsx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/frontend/src/routes/_old/old/quality/-components/QualityRequest.tsx b/frontend/src/routes/_old/old/quality/-components/QualityRequest.tsx index fce8f34..e506cde 100644 --- a/frontend/src/routes/_old/old/quality/-components/QualityRequest.tsx +++ b/frontend/src/routes/_old/old/quality/-components/QualityRequest.tsx @@ -30,6 +30,7 @@ type Pallets = { durationToMove: null; qualityDurationToInspect: number; returnDurationToInspect: number; + locationMovesTo: string; locationDropOff: string; palletStatus: number; palletStatusText: string; @@ -165,6 +166,26 @@ export default function QualityRequest() { ); }, }), + columnHelper.accessor("locationMovesTo", { + header: ({ column }) => { + return ( + + ); + }, + cell: ({ getValue }) => { + return {getValue() === "" ? "Pending Move" : getValue()}; + }, + }), columnHelper.accessor("locationDropOff", { header: ({ column }) => { return (