diff --git a/src/components/stocks/BendingLotForm.tsx b/src/components/stocks/BendingLotForm.tsx index b558336c..bc5142a1 100644 --- a/src/components/stocks/BendingLotForm.tsx +++ b/src/components/stocks/BendingLotForm.tsx @@ -486,7 +486,7 @@ export function BendingLotForm({ initialData, isEditMode = false }: BendingLotFo
{/* 기본 정보 */} -
+
setForm((prev) => ({ ...prev, regDate: date }))} />
+
+ + +
+
+ + +
diff --git a/src/components/stocks/StockProductionDetail.tsx b/src/components/stocks/StockProductionDetail.tsx index 0e064d88..e5ab17c5 100644 --- a/src/components/stocks/StockProductionDetail.tsx +++ b/src/components/stocks/StockProductionDetail.tsx @@ -141,6 +141,14 @@ export function StockProductionDetail({ orderId }: StockProductionDetailProps) {
+
+ + +
+
+ + +
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 ? (