diff --git a/apps/note/tables.py b/apps/note/tables.py
index 547bf9c6426474bce9d246f7ea685f8e73efb9de..b1d434ae70d2d4d242988c9deb6882b975d2f723 100644
--- a/apps/note/tables.py
+++ b/apps/note/tables.py
@@ -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)