Update VBA modules and test formatting

- Fix test result indicators encoding (use ?? instead of Unicode symbols)
- Add missing newlines at end of files
- Add new VBA module files for main functionality

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-04-24 10:20:00 +08:00
parent 88b85c47cf
commit c0f8d8163d
10 changed files with 1343 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
Private Sub CommandButton1_Click()
Dim ws As Worksheet
Set ws = ThisWorkbook.Worksheets("货期检查")
ws.Range("A4:P10000").ClearContents
Call RunDeliveryCheck
End Sub
Private Sub CommandButton2_Click()
Call SyncModifiedDatesToAccess
Call ArchiveModifiedData
Call UpdateSourceDataCopy
End Sub