Platform upgrade: login auth fix, OCR/OSS upload, system menus and dicts, weather dashboard, weighing and invoice modules

This commit is contained in:
2026-08-14 01:12:33 +08:00
parent c377421a3e
commit 8099ebae0a
75 changed files with 5611 additions and 473 deletions
+5
View File
@@ -0,0 +1,5 @@
$ErrorActionPreference = "SilentlyContinue"
$root = (Get-Location).Path
Get-ChildItem -Path $root -Recurse -Depth 2 -Include *.png, *.jpg, *.jpeg -File |
Select-Object @{N='File';E={$_.FullName.Replace($root, '.')}}, @{N='KB';E={[math]::Round($_.Length/1KB,1)}}, LastWriteTime |
Format-Table -AutoSize | Out-String -Width 200