+
diff --git a/src/components/stocks/StockProductionList.tsx b/src/components/stocks/StockProductionList.tsx
index 48907c72..27b87465 100644
--- a/src/components/stocks/StockProductionList.tsx
+++ b/src/components/stocks/StockProductionList.tsx
@@ -209,8 +209,9 @@ export function StockProductionList() {
const tableColumns: TableColumn[] = useMemo(() => [
{ key: "rowNumber", label: "번호", className: "px-2 text-center w-[60px]" },
{ key: "orderNo", label: "생산번호", className: "px-2", sortable: true, copyable: true },
+ { key: "itemCode", label: "품목코드", className: "px-2", sortable: true, copyable: true },
{ key: "lotNumber", label: "로트번호", className: "px-2", copyable: true },
- { key: "itemSummary", label: "품목", className: "px-2", sortable: true, copyable: true },
+ { key: "itemSummary", label: "품목명", className: "px-2", sortable: true, copyable: true },
{ key: "quantity", label: "수량", className: "px-2 text-center", sortable: true },
{ key: "regDate", label: "등록일", className: "px-2", sortable: true, copyable: true },
{ key: "status", label: "상태", className: "px-2 text-center", sortable: true },
@@ -240,6 +241,13 @@ export function StockProductionList() {
{order.orderNo}
+
+ {order.items?.[0]?.itemCode ? (
+
+ {order.items[0].itemCode}
+
+ ) : "-"}
+
{order.bendingLot?.lotNumber ? (