2014-09-05 14:27:30 +00:00
|
|
|
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-05 14:27:30 +00:00
|
|
|
|
2014-09-06 10:56:30 +00:00
|
|
|
|
|
|
|
class SelectSourceForm(forms.ModelForm):
|
|
|
|
bill_link = forms.CharField(label=_("Number"), required=False,
|
|
|
|
widget=ShowTextWidget())
|
|
|
|
account_link = forms.CharField(label=_("Account"), required=False)
|
|
|
|
display_total = forms.CharField(label=_("Total"), required=False)
|
|
|
|
display_type = forms.CharField(label=_("Type"), required=False,
|
|
|
|
widget=ShowTextWidget())
|
2014-09-05 14:27:30 +00:00
|
|
|
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')
|
2014-09-05 14:27:30 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
2014-09-06 10:56:30 +00:00
|
|
|
super(SelectSourceForm, self).__init__(*args, **kwargs)
|
2014-09-05 14:27:30 +00:00
|
|
|
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)
|
2014-09-05 14:27:30 +00:00
|
|
|
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]
|
|
|
|
self.fields['bill_link'].initial = admin_link('__unicode__')(bill)
|
|
|
|
self.fields['display_type'].initial = bill.get_type_display()
|
2014-09-05 14:27:30 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2014-09-05 14:27:30 +00:00
|
|
|
def save(self, commit=True):
|
2014-09-06 10:56:30 +00:00
|
|
|
pass
|