Project

General

Profile

Download (1.7 KB) Statistics
| Branch: | Tag: | Revision:
# -*- coding: utf-8 -*-

from django import forms

from calebasse.actes.models import Act
from calebasse.ressources.models import ActType
from ajax_select import make_ajax_field

class ActSearchForm(forms.Form):
STATES = (
('pointe', u'Pointés'),
('non-pointe', u'Non pointés'),
('valide', u'Présents'),
('absent-or-canceled', u'Absents ou annulés'),
('is-billable', u'Facturables'),
('non-invoicable', u'Non facturables'),
('switch-billable', u'Avec facturabilité inversée'),
('lost', u'Perdus'),
('pause-invoicing', u'En pause facturation'),
('invoiced', u'Facturés'),
('group', u'De groupe'),
# ('current-invoicing', u'Facturation en cours')
)

INITIAL = [x[0] for x in STATES]

last_name = forms.CharField(required=False)
patient_record_id = forms.IntegerField(required=False)
social_security_number = forms.CharField(required=False)

doctor_name = forms.CharField(required=False)
filters = forms.MultipleChoiceField(choices=STATES,
widget=forms.CheckboxSelectMultiple)

class ActUpdate(forms.ModelForm):
doctors = make_ajax_field(Act, 'doctors', 'intervenant', True)
class Meta:
model = Act
fields = ('act_type', 'doctors', 'is_lost', 'pause',
'switch_billable', )

def __init__(self, instance, service=None, **kwargs):
super(ActUpdate, self).__init__(instance=instance, **kwargs)
if instance.patient.service:
self.fields['act_type'].queryset = \
ActType.objects.for_service(instance.patient.service) \
.order_by('name')
(3-3/9)