InvoiceExporter: Set repeatable_read = False

This commit is contained in:
Raphael Michel
2025-10-07 13:18:03 +02:00
parent 15cbb3a416
commit 943f594b6b

View File

@@ -125,6 +125,7 @@ class InvoiceExporter(InvoiceExporterMixin, BaseExporter):
identifier = 'invoices'
verbose_name = _('All invoices')
description = _('Download all invoices created by the system as a ZIP file of PDF files.')
repeatable_read = False
def render(self, form_data: dict, output_file=None):
qs = self.invoices_queryset(form_data).filter(shredded=False)