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
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:
@@ -17,7 +17,7 @@ public class BudgetController(
|
|||||||
{
|
{
|
||||||
return (await budgetService.GetListAsync(referenceDate))
|
return (await budgetService.GetListAsync(referenceDate))
|
||||||
.OrderByDescending(b => b.IsMandatoryExpense)
|
.OrderByDescending(b => b.IsMandatoryExpense)
|
||||||
.OrderBy(b => b.Category)
|
.ThenBy(b => b.Category)
|
||||||
.ThenBy(b => b.Type)
|
.ThenBy(b => b.Type)
|
||||||
.ThenByDescending(b => b.Limit > 0 ? b.Current / b.Limit : 0)
|
.ThenByDescending(b => b.Limit > 0 ? b.Current / b.Limit : 0)
|
||||||
.ThenBy(b => b.Name)
|
.ThenBy(b => b.Name)
|
||||||
|
|||||||
Reference in New Issue
Block a user