From 198ee6ea09c32f4566090018310311f041007630 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Fri, 20 Dec 2024 22:13:53 -0800
Subject: [PATCH] Just some stuff
---
docs/configuration.md | 6 ++++
paperless.conf.example | 1 +
src/paperless_einvoice/parsers.py | 30 ++++++++++++++-----
.../templates/invoice.j2.html | 15 +++-------
4 files changed, 33 insertions(+), 19 deletions(-)
diff --git a/docs/configuration.md b/docs/configuration.md
index a329bf844..cb3fa5c30 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -198,6 +198,12 @@ Docker, this may be the `environment` key of the webserver or a
containing the configuration parameters. Be sure to use the correct format
and watch out for indentation if editing the YAML file.
+#### [`PAPERLESS_EINVOICE_PARSER_ENABLED=`](#PAPERLESS_EINVOICE_PARSER_ENABLED) {#PAPERLESS_EINVOICE_PARSER_ENABLED}
+
+: Enable (or disable) the e-invoice parser. Note that this feature requires Tika to be enabled.
+
+ Defaults to false.
+
## Paths and folders
#### [`PAPERLESS_CONSUMPTION_DIR=`](#PAPERLESS_CONSUMPTION_DIR) {#PAPERLESS_CONSUMPTION_DIR}
diff --git a/paperless.conf.example b/paperless.conf.example
index 63ee7be22..b7b3420ab 100644
--- a/paperless.conf.example
+++ b/paperless.conf.example
@@ -87,6 +87,7 @@
#PAPERLESS_TIKA_ENABLED=false
#PAPERLESS_TIKA_ENDPOINT=http://localhost:9998
#PAPERLESS_TIKA_GOTENBERG_ENDPOINT=http://localhost:3000
+#PAPERLESS_EINVOICE_PARSER_ENABLED=true
# Binaries
diff --git a/src/paperless_einvoice/parsers.py b/src/paperless_einvoice/parsers.py
index e46e941c6..8df984783 100644
--- a/src/paperless_einvoice/parsers.py
+++ b/src/paperless_einvoice/parsers.py
@@ -1,7 +1,7 @@
from pathlib import Path
from django.conf import settings
-from drafthorse.models.document import Document
+from drafthorse.models.document import Document as InvoiceDocument
from gotenberg_client import GotenbergClient
from gotenberg_client.options import MarginType
from gotenberg_client.options import MarginUnitType
@@ -22,6 +22,10 @@ class EInvoiceDocumentParser(TikaDocumentParser):
"""
logging_name = "paperless.parsing.einvoice"
+ template_loader = FileSystemLoader(
+ searchpath=Path(__file__).parent / "templates",
+ )
+ template_env = Environment(loader=template_loader)
def convert_to_pdf(self, document_path: Path, file_name):
pdf_path = Path(self.tempdir) / "convert.pdf"
@@ -29,15 +33,25 @@ class EInvoiceDocumentParser(TikaDocumentParser):
with document_path.open("r") as f:
xml = f.read().encode("utf-8")
- invoice = Document.parse(xml)
+ invoice = InvoiceDocument.parse(xml)
context = {
- "id": invoice.trade.agreement.seller.name,
+ "id": invoice.header.id,
+ "seller_name": invoice.trade.agreement.seller.name,
+ "seller_address": invoice.trade.agreement.seller.address,
+ "buyer_name": invoice.trade.agreement.buyer.name,
+ "buyer_address": invoice.trade.agreement.buyer.address,
+ "issue_date": invoice.header.issue_date_time,
+ "items": [
+ {
+ "name": item.product.name,
+ "description": item.product.description,
+ # "quantity": item.product.quantity,
+ "subtotal": item.settlement.monetary_summation.total_amount,
+ }
+ for item in invoice.trade.items.children # TODO: Fix this
+ ],
}
- templateLoader = FileSystemLoader(
- searchpath=Path(__file__).parent / "templates",
- )
- templateEnv = Environment(loader=templateLoader)
- template = templateEnv.get_template("invoice.j2.html")
+ template = self.template_env.get_template("invoice.j2.html")
html_file = Path(self.tempdir) / "invoice_as_html.html"
html_file.write_text(
template.render(context),
diff --git a/src/paperless_einvoice/templates/invoice.j2.html b/src/paperless_einvoice/templates/invoice.j2.html
index 23589b203..de03c5cce 100644
--- a/src/paperless_einvoice/templates/invoice.j2.html
+++ b/src/paperless_einvoice/templates/invoice.j2.html
@@ -10,10 +10,10 @@
Rechnung
- westnetz w.V., Karl-Heine-Str. 93, 04229 Leipzig
+ {{ seller_name }}: {{ seller_address }}
- {{ address | join("
") }}
+ {{ buyer_name }}: {{ buyer_address }}
@@ -25,8 +25,7 @@
{{ id }} |
- {{ period }} |
- {{ date }} |
+ {{ issue_date }} |
@@ -36,16 +35,12 @@
Pos. |
Beschreibung |
- Einzelpreis |
- Anzahl |
Gesamtpreis |
{% for item in items %}
- {{ item.item }} |
+ {{ item.name }} |
{{ item.description }} |
- {{ item.price }} |
- {{ item.quantity }} |
{{ item.subtotal }} |
{% endfor %}
@@ -74,7 +69,5 @@
Diese Rechnung wurde maschinell erstellt und ist auch ohne Unterschrift gültig.
-
-