X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/967eed676fc83d15b26149047f353ac61faa8217..3c2212f96c81ec3440c8ad8c9290786cf30327e4:/src/club/forms.py diff --git a/src/club/forms.py b/src/club/forms.py index c5d57819e..ed18e2240 100644 --- a/src/club/forms.py +++ b/src/club/forms.py @@ -1,28 +1,39 @@ -# -*- coding: utf-8 +# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# +from decimal import Decimal from django import forms +from django.utils.translation import ugettext as _ +from newsletter.forms import NewsletterForm from . import models -from .payment_methods import method_by_slug +from .payu.forms import CardTokenForm -class ScheduleForm(forms.ModelForm): +class ScheduleForm(forms.ModelForm, NewsletterForm): class Meta: model = models.Schedule - fields = ['plan', 'method', 'amount', 'email'] + fields = ['monthly', 'amount', 'email'] widgets = { - 'plan': forms.RadioSelect, - 'method': forms.RadioSelect, + 'amount': forms.HiddenInput, + 'monthly': forms.HiddenInput, } - def __init__(self, *args, **kwargs): - super(ScheduleForm, self).__init__(*args, **kwargs) - self.fields['plan'].empty_label = None + def clean_amount(self): + value = self.cleaned_data['amount'] + club = models.Club.objects.first() + if club and value < club.min_amount: + raise forms.ValidationError( + _('Minimal amount is %(amount)d PLN.') % { + 'amount': club.min_amount + } + ) + return value - def clean(self): - cleaned_data = super(ScheduleForm, self).clean() - if 'method' in cleaned_data: - method = method_by_slug[cleaned_data['method']] - if method not in cleaned_data['plan'].payment_methods(): - self.add_error('method', 'Metoda płatności niedostępna dla tego planu.') - if cleaned_data['amount'] < cleaned_data['plan'].min_amount: - self.add_error('amount', 'Minimalna kwota dla tego planu to %d zł.' % cleaned_data['plan'].min_amount) + def save(self, *args, **kwargs): + NewsletterForm.save(self, *args, **kwargs) + return super().save(*args, **kwargs) + +class PayUCardTokenForm(CardTokenForm): + def get_queryset(self, view): + return view.get_schedule().payucardtoken_set