通勤認定エクセルツール対応12 Z4からO3に変更

This commit is contained in:
guanxiangwei
2026-05-27 10:50:49 +09:00
parent 85707853e6
commit ca2ae646fb
7 changed files with 71 additions and 120 deletions

View File

@@ -38,13 +38,13 @@ End Function
' Create Todoke (G) dropdown
Public Function BuildTodokeList()
Dim z4Cache As Object: Set z4Cache = GetCache("Z4")
Dim o3Cache As Object: Set o3Cache = GetCache(CACHE_O3)
Dim dropdownList As String
Dim key As Variant
For Each key In z4Cache.Keys
For Each key In o3Cache.Keys
Dim displayText As String
displayText = MakeSelect(key, z4Cache(key)(0))
displayText = MakeSelect(key, o3Cache(key)(0))
If dropdownList = "" Then
dropdownList = displayText
Else