Invoice generation: Add way for renderers to signal they are not ready (#5905)

This commit is contained in:
Raphael Michel
2026-03-09 13:52:11 +01:00
committed by GitHub
parent c07ba31307
commit 347337e76f
2 changed files with 6 additions and 1 deletions

View File

@@ -148,6 +148,10 @@ class NumberedCanvas(Canvas):
self.restoreState()
class InvoiceNotReadyException(Exception):
pass
class BaseInvoiceRenderer:
"""
This is the base class for all invoice renderers.