소스 검색

Report Update

MergeProblem1
B.E.N.S.O.N 16 시간 전
부모
커밋
8b3f8fc6e9
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. +0
    -2
      src/app/(main)/report/page.tsx

+ 0
- 2
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})`;


불러오는 중...
취소
저장