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
|
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):
|
|
|
|
class Meta:
|
|
|
|
attrs = {
|
|
|
|
'class': 'table table-condensed table-striped table-hover'
|
|
|
|
}
|
|
|
|
model = Remittance
|
|
|
|
template_name = 'django_tables2/bootstrap4.html'
|
|
|
|
fields = ('id', 'date', 'type', 'comment', 'size', 'amount', 'edit',)
|