django-orchestra/orchestra/contrib/bills/forms.py

49 lines
1.9 KiB
Python
Raw Normal View History

from django import forms
from django.utils.translation import ugettext_lazy as _
2014-09-06 10:56:30 +00:00
from orchestra.admin.utils import admin_link
from orchestra.forms.widgets import ShowTextWidget
2014-09-06 10:56:30 +00:00
class SelectSourceForm(forms.ModelForm):
2015-04-05 10:46:24 +00:00
bill_link = forms.CharField(label=_("Number"), required=False, widget=ShowTextWidget())
2014-09-06 10:56:30 +00:00
account_link = forms.CharField(label=_("Account"), required=False)
display_total = forms.CharField(label=_("Total"), required=False)
2015-04-05 10:46:24 +00:00
display_type = forms.CharField(label=_("Type"), required=False, widget=ShowTextWidget())
source = forms.ChoiceField(label=_("Source"), required=False)
class Meta:
2014-09-06 10:56:30 +00:00
fields = (
'bill_link', 'display_type', 'account_link', 'display_total',
'source'
)
readonly_fields = ('account_link', 'display_total')
def __init__(self, *args, **kwargs):
2014-09-06 10:56:30 +00:00
super(SelectSourceForm, self).__init__(*args, **kwargs)
bill = kwargs.get('instance')
if bill:
sources = bill.account.paymentsources.filter(is_active=True)
2014-09-08 15:10:16 +00:00
recharge = bool(bill.total < 0)
choices = [(None, '-----------')]
for source in sources:
if not recharge or source.method_class().allow_recharge:
choices.append((source.pk, str(source)))
self.fields['source'].choices = choices
2014-09-06 10:56:30 +00:00
self.fields['source'].initial = choices[-1][0]
2015-04-02 16:14:55 +00:00
self.fields['bill_link'].initial = admin_link('__str__')(bill)
2014-09-06 10:56:30 +00:00
self.fields['display_type'].initial = bill.get_type_display()
def clean_source(self):
source_id = self.cleaned_data['source']
if not source_id:
return None
source_model = self.instance.account.paymentsources.model
return source_model.objects.get(id=source_id)
2014-09-06 10:56:30 +00:00
def has_changed(self):
return False
def save(self, commit=True):
2014-09-06 10:56:30 +00:00
pass