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-23 21:43:16 +00:00
|
|
|
from note.models import SpecialTransaction
|
|
|
|
from note.templatetags.pretty_money import pretty_money
|
2020-03-20 23:30:49 +00:00
|
|
|
|
2020-04-22 01:26:45 +00:00
|
|
|
from .models import Invoice, Remittance, SogeCredit
|
2020-03-20 23:30:49 +00:00
|
|
|
|
|
|
|
|
2020-03-22 00:22:27 +00:00
|
|
|
class InvoiceTable(tables.Table):
|
2020-03-24 19:22:15 +00:00
|
|
|
"""
|
|
|
|
List all invoices.
|
|
|
|
"""
|
2020-08-07 09:04:54 +00:00
|
|
|
id = tables.LinkColumn(
|
|
|
|
"treasury:invoice_update",
|
|
|
|
args=[A("pk")],
|
|
|
|
text=lambda record: _("Invoice #{:d}").format(record.id),
|
|
|
|
)
|
|
|
|
|
|
|
|
invoice = tables.LinkColumn(
|
|
|
|
"treasury:invoice_render",
|
|
|
|
verbose_name=_("Invoice"),
|
|
|
|
args=[A("pk")],
|
|
|
|
accessor="pk",
|
|
|
|
text="",
|
|
|
|
attrs={
|
|
|
|
'a': {'class': 'fa fa-file-pdf-o'},
|
|
|
|
'td': {'data-turbolinks': 'false'}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
delete = tables.LinkColumn(
|
|
|
|
'treasury:invoice_delete',
|
|
|
|
args=[A('pk')],
|
|
|
|
verbose_name=_("delete"),
|
|
|
|
text=_("Delete"),
|
|
|
|
attrs={
|
|
|
|
'th': {
|
|
|
|
'id': 'delete-membership-header'
|
|
|
|
},
|
|
|
|
'a': {
|
|
|
|
'class': 'btn btn-danger',
|
|
|
|
'data-type': 'delete-membership'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
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-24 19:22:15 +00:00
|
|
|
"""
|
|
|
|
List all remittances.
|
|
|
|
"""
|
|
|
|
|
2020-03-24 00:04:01 +00:00
|
|
|
count = tables.Column(verbose_name=_("Transaction count"))
|
|
|
|
|
|
|
|
amount = tables.Column(verbose_name=_("Amount"))
|
|
|
|
|
2020-03-23 23:50:55 +00:00
|
|
|
view = tables.LinkColumn("treasury:remittance_update",
|
|
|
|
verbose_name=_("View"),
|
2020-03-23 21:43:16 +00:00
|
|
|
args=[A("pk")],
|
2020-03-23 23:50:55 +00:00
|
|
|
text=_("View"),
|
2020-03-23 21:43:16 +00:00
|
|
|
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-24 16:06:50 +00:00
|
|
|
fields = ('id', 'date', 'remittance_type', 'comment', 'count', 'amount', 'view',)
|
2020-08-05 16:04:01 +00:00
|
|
|
order_by = ('-date',)
|
2020-03-23 21:43:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SpecialTransactionTable(tables.Table):
|
2020-03-24 19:22:15 +00:00
|
|
|
"""
|
|
|
|
List special credit transactions that are (or not, following the queryset) attached to a remittance.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Display add and remove buttons. Use the `exclude` field to select what is needed.
|
2020-03-23 22:42:37 +00:00
|
|
|
remittance_add = tables.LinkColumn("treasury:link_transaction",
|
2020-03-23 21:43:16 +00:00
|
|
|
verbose_name=_("Remittance"),
|
2020-03-23 22:42:37 +00:00
|
|
|
args=[A("specialtransactionproxy.pk")],
|
2020-03-23 21:43:16 +00:00
|
|
|
text=_("Add"),
|
|
|
|
attrs={
|
|
|
|
'a': {'class': 'btn btn-primary'}
|
|
|
|
}, )
|
|
|
|
|
2020-03-23 22:42:37 +00:00
|
|
|
remittance_remove = tables.LinkColumn("treasury:unlink_transaction",
|
2020-03-23 21:43:16 +00:00
|
|
|
verbose_name=_("Remittance"),
|
2020-03-23 22:42:37 +00:00
|
|
|
args=[A("specialtransactionproxy.pk")],
|
2020-03-23 21:43:16 +00:00
|
|
|
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
|
|
|
|
|
2020-03-23 21:43:16 +00:00
|
|
|
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-08-05 16:04:01 +00:00
|
|
|
fields = ('created_at', 'source', 'destination', 'last_name', 'first_name', 'bank', 'amount', 'reason',)
|
|
|
|
order_by = ('-created_at',)
|
2020-04-22 01:26:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SogeCreditTable(tables.Table):
|
|
|
|
user = tables.LinkColumn(
|
|
|
|
'treasury:manage_soge_credit',
|
|
|
|
args=[A('pk')],
|
|
|
|
)
|
|
|
|
|
|
|
|
amount = tables.Column(
|
|
|
|
verbose_name=_("Amount"),
|
|
|
|
)
|
|
|
|
|
|
|
|
valid = tables.Column(
|
|
|
|
verbose_name=_("Valid"),
|
|
|
|
)
|
|
|
|
|
|
|
|
def render_amount(self, value):
|
|
|
|
return pretty_money(value)
|
|
|
|
|
|
|
|
def render_valid(self, value):
|
|
|
|
return _("Yes") if value else _("No")
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = SogeCredit
|
|
|
|
fields = ('user', 'amount', 'valid', )
|