refactor: rename RunBOMExtraction to BOMExtraction for consistency
All checks were successful
NTFY Notification / notify (push) Successful in 4s

Rename the main BOM extraction function from RunBOMExtraction to BOMExtraction
to follow consistent naming conventions across the codebase.

Changes:
- M09_BOMExtractor.bas: Rename function RunBOMExtraction → BOMExtraction
- M01_Main.bas: Update function call to use new name
- Update all internal return statements and logger references

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-02-27 12:24:12 +08:00
parent 7cb025c243
commit c08a2f34e1
2 changed files with 11 additions and 11 deletions

View File

@@ -143,7 +143,7 @@ End Sub
' ------------------------------------------------------------------------------
Public Sub RunBOMExtraction()
Dim result As String
result = M09_BOMExtractor.RunBOMExtraction()
result = BOMExtraction()
MsgBox result, vbInformation, "BOM提取"
End Sub