From 0756bf12d10cf1b7f78c571de0a9ad69cbaeb7ca Mon Sep 17 00:00:00 2001
From: curtis <curtis@i-mps.com>
Date: 星期一, 30 三月 2026 14:24:17 +0800
Subject: [PATCH] fix: 更新內部引用方法參照

---
 reassemble/bloc/mermaid/BarCode2CaseID.md |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/reassemble/bloc/mermaid/BarCode2CaseID.md b/reassemble/bloc/mermaid/BarCode2CaseID.md
new file mode 100644
index 0000000..865e52f
--- /dev/null
+++ b/reassemble/bloc/mermaid/BarCode2CaseID.md
@@ -0,0 +1,15 @@
+```mermaid
+flowchart TD
+    Start([開始 BarCode2CaseID]) --> InitResult[初始化 Result 為空字串]
+    InitResult --> LoopStart[遍歷條碼清單 i = 1 to Count]
+    
+    LoopStart --> CheckLen{條碼長度是否等於 CaseIDLength?}
+    CheckLen -- 是 --> SetResult[設定 Result 為此條碼]
+    CheckLen -- 否 --> NextIter[下一筆]
+    
+    SetResult --> BreakLoop[中斷迴圈]
+    NextIter --> LoopStart
+    
+    BreakLoop --> End([結束])
+    LoopStart -- 遍歷完成 --> End
+```

--
Gitblit v1.8.0