nk20/apps/treasury/tables.py

88 lines
3.4 KiB
Python
Raw Normal View History

2020-03-20 23:30:49 +00:00
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
2020-03-21 06:36:07 +00:00
import django_tables2 as tables
2020-03-21 16:29:39 +00:00
from django.utils.translation import gettext_lazy as _
2020-03-21 06:36:07 +00:00
from django_tables2 import A
from note.models import SpecialTransaction
from note.templatetags.pretty_money import pretty_money
2020-03-20 23:30:49 +00:00
2020-03-22 17:27:22 +00:00
from .models import Invoice, Remittance
2020-03-20 23:30:49 +00:00
2020-03-22 00:22:27 +00:00
class InvoiceTable(tables.Table):
id = tables.LinkColumn("treasury:invoice_update",
2020-03-21 16:02:28 +00:00
args=[A("pk")],
2020-03-22 00:22:27 +00:00
text=lambda record: _("Invoice #{:d}").format(record.id), )
2020-03-21 06:36:07 +00:00
2020-03-22 00:22:27 +00:00
invoice = tables.LinkColumn("treasury:invoice_render",
verbose_name=_("Invoice"),
2020-03-21 16:29:39 +00:00
args=[A("pk")],
accessor="pk",
text="",
attrs={
'a': {'class': 'fa fa-file-pdf-o'},
'td': {'data-turbolinks': 'false'}
})
2020-03-21 06:36:07 +00:00
2020-03-20 23:30:49 +00:00
class Meta:
attrs = {
'class': 'table table-condensed table-striped table-hover'
}
2020-03-22 00:22:27 +00:00
model = Invoice
2020-03-20 23:30:49 +00:00
template_name = 'django_tables2/bootstrap4.html'
2020-03-22 14:24:54 +00:00
fields = ('id', 'name', 'object', 'acquitted', 'invoice',)
2020-03-22 17:27:22 +00:00
class RemittanceTable(tables.Table):
2020-03-23 23:50:55 +00:00
view = tables.LinkColumn("treasury:remittance_update",
verbose_name=_("View"),
args=[A("pk")],
2020-03-23 23:50:55 +00:00
text=_("View"),
attrs={
'a': {'class': 'btn btn-primary'}
}, )
2020-03-23 22:42:37 +00:00
def render_amount(self, value):
return pretty_money(value)
2020-03-22 17:27:22 +00:00
class Meta:
attrs = {
'class': 'table table-condensed table-striped table-hover'
}
model = Remittance
template_name = 'django_tables2/bootstrap4.html'
2020-03-23 23:50:55 +00:00
fields = ('id', 'date', 'type', 'comment', 'count', 'amount', 'view',)
class SpecialTransactionTable(tables.Table):
2020-03-23 22:42:37 +00:00
remittance_add = tables.LinkColumn("treasury:link_transaction",
verbose_name=_("Remittance"),
2020-03-23 22:42:37 +00:00
args=[A("specialtransactionproxy.pk")],
text=_("Add"),
attrs={
'a': {'class': 'btn btn-primary'}
}, )
2020-03-23 22:42:37 +00:00
remittance_remove = tables.LinkColumn("treasury:unlink_transaction",
verbose_name=_("Remittance"),
2020-03-23 22:42:37 +00:00
args=[A("specialtransactionproxy.pk")],
text=_("Remove"),
attrs={
'a': {'class': 'btn btn-primary btn-danger'}
}, )
2020-03-23 22:42:37 +00:00
def render_id(self, record):
return record.specialtransactionproxy.pk
def render_amount(self, value):
return pretty_money(value)
class Meta:
attrs = {
'class': 'table table-condensed table-striped table-hover'
}
model = SpecialTransaction
template_name = 'django_tables2/bootstrap4.html'
2020-03-23 22:42:37 +00:00
fields = ('id', 'source', 'destination', 'last_name', 'first_name', 'bank', 'amount', 'reason',)