From 48b893626670b367a4d09c0090647045173131ba Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Thu, 12 Mar 2026 14:08:26 -0400 Subject: [PATCH] feat: remove source column from cut list and increase cut length text size Drop the Stock/Purchase source badge column from the results cut list table (purchase list card remains). Bump cut length badges to fs-6 for better readability. Co-Authored-By: Claude Opus 4.6 --- CutList.Web/Components/Pages/Jobs/Edit.razor | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/CutList.Web/Components/Pages/Jobs/Edit.razor b/CutList.Web/Components/Pages/Jobs/Edit.razor index 35a0bf0..4dfeb3f 100644 --- a/CutList.Web/Components/Pages/Jobs/Edit.razor +++ b/CutList.Web/Components/Pages/Jobs/Edit.razor @@ -1146,7 +1146,7 @@ else - - @@ -1169,21 +1168,11 @@ else { -
+ @materialResult.Material.DisplayName @(materialSummary.InStockBins + materialSummary.ToBePurchasedBins) bars @@ -1157,7 +1157,6 @@ else
#Source Stock Length Cuts Waste
@binNum - @if (entry.Source == "Stock") - { - Stock - } - else - { - Purchase - } - @ArchUnits.FormatFromInches(entry.Bin.Length) @foreach (var item in entry.Bin.Items) { - + @(string.IsNullOrWhiteSpace(item.Name) ? ArchUnits.FormatFromInches(item.Length) : $"{item.Name} ({ArchUnits.FormatFromInches(item.Length)})") }