fix
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 22s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s

This commit is contained in:
SunCheng
2026-01-18 11:21:52 +08:00
parent 9b25c62662
commit 2ffad479ba

View File

@@ -17,7 +17,7 @@ public class BudgetController(
{
return (await budgetService.GetListAsync(referenceDate))
.OrderByDescending(b => b.IsMandatoryExpense)
.OrderBy(b => b.Category)
.ThenBy(b => b.Category)
.ThenBy(b => b.Type)
.ThenByDescending(b => b.Limit > 0 ? b.Current / b.Limit : 0)
.ThenBy(b => b.Name)