From 8b341e9a4202de8e221795913e8e4eb89e85e658 Mon Sep 17 00:00:00 2001 From: Edward Brunton <42774600+EdwardBrunton@users.noreply.github.com> Date: Wed, 24 Apr 2024 08:25:05 +0200 Subject: [PATCH] feat(handover): Add description of work to handover (#969) --- libs/handovershared/src/lib/types/handoverPackage.ts | 1 + libs/handoversidesheet/src/lib/ui-sidesheet/DetailsTabs.tsx | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/handovershared/src/lib/types/handoverPackage.ts b/libs/handovershared/src/lib/types/handoverPackage.ts index 1d0e261cd..2037711d0 100644 --- a/libs/handovershared/src/lib/types/handoverPackage.ts +++ b/libs/handovershared/src/lib/types/handoverPackage.ts @@ -69,4 +69,5 @@ export type HandoverPackage = { status: BaseStatus; //Comm. pkg status in procosys worstChecklistStatus: string; hasNonCountingScope: boolean | null; + descriptionOfWork: string | null; }; diff --git a/libs/handoversidesheet/src/lib/ui-sidesheet/DetailsTabs.tsx b/libs/handoversidesheet/src/lib/ui-sidesheet/DetailsTabs.tsx index 7b604eb68..1b37fc6c2 100644 --- a/libs/handoversidesheet/src/lib/ui-sidesheet/DetailsTabs.tsx +++ b/libs/handoversidesheet/src/lib/ui-sidesheet/DetailsTabs.tsx @@ -68,9 +68,13 @@ export const DetailsTab = ({ commpkg }: DetailsTabProps) => { {stringCell(`${commpkg.progress || 0}%`)} - Mc Packages Missing PunchOut + Mc Packages Missing PunchOut {stringCell(`${commpkg.remainingPunchOutCount || 0}`)} + + Description of Work + {stringCell(`${commpkg.descriptionOfWork || 0}`)} +