2020-02-18 20:30:26 +00:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2019-08-11 17:55:04 +00:00
|
|
|
|
2020-02-18 20:14:29 +00:00
|
|
|
from dal import autocomplete
|
2019-08-11 17:55:04 +00:00
|
|
|
from django import forms
|
2020-02-27 16:22:59 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2020-02-18 20:14:29 +00:00
|
|
|
|
2020-03-07 21:28:59 +00:00
|
|
|
from .models import Alias
|
2020-03-10 07:07:09 +00:00
|
|
|
from .models import Transaction, TransactionTemplate
|
2020-03-07 21:28:59 +00:00
|
|
|
|
2020-02-28 12:37:31 +00:00
|
|
|
|
|
|
|
class AliasForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Alias
|
|
|
|
fields = ("name",)
|
2020-03-03 13:26:31 +00:00
|
|
|
|
2020-03-07 21:28:59 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
2020-03-01 12:42:22 +00:00
|
|
|
self.fields["name"].label = False
|
2020-03-07 21:28:59 +00:00
|
|
|
self.fields["name"].widget.attrs = {"placeholder": _('New Alias')}
|
|
|
|
|
2020-03-03 13:26:31 +00:00
|
|
|
|
2020-03-04 15:34:12 +00:00
|
|
|
class ImageForm(forms.Form):
|
2020-03-07 21:28:59 +00:00
|
|
|
image = forms.ImageField(required=False,
|
2020-03-04 15:34:12 +00:00
|
|
|
label=_('select an image'),
|
|
|
|
help_text=_('Maximal size: 2MB'))
|
2020-03-05 22:32:01 +00:00
|
|
|
x = forms.FloatField(widget=forms.HiddenInput())
|
|
|
|
y = forms.FloatField(widget=forms.HiddenInput())
|
|
|
|
width = forms.FloatField(widget=forms.HiddenInput())
|
|
|
|
height = forms.FloatField(widget=forms.HiddenInput())
|
2020-03-03 13:26:31 +00:00
|
|
|
|
2020-03-07 21:28:59 +00:00
|
|
|
|
2019-08-11 17:55:04 +00:00
|
|
|
class TransactionTemplateForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = TransactionTemplate
|
2020-02-18 11:31:15 +00:00
|
|
|
fields = '__all__'
|
2020-02-08 19:23:17 +00:00
|
|
|
|
2020-02-08 20:40:32 +00:00
|
|
|
# Le champ de destination est remplacé par un champ d'auto-complétion.
|
|
|
|
# Quand des lettres sont tapées, une requête est envoyée sur l'API d'auto-complétion
|
|
|
|
# et récupère les aliases valides
|
2020-02-08 22:24:49 +00:00
|
|
|
# Pour force le type d'une note, il faut rajouter le paramètre :
|
|
|
|
# forward=(forward.Const('TYPE', 'note_type') où TYPE est dans {user, club, special}
|
2020-02-08 19:23:17 +00:00
|
|
|
widgets = {
|
2020-02-18 11:31:15 +00:00
|
|
|
'destination':
|
2020-03-07 21:28:59 +00:00
|
|
|
autocomplete.ModelSelect2(
|
|
|
|
url='note:note_autocomplete',
|
|
|
|
attrs={
|
|
|
|
'data-placeholder': 'Note ...',
|
|
|
|
'data-minimum-input-length': 1,
|
|
|
|
},
|
|
|
|
),
|
2020-02-08 19:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class TransactionForm(forms.ModelForm):
|
2020-02-08 22:24:49 +00:00
|
|
|
def save(self, commit=True):
|
|
|
|
super().save(commit)
|
|
|
|
|
2020-02-27 16:22:59 +00:00
|
|
|
def clean(self):
|
|
|
|
"""
|
|
|
|
If the user has no right to transfer funds, then it will be the source of the transfer by default.
|
|
|
|
Transactions between a note and the same note are not authorized.
|
|
|
|
"""
|
|
|
|
|
|
|
|
cleaned_data = super().clean()
|
2020-03-07 21:28:59 +00:00
|
|
|
if "source" not in cleaned_data: # TODO Replace it with "if %user has no right to transfer funds"
|
2020-02-27 16:22:59 +00:00
|
|
|
cleaned_data["source"] = self.user.note
|
|
|
|
|
|
|
|
if cleaned_data["source"].pk == cleaned_data["destination"].pk:
|
|
|
|
self.add_error("destination", _("Source and destination must be different."))
|
|
|
|
|
|
|
|
return cleaned_data
|
|
|
|
|
2020-02-08 19:23:17 +00:00
|
|
|
class Meta:
|
|
|
|
model = Transaction
|
2020-02-18 11:31:15 +00:00
|
|
|
fields = (
|
|
|
|
'source',
|
|
|
|
'destination',
|
|
|
|
'reason',
|
|
|
|
'amount',
|
|
|
|
)
|
2020-02-08 19:23:17 +00:00
|
|
|
|
2020-02-08 20:40:32 +00:00
|
|
|
# Voir ci-dessus
|
2020-02-08 19:23:17 +00:00
|
|
|
widgets = {
|
2020-02-18 11:31:15 +00:00
|
|
|
'source':
|
2020-03-07 21:28:59 +00:00
|
|
|
autocomplete.ModelSelect2(
|
|
|
|
url='note:note_autocomplete',
|
|
|
|
attrs={
|
|
|
|
'data-placeholder': 'Note ...',
|
|
|
|
'data-minimum-input-length': 1,
|
|
|
|
},
|
|
|
|
),
|
2020-02-18 11:31:15 +00:00
|
|
|
'destination':
|
2020-03-07 21:28:59 +00:00
|
|
|
autocomplete.ModelSelect2(
|
|
|
|
url='note:note_autocomplete',
|
|
|
|
attrs={
|
|
|
|
'data-placeholder': 'Note ...',
|
|
|
|
'data-minimum-input-length': 1,
|
|
|
|
},
|
|
|
|
),
|
2020-02-08 19:23:17 +00:00
|
|
|
}
|