fix: [production] 작업자 화면 하드코딩 도면 이미지 영역 제거

- BendingExtraInfo, WipExtraInfo에서 drawingUrl 도면 이미지 div 제거
- types.ts에서 drawingUrl 필드 제거
- actions.ts, index.tsx에서 drawing_url 매핑 제거
This commit is contained in:
2026-03-04 11:19:12 +09:00
parent 0166601be8
commit f503e20030
4 changed files with 34 additions and 74 deletions

View File

@@ -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) {