2018-10-05 22:03:02 +00:00
from django import forms
2018-11-22 21:52:15 +00:00
from django . core . exceptions import ValidationError
2018-10-05 22:03:02 +00:00
from django . contrib . auth . models import User
from dal import autocomplete
from . models import Reload , Refund , Product , Keg , Menu
from preferences . models import PaymentMethod
from coopeV3 . widgets import SearchField
class ReloadForm ( forms . ModelForm ) :
2018-11-22 21:52:15 +00:00
def __init__ ( self , * args , * * kwargs ) :
super ( ReloadForm , self ) . __init__ ( * args , * * kwargs )
2018-12-16 10:20:02 +00:00
self . fields [ ' PaymentMethod ' ] . queryset = PaymentMethod . objects . filter ( is_usable_in_reload = True ) . filter ( is_active = True )
2018-11-22 21:52:15 +00:00
2018-10-05 22:03:02 +00:00
class Meta :
model = Reload
fields = ( " customer " , " amount " , " PaymentMethod " )
2019-01-17 22:25:56 +00:00
widgets = { ' customer ' : autocomplete . ModelSelect2 ( url = ' users:active-users-autocomplete ' , attrs = { ' data-minimum-input-length ' : 2 } ) , ' amount ' : forms . TextInput }
2018-11-22 21:52:15 +00:00
2018-10-05 22:03:02 +00:00
class RefundForm ( forms . ModelForm ) :
class Meta :
model = Refund
fields = ( " customer " , " amount " )
2019-01-17 22:25:56 +00:00
widgets = { ' customer ' : autocomplete . ModelSelect2 ( url = ' users:active-users-autocomplete ' , attrs = { ' data-minimum-input-length ' : 2 } ) , ' amount ' : forms . TextInput }
2018-11-22 21:52:15 +00:00
2018-10-05 22:03:02 +00:00
class ProductForm ( forms . ModelForm ) :
class Meta :
model = Product
fields = " __all__ "
2019-01-17 22:25:56 +00:00
widgets = { ' amount ' : forms . TextInput }
2018-10-05 22:03:02 +00:00
class KegForm ( forms . ModelForm ) :
2018-12-17 07:42:44 +00:00
def __init__ ( self , * args , * * kwargs ) :
super ( KegForm , self ) . __init__ ( * args , * * kwargs )
self . fields [ ' pinte ' ] . queryset = Product . objects . filter ( category = Product . P_PRESSION )
self . fields [ ' demi ' ] . queryset = Product . objects . filter ( category = Product . D_PRESSION )
self . fields [ ' galopin ' ] . queryset = Product . objects . filter ( category = Product . G_PRESSION )
2018-10-05 22:03:02 +00:00
class Meta :
model = Keg
2018-12-05 00:43:21 +00:00
exclude = ( " is_active " , )
2019-01-17 22:25:56 +00:00
widgets = { ' amount ' : forms . TextInput }
2018-10-05 22:03:02 +00:00
class MenuForm ( forms . ModelForm ) :
class Meta :
model = Menu
fields = " __all__ "
2019-01-17 22:25:56 +00:00
widgets = { ' amount ' : forms . TextInput }
2018-10-05 22:03:02 +00:00
2018-11-22 21:52:15 +00:00
class SearchProductForm ( forms . Form ) :
product = forms . ModelChoiceField ( queryset = Product . objects . all ( ) , required = True , label = " Produit " , widget = autocomplete . ModelSelect2 ( url = ' gestion:products-autocomplete ' , attrs = { ' data-minimum-input-length ' : 2 } ) )
class SearchMenuForm ( forms . Form ) :
menu = forms . ModelChoiceField ( queryset = Menu . objects . all ( ) , required = True , label = " Menu " , widget = autocomplete . ModelSelect2 ( url = ' gestion:menus-autocomplete ' , attrs = { ' data-minimum-input-length ' : 2 } ) )
2018-10-05 22:03:02 +00:00
class GestionForm ( forms . Form ) :
2018-11-25 12:52:32 +00:00
client = forms . ModelChoiceField ( queryset = User . objects . filter ( is_active = True ) , required = True , label = " Client " , widget = autocomplete . ModelSelect2 ( url = ' users:active-users-autocomplete ' , attrs = { ' data-minimum-input-length ' : 2 } ) )
2018-12-23 22:55:27 +00:00
product = forms . ModelChoiceField ( queryset = Product . objects . filter ( is_active = True ) , required = True , label = " Produit " , widget = autocomplete . ModelSelect2 ( url = ' gestion:active-products-autocomplete ' , attrs = { ' data-minimum-input-length ' : 2 } ) )
2018-11-25 12:52:32 +00:00
class SelectPositiveKegForm ( forms . Form ) :
keg = forms . ModelChoiceField ( queryset = Keg . objects . filter ( stockHold__gt = 0 ) , required = True , label = " Fût " , widget = autocomplete . ModelSelect2 ( url = ' gestion:kegs-positive-autocomplete ' ) )
class SelectActiveKegForm ( forms . Form ) :
2018-12-23 11:54:37 +00:00
keg = forms . ModelChoiceField ( queryset = Keg . objects . filter ( is_active = True ) , required = True , label = " Fût " , widget = autocomplete . ModelSelect2 ( url = ' gestion:kegs-active-autocomplete ' ) )
2018-12-23 12:05:41 +00:00
class PinteForm ( forms . Form ) :
2018-12-23 11:54:37 +00:00
ids = forms . CharField ( widget = forms . Textarea , label = " Numéros " , help_text = " Numéros séparés par un espace. Laissez vide pour utiliser le range. " , required = False )
begin = forms . IntegerField ( label = " Début " , help_text = " Début du range " , required = False )
2019-01-05 23:01:30 +00:00
end = forms . IntegerField ( label = " Fin " , help_text = " Fin du range " , required = False )
class GenerateReleveForm ( forms . Form ) :
begin = forms . DateTimeField ( label = " Date de début " )
end = forms . DateTimeField ( label = " Date de fin " )