-
- 규격
- {info.specification}
-
-
- 길이별 수량
- {info.lengthQuantity}
-
+
+
공통사항
+
+
+ 규격
+ {info.specification}
+
+
+ 길이별 수량
+ {info.lengthQuantity}
diff --git a/src/components/production/WorkerScreen/actions.ts b/src/components/production/WorkerScreen/actions.ts
index 464df189..bcddb261 100644
--- a/src/components/production/WorkerScreen/actions.ts
+++ b/src/components/production/WorkerScreen/actions.ts
@@ -678,9 +678,9 @@ export async function getWorkOrderDetail(
}
if (opts.is_wip) {
workItem.isWip = true;
- const wi = opts.wip_info as { specification: string; length_quantity: string; drawing_url?: string } | undefined;
+ const wi = opts.wip_info as { specification: string; length_quantity: string } | undefined;
if (wi) {
- workItem.wipInfo = { specification: wi.specification, lengthQuantity: wi.length_quantity, drawingUrl: wi.drawing_url };
+ workItem.wipInfo = { specification: wi.specification, lengthQuantity: wi.length_quantity };
}
}
if (opts.is_joint_bar) {
diff --git a/src/components/production/WorkerScreen/index.tsx b/src/components/production/WorkerScreen/index.tsx
index af641783..183b75ad 100644
--- a/src/components/production/WorkerScreen/index.tsx
+++ b/src/components/production/WorkerScreen/index.tsx
@@ -746,9 +746,9 @@ export default function WorkerScreen() {
}
if (opts.is_wip) {
workItem.isWip = true;
- const wi = opts.wip_info as { specification: string; length_quantity: string; drawing_url?: string } | undefined;
+ const wi = opts.wip_info as { specification: string; length_quantity: string } | undefined;
if (wi) {
- workItem.wipInfo = { specification: wi.specification, lengthQuantity: wi.length_quantity, drawingUrl: wi.drawing_url };
+ workItem.wipInfo = { specification: wi.specification, lengthQuantity: wi.length_quantity };
}
}
if (opts.is_joint_bar) {
diff --git a/src/components/production/WorkerScreen/types.ts b/src/components/production/WorkerScreen/types.ts
index 3d72e050..a9d11a99 100644
--- a/src/components/production/WorkerScreen/types.ts
+++ b/src/components/production/WorkerScreen/types.ts
@@ -62,7 +62,6 @@ export interface WorkItemData {
// ===== 재공품 전용 정보 =====
export interface WipInfo {
- drawingUrl?: string; // 도면 이미지 URL
specification: string; // 규격 (EGI 1.55T (W576))
lengthQuantity: string; // 길이별 수량 (4,000mm X 6개)
}
@@ -90,7 +89,6 @@ export interface SlatJointBarInfo {
// ===== 절곡 전용 정보 =====
export interface BendingInfo {
- drawingUrl?: string; // 도면 이미지 URL
common: BendingCommonInfo; // 공통사항
detailParts: BendingDetailPart[]; // 세부부품
}