feat: Add dialog for creating and editing historical tariff fractions and implement deterministic sorting for fraction listings.

This commit is contained in:
Galindo97
2026-02-17 12:51:47 -06:00
parent da43659eb3
commit 95940ed91e
11 changed files with 694 additions and 188 deletions

View File

@@ -32,6 +32,8 @@ def list_sectors(
query = query.filter(search_filter)
total = query.count()
# Add deterministic sort order
query = query.order_by(Sector.key)
items = query.offset(skip).limit(page_size).all()
return {