2016-07-15 00:02:56 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-15 00:02:56 +02:00
|
|
|
from __future__ import division
|
|
|
|
from __future__ import print_function
|
2016-07-08 23:04:34 +02:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-05-27 17:52:02 +02:00
|
|
|
from django import forms
|
2016-07-25 23:03:33 +02:00
|
|
|
from django.utils import timezone
|
2016-07-27 13:08:00 +02:00
|
|
|
from bda.models import Attribution, Spectacle
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-05-27 17:52:02 +02:00
|
|
|
class TokenForm(forms.Form):
|
2016-06-05 02:16:14 +02:00
|
|
|
token = forms.CharField(widget=forms.widgets.Textarea())
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-07-27 13:08:00 +02:00
|
|
|
class AttributionModelMultipleChoiceField(forms.ModelMultipleChoiceField):
|
2016-05-27 17:52:02 +02:00
|
|
|
def label_from_instance(self, obj):
|
2017-04-08 12:10:23 +02:00
|
|
|
return "%s" % str(obj.spectacle)
|
2016-05-27 17:52:02 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-05-27 17:52:02 +02:00
|
|
|
class ResellForm(forms.Form):
|
2016-07-27 13:08:00 +02:00
|
|
|
attributions = AttributionModelMultipleChoiceField(
|
2017-02-16 04:52:44 +01:00
|
|
|
label='',
|
2016-07-25 23:03:33 +02:00
|
|
|
queryset=Attribution.objects.none(),
|
2016-07-27 13:08:00 +02:00
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
required=False)
|
2016-05-27 17:52:02 +02:00
|
|
|
|
|
|
|
def __init__(self, participant, *args, **kwargs):
|
|
|
|
super(ResellForm, self).__init__(*args, **kwargs)
|
2017-04-08 12:10:23 +02:00
|
|
|
self.fields['attributions'].queryset = (
|
|
|
|
participant.attribution_set
|
|
|
|
.filter(spectacle__date__gte=timezone.now())
|
2016-09-05 02:29:49 +02:00
|
|
|
.exclude(revente__seller=participant)
|
2017-04-08 12:10:23 +02:00
|
|
|
.select_related('spectacle', 'spectacle__location',
|
|
|
|
'participant__user')
|
|
|
|
)
|
2016-07-27 13:08:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class AnnulForm(forms.Form):
|
|
|
|
attributions = AttributionModelMultipleChoiceField(
|
2017-02-16 04:52:44 +01:00
|
|
|
label='',
|
2016-07-27 13:08:00 +02:00
|
|
|
queryset=Attribution.objects.none(),
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
required=False)
|
|
|
|
|
|
|
|
def __init__(self, participant, *args, **kwargs):
|
|
|
|
super(AnnulForm, self).__init__(*args, **kwargs)
|
2017-04-08 12:10:23 +02:00
|
|
|
self.fields['attributions'].queryset = (
|
|
|
|
participant.attribution_set
|
2016-07-27 13:08:00 +02:00
|
|
|
.filter(spectacle__date__gte=timezone.now(),
|
|
|
|
revente__isnull=False,
|
2017-02-16 05:28:57 +01:00
|
|
|
revente__notif_sent=False,
|
2016-12-21 03:45:30 +01:00
|
|
|
revente__soldTo__isnull=True)
|
2017-04-08 12:10:23 +02:00
|
|
|
.select_related('spectacle', 'spectacle__location',
|
|
|
|
'participant__user')
|
|
|
|
)
|
2016-07-27 13:08:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class InscriptionReventeForm(forms.Form):
|
|
|
|
spectacles = forms.ModelMultipleChoiceField(
|
|
|
|
queryset=Spectacle.objects.none(),
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
required=False)
|
|
|
|
|
|
|
|
def __init__(self, tirage, *args, **kwargs):
|
|
|
|
super(InscriptionReventeForm, self).__init__(*args, **kwargs)
|
2017-04-08 12:10:23 +02:00
|
|
|
self.fields['spectacles'].queryset = (
|
|
|
|
tirage.spectacle_set
|
|
|
|
.select_related('location')
|
|
|
|
.filter(date__gte=timezone.now())
|
|
|
|
)
|
2017-02-16 04:52:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
class SoldForm(forms.Form):
|
|
|
|
attributions = AttributionModelMultipleChoiceField(
|
|
|
|
label='',
|
|
|
|
queryset=Attribution.objects.none(),
|
|
|
|
widget=forms.CheckboxSelectMultiple)
|
|
|
|
|
|
|
|
def __init__(self, participant, *args, **kwargs):
|
|
|
|
super(SoldForm, self).__init__(*args, **kwargs)
|
2017-02-21 23:49:29 +01:00
|
|
|
self.fields['attributions'].queryset = (
|
|
|
|
participant.attribution_set
|
2017-04-08 12:10:23 +02:00
|
|
|
.filter(revente__isnull=False,
|
|
|
|
revente__soldTo__isnull=False)
|
|
|
|
.exclude(revente__soldTo=participant)
|
|
|
|
.select_related('spectacle', 'spectacle__location',
|
|
|
|
'participant__user')
|
2017-02-21 23:49:29 +01:00
|
|
|
)
|