|
@@ -5,6 +5,8 @@ from django.shortcuts import render, render_to_response
|
|
|
from django.core.exceptions import PermissionDenied
|
|
|
from django.contrib import messages
|
|
|
|
|
|
+from sendfile import sendfile
|
|
|
+
|
|
|
from coin.billing.models import Invoice
|
|
|
from coin.members.models import Member
|
|
|
from coin.html2pdf import render_as_pdf
|
|
@@ -26,30 +28,10 @@ def invoice_pdf(request, id):
|
|
|
and not request.user.is_superuser:
|
|
|
raise PermissionDenied
|
|
|
|
|
|
- return HttpResponseRedirect(invoice.pdf.url)
|
|
|
-
|
|
|
- # pdf = render_as_pdf('billing/invoice_pdf.html', {"invoice": invoice})
|
|
|
-
|
|
|
- # response = HttpResponse(content_type='application/pdf')
|
|
|
- # response['Content-Disposition'] = 'attachment; filename="facture.pdf"'
|
|
|
-
|
|
|
- # response.write(invoice.pdf)
|
|
|
-
|
|
|
- # return response
|
|
|
-
|
|
|
-# def invoice_validate(request, id):
|
|
|
-# """
|
|
|
-# Valide la facture
|
|
|
-# """
|
|
|
-# #TODO change this by perm : has_validate_invoice_permission
|
|
|
-# if request.user.is_superuser:
|
|
|
-# invoice = get_invoice_from_id_or_number(id)
|
|
|
-# invoice.validate()
|
|
|
-# messages.success(request, 'La facture a été validée.')
|
|
|
-# else:
|
|
|
-# messages.error(request, 'Vous n\'avez pas l\'autorisation de valider une facture.')
|
|
|
+ pdf_filename = 'Facture_%s.pdf' % invoice.number
|
|
|
|
|
|
-# return HttpResponseRedirect(request.META["HTTP_REFERER"])
|
|
|
+ return sendfile(request, invoice.pdf.path,
|
|
|
+ attachment=True, attachment_filename=pdf_filename)
|
|
|
|
|
|
def invoice(request, id):
|
|
|
"""
|