History tables are not orderable

This commit is contained in:
Yohann D'ANELLO 2020-09-01 15:52:54 +02:00
parent eaf256b1b6
commit 1977e403e3
1 changed files with 0 additions and 7 deletions

View File

@ -4,7 +4,6 @@
import html
import django_tables2 as tables
from django.db.models import F
from django.utils.html import format_html
from django_tables2.utils import A
from django.utils.translation import gettext_lazy as _
@ -76,12 +75,6 @@ class HistoryTable(tables.Table):
}
)
def order_total(self, queryset, is_descending):
# needed for rendering
queryset = queryset.annotate(total=F('amount') * F('quantity')) \
.order_by(('-' if is_descending else '') + 'total')
return queryset, True
def render_amount(self, value):
return pretty_money(value)