mirror of https://gitlab.crans.org/bde/nk20
68 lines
2.1 KiB
Python
68 lines
2.1 KiB
Python
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import django_tables2 as tables
|
|
from django.db.models import F
|
|
from django_tables2.utils import A
|
|
|
|
from .models.notes import Alias
|
|
from .models.transactions import Transaction, TransactionTemplate
|
|
from .templatetags.pretty_money import pretty_money
|
|
|
|
|
|
class HistoryTable(tables.Table):
|
|
class Meta:
|
|
attrs = {
|
|
'class':
|
|
'table table-condensed table-striped table-hover'
|
|
}
|
|
model = Transaction
|
|
exclude = ("polymorphic_ctype", )
|
|
template_name = 'django_tables2/bootstrap4.html'
|
|
sequence = ('...', 'total', 'valid')
|
|
|
|
total = tables.Column() # will use Transaction.total() !!
|
|
|
|
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)
|
|
|
|
def render_total(self, value):
|
|
return pretty_money(value)
|
|
|
|
|
|
class AliasTable(tables.Table):
|
|
class Meta:
|
|
attrs = {
|
|
'class':
|
|
'table table condensed table-striped table-hover'
|
|
}
|
|
model = Alias
|
|
fields = ('name',)
|
|
template_name = 'django_tables2/bootstrap4.html'
|
|
|
|
show_header = False
|
|
name = tables.Column(attrs={'td': {'class': 'text-center'}})
|
|
delete = tables.LinkColumn('member:user_alias_delete',
|
|
args=[A('pk')],
|
|
attrs={
|
|
'td': {'class': 'col-sm-2'},
|
|
'a': {'class': 'btn btn-danger'}},
|
|
text='delete', accessor='pk')
|
|
|
|
class ButtonTable(tables.Table):
|
|
class Meta:
|
|
attrs = {
|
|
'class':
|
|
'table table condensed table-striped table-hover'
|
|
}
|
|
model = TransactionTemplate
|
|
|
|
def render_amount(self, value):
|
|
return pretty_money(value)
|