fix: [production] 작업자 화면 제품명 표시 간소화 — productCode만 표시

작업목록, 상세카드, 자재투입, 중간검사 모달에서 부품 목록까지 길게
표시되던 제품명을 productCode만 표시하도록 변경
This commit is contained in:
2026-03-03 21:31:26 +09:00
parent 8bcabafd08
commit bedfd1f559
3 changed files with 9 additions and 7 deletions

View File

@@ -58,7 +58,7 @@ export function WorkCard({
{/* 헤더 박스: 품목명 + 수량 */}
<div className="flex items-center justify-between p-4 border-b border-gray-100">
<h3 className="text-lg font-semibold text-gray-900">
{order.productName}
{order.productCode !== '-' ? order.productCode : order.productName}
</h3>
<div className="text-right">
<span className="text-2xl font-bold text-gray-900">{order.quantity}</span>