mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Lol this works
This commit is contained in:
parent
01706dd391
commit
112b39c4de
@ -8,7 +8,8 @@ from gotenberg_client.options import MarginUnitType
|
|||||||
from gotenberg_client.options import PageMarginsType
|
from gotenberg_client.options import PageMarginsType
|
||||||
from gotenberg_client.options import PageSize
|
from gotenberg_client.options import PageSize
|
||||||
from gotenberg_client.options import PdfAFormat
|
from gotenberg_client.options import PdfAFormat
|
||||||
from jinja2 import Template
|
from jinja2 import FileSystemLoader
|
||||||
|
from jinja2.environment import Environment
|
||||||
|
|
||||||
from documents.parsers import ParseError
|
from documents.parsers import ParseError
|
||||||
from paperless.models import OutputTypeChoices
|
from paperless.models import OutputTypeChoices
|
||||||
@ -32,7 +33,11 @@ class EInvoiceDocumentParser(TikaDocumentParser):
|
|||||||
context = {
|
context = {
|
||||||
"id": invoice.trade.agreement.seller.name,
|
"id": invoice.trade.agreement.seller.name,
|
||||||
}
|
}
|
||||||
template = Template("templates/invoice.j2.html")
|
templateLoader = FileSystemLoader(
|
||||||
|
searchpath=Path(__file__).parent / "templates",
|
||||||
|
)
|
||||||
|
templateEnv = Environment(loader=templateLoader)
|
||||||
|
template = templateEnv.get_template("invoice.j2.html")
|
||||||
html_file = Path(self.tempdir) / "invoice_as_html.html"
|
html_file = Path(self.tempdir) / "invoice_as_html.html"
|
||||||
html_file.write_text(
|
html_file.write_text(
|
||||||
template.render(context),
|
template.render(context),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user