Compare commits

...

3 Commits
0.8.2 ... 0.8.3

Author SHA1 Message Date
Herculino Trotta
3023f33d3d Merge pull request #110
fix: 'tags__id' does not resolve to an item that supports prefetching
2025-01-30 00:26:40 -03:00
Herculino Trotta
b5671fcd0e fix: 'tags__id' does not resolve to an item that supports prefetching 2025-01-30 00:26:07 -03:00
Herculino Trotta
48408cead8 fix: 'tags__id' does not resolve to an item that supports prefetching 2025-01-30 00:22:37 -03:00
2 changed files with 2 additions and 6 deletions

View File

@@ -84,12 +84,10 @@ def transactions_list(request, month: int, year: int):
"account__group",
"category",
"tags",
"tags__id",
"account__exchange_currency",
"account__currency",
"installment_plan",
"entities__name",
"entities__id",
"entities",
)
)

View File

@@ -336,12 +336,10 @@ def transaction_all_list(request):
"account__group",
"category",
"tags",
"tags__id",
"account__exchange_currency",
"account__currency",
"installment_plan",
"entities__name",
"entities__id",
"entities",
).all()
transactions = default_order(transactions, order=order)