2017-01-15 23:01:18 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2017 Gabriel Détraz
|
|
|
|
# Copyright © 2017 Goulven Kermarec
|
|
|
|
# Copyright © 2017 Augustin Lemesle
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2016-07-06 19:23:05 +00:00
|
|
|
from django import forms
|
2016-07-09 21:26:17 +00:00
|
|
|
from django.forms import ModelForm, Form
|
2016-07-13 23:54:06 +00:00
|
|
|
from django import forms
|
2016-07-14 18:51:45 +00:00
|
|
|
from django.core.validators import MinValueValidator
|
2016-07-13 23:54:06 +00:00
|
|
|
from .models import Article, Paiement, Facture, Banque, Vente
|
2016-07-06 19:23:05 +00:00
|
|
|
|
|
|
|
class NewFactureForm(ModelForm):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(NewFactureForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['cheque'].required = False
|
|
|
|
self.fields['banque'].required = False
|
|
|
|
self.fields['cheque'].label = 'Numero de chèque'
|
|
|
|
self.fields['banque'].empty_label = "Non renseigné"
|
|
|
|
self.fields['paiement'].empty_label = "Séléctionner un moyen de paiement"
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Facture
|
2016-07-13 23:54:06 +00:00
|
|
|
fields = ['paiement','banque','cheque']
|
2016-07-06 19:23:05 +00:00
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
cleaned_data=super(NewFactureForm, self).clean()
|
|
|
|
paiement = cleaned_data.get("paiement")
|
|
|
|
cheque = cleaned_data.get("cheque")
|
|
|
|
banque = cleaned_data.get("banque")
|
2016-07-14 11:55:46 +00:00
|
|
|
if not paiement:
|
2017-07-18 21:57:57 +00:00
|
|
|
raise forms.ValidationError("Le moyen de paiement est obligatoire.")
|
2017-07-22 15:57:58 +00:00
|
|
|
elif paiement.type_paiement == "check" and not (cheque and banque):
|
2017-07-18 21:57:57 +00:00
|
|
|
raise forms.ValidationError("Le numéro de chèque et la banque sont obligatoires.")
|
2016-07-06 19:23:05 +00:00
|
|
|
return cleaned_data
|
|
|
|
|
2017-06-26 17:23:01 +00:00
|
|
|
class CreditSoldeForm(NewFactureForm):
|
|
|
|
class Meta(NewFactureForm.Meta):
|
|
|
|
model = Facture
|
|
|
|
fields = ['paiement','banque','cheque']
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(CreditSoldeForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['paiement'].queryset = Paiement.objects.exclude(moyen='solde').exclude(moyen="Solde")
|
|
|
|
|
|
|
|
|
|
|
|
montant = forms.DecimalField(max_digits=5, decimal_places=2, required=True)
|
|
|
|
|
2016-07-13 23:54:06 +00:00
|
|
|
class SelectArticleForm(Form):
|
2016-07-14 11:55:46 +00:00
|
|
|
article = forms.ModelChoiceField(queryset=Article.objects.all(), label="Article", required=True)
|
2016-07-14 18:51:45 +00:00
|
|
|
quantity = forms.IntegerField(label="Quantité", validators=[MinValueValidator(1)], required=True)
|
2016-07-13 23:54:06 +00:00
|
|
|
|
2016-07-09 21:26:17 +00:00
|
|
|
class NewFactureFormPdf(Form):
|
|
|
|
article = forms.ModelMultipleChoiceField(queryset=Article.objects.all(), label="Article")
|
2016-07-14 18:51:45 +00:00
|
|
|
number = forms.IntegerField(label="Quantité", validators=[MinValueValidator(1)])
|
2016-07-09 21:26:17 +00:00
|
|
|
paid = forms.BooleanField(label="Payé", required=False)
|
|
|
|
dest = forms.CharField(required=True, max_length=255, label="Destinataire")
|
2016-07-13 23:54:06 +00:00
|
|
|
chambre = forms.CharField(required=False, max_length=10, label="Adresse")
|
|
|
|
fid = forms.CharField(required=True, max_length=10, label="Numéro de la facture")
|
2016-07-09 21:26:17 +00:00
|
|
|
|
2016-07-06 19:23:05 +00:00
|
|
|
class EditFactureForm(NewFactureForm):
|
|
|
|
class Meta(NewFactureForm.Meta):
|
2016-07-14 20:29:30 +00:00
|
|
|
fields = ['paiement','banque','cheque','user']
|
2016-07-06 19:23:05 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(EditFactureForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['user'].label = 'Adherent'
|
|
|
|
self.fields['user'].empty_label = "Séléctionner l'adhérent propriétaire"
|
2016-07-14 20:29:30 +00:00
|
|
|
|
|
|
|
class TrezEditFactureForm(EditFactureForm):
|
|
|
|
class Meta(EditFactureForm.Meta):
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(TrezEditFactureForm, self).__init__(*args, **kwargs)
|
2016-07-14 18:51:45 +00:00
|
|
|
self.fields['valid'].label = 'Validité de la facture'
|
2017-07-18 21:57:57 +00:00
|
|
|
self.fields['control'].label = 'Contrôle de la facture'
|
2016-07-14 20:29:30 +00:00
|
|
|
|
2016-07-06 19:23:05 +00:00
|
|
|
|
|
|
|
class ArticleForm(ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Article
|
|
|
|
fields = '__all__'
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(ArticleForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['name'].label = "Désignation de l'article"
|
|
|
|
|
|
|
|
class DelArticleForm(ModelForm):
|
|
|
|
articles = forms.ModelMultipleChoiceField(queryset=Article.objects.all(), label="Articles actuels", widget=forms.CheckboxSelectMultiple)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
fields = ['articles']
|
|
|
|
model = Article
|
|
|
|
|
|
|
|
class PaiementForm(ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Paiement
|
2017-07-22 15:57:58 +00:00
|
|
|
fields = ['moyen', 'type_paiement']
|
2016-07-06 19:23:05 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(PaiementForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['moyen'].label = 'Moyen de paiement à ajouter'
|
2017-07-22 15:57:58 +00:00
|
|
|
self.fields['type_paiement'].label = 'Type de paiement à ajouter'
|
2016-07-06 19:23:05 +00:00
|
|
|
|
|
|
|
class DelPaiementForm(ModelForm):
|
|
|
|
paiements = forms.ModelMultipleChoiceField(queryset=Paiement.objects.all(), label="Moyens de paiement actuels", widget=forms.CheckboxSelectMultiple)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
exclude = ['moyen']
|
|
|
|
model = Paiement
|
|
|
|
|
2016-07-06 20:20:49 +00:00
|
|
|
class BanqueForm(ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Banque
|
|
|
|
fields = ['name']
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(BanqueForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['name'].label = 'Banque à ajouter'
|
|
|
|
|
|
|
|
class DelBanqueForm(ModelForm):
|
|
|
|
banques = forms.ModelMultipleChoiceField(queryset=Banque.objects.all(), label="Banques actuelles", widget=forms.CheckboxSelectMultiple)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
exclude = ['name']
|
|
|
|
model = Banque
|