only show creditnotes belonging to the logged in user
This commit is contained in:
parent
1e337ec8cd
commit
cc771d20f1
|
@ -359,6 +359,10 @@ class CreditNoteListView(LoginRequiredMixin, ListView):
|
||||||
template_name = "creditnote_list.html"
|
template_name = "creditnote_list.html"
|
||||||
context_object_name = 'creditnotes'
|
context_object_name = 'creditnotes'
|
||||||
|
|
||||||
|
def get_queryset(self):
|
||||||
|
queryset = super().get_queryset()
|
||||||
|
return queryset.filter(user=self.request.user)
|
||||||
|
|
||||||
|
|
||||||
class DownloadCreditNoteView(LoginRequiredMixin, EnsureUserOwnsCreditNoteMixin, EnsureCreditNoteHasPDFMixin, SingleObjectMixin, View):
|
class DownloadCreditNoteView(LoginRequiredMixin, EnsureUserOwnsCreditNoteMixin, EnsureCreditNoteHasPDFMixin, SingleObjectMixin, View):
|
||||||
model = CreditNote
|
model = CreditNote
|
||||||
|
|
Loading…
Reference in a new issue