From 6e0a6bcba33061f4ebf5144dc8363871fd370ac8 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sat, 8 Aug 2026 11:21:23 +0900 Subject: [PATCH] =?UTF-8?q?change(B03):=20=EC=97=85=EB=A1=9C=EB=93=9C=20?= =?UTF-8?q?=EC=99=84=EB=A3=8C=20=ED=9B=84=20=EC=9D=B4=EB=8F=99=20=EB=8C=80?= =?UTF-8?q?=EC=83=81=EC=9D=84=20=EC=97=AD=ED=95=A0=20=EB=AC=B4=EA=B4=80=20?= =?UTF-8?q?B05=20=EC=A2=85=EB=8B=A8=EC=84=A4=EA=B3=84=EB=A1=9C=20=ED=86=B5?= =?UTF-8?q?=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 전처리(B04)는 자동 확정까지 끝난 관리자 전용 점검 화면이라 일반 진행 경로가 아니다. 시스템 관리자만 B04로 보내던 분기를 없애고 모두 B05로 보낸다. 분기 제거로 fetchDashboardMe 호출도 함께 제거(B03 진입 시 불필요한 왕복·실패 지점 감소). Co-Authored-By: Claude Fable 5 --- B03_FileInput/B03_FileInput_UI_Page.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/B03_FileInput/B03_FileInput_UI_Page.ts b/B03_FileInput/B03_FileInput_UI_Page.ts index 85686106..1992d9f9 100644 --- a/B03_FileInput/B03_FileInput_UI_Page.ts +++ b/B03_FileInput/B03_FileInput_UI_Page.ts @@ -12,7 +12,6 @@ import { createButton, createTag, showToast } from "@ui/ui_template_elements"; import { createGeneralLayout } from "@ui/ui_template_general_layout"; import { createWorkflowOverlays } from "@ui/ui_template_overlay"; import { createStepBar, WORKFLOW_STEP_ICONS } from "@ui/ui_template_workflow_layout"; -import { fetchDashboardMe } from "../B01_Dashboard/B01_Dashboard_Api_Fetch"; import { checkWF1AnalysisStatus, createUploadSession, @@ -52,9 +51,9 @@ function L(key: keyof typeof ui_locales): string { } export async function renderB03FileInput(root: HTMLElement): Promise { - const dashboardUser = await fetchDashboardMe(); - const completionRoute = - dashboardUser.role === "SYSTEM_ADMIN" ? ROUTES.B04_PREPROCESS : ROUTES.B05_PROFILE; + // 업로드가 끝나면 역할과 무관하게 종단설계로 보낸다 — 전처리(B04)는 자동 확정까지 + // 끝난 관리자 전용 점검 화면이라 일반 진행 경로가 아니다(2026-08-08 사용자 지시). + const completionRoute = ROUTES.B05_PROFILE; const slots = initializeSlots(); const cardMap = new Map(); const resultList = document.createElement("ul");