Browse Source

Fix génération de facture pdf

fix_front_profil
Hugo LEVY-FALK 8 years ago
parent
commit
be7f8753f0
  1. 6
      cotisations/views.py

6
cotisations/views.py

@ -191,11 +191,13 @@ def new_facture_pdf(request):
invoice_form = NewFactureFormPdf(request.POST or None)
if request.user.is_class_club:
articles_formset = formset_factory(SelectClubArticleForm)(
request.POST or None
request.POST or None,
form_kwargs={'user': request.user}
)
else:
articles_formset = formset_factory(SelectUserArticleForm)(
request.POST or None
request.POST or None,
form_kwargs={'user': request.user}
)
if invoice_form.is_valid() and articles_formset.is_valid():
# Get the article list and build an list out of it

Loading…
Cancel
Save