From 8b3f8fc6e96d750758d2a4283e04e92f7f7d56fc Mon Sep 17 00:00:00 2001 From: "B.E.N.S.O.N" Date: Mon, 9 Feb 2026 19:33:46 +0800 Subject: [PATCH] Report Update --- src/app/(main)/report/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/(main)/report/page.tsx b/src/app/(main)/report/page.tsx index 6e6450e..100c194 100644 --- a/src/app/(main)/report/page.tsx +++ b/src/app/(main)/report/page.tsx @@ -72,13 +72,11 @@ export default function ReportPage() { categoryMap[item.code] = item; }); - // Create options with code and name format: "PP1162 瑞士汁(1磅/包)" const options = itemCodesWithName.map(item => { const code = item.code; const name = item.name || ''; const category = categoryMap[code]?.category || ''; - // Format: "PP1162 瑞士汁(1磅/包)" or "PP1162 瑞士汁(1磅/包) (FG)" let label = name ? `${code} ${name}` : code; if (category) { label = `${label} (${category})`;