]> git.plutz.net Git - invoices/commitdiff
pdf export function
authorPaul Hänsch <paul@plutz.net>
Wed, 29 Nov 2023 23:07:10 +0000 (00:07 +0100)
committerPaul Hänsch <paul@plutz.net>
Wed, 29 Nov 2023 23:07:10 +0000 (00:07 +0100)
invoices.cgi

index bbf85d0574bc16285d26461760179129fe63b78d..22d3da32739ab27a3c9fa3829028b5b90781b3b1 100755 (executable)
@@ -57,6 +57,19 @@ serverkey' >.gitignore
     fi
     REDIRECT "$PATH_INFO"
     ;;
+  pdf_export)
+    id="$(POST id)" file="$_DATA/${id}.kvd" tmp="$(randomid)"
+    type="$(DBM "$file" get type)"
+    [ -d "${_EXEC}/${type}/" ] \
+    && . "${_EXEC}/${type}/print.sh"
+
+    yield_html >"$_DATA/export/${tmp}.html"
+    lowriter --convert-to pdf --outdir "export/" "export/${tmp}.html" >/dev/null
+    pdftk "export/${tmp}.pdf" background "$_EXEC/$type/Background.pdf" output "export/${tmp}.pdf"
+    mv -- "export/${tmp}.pdf" "export/${id}.pdf"
+    rm -- "export/${id}.html"
+    redirect "/pdf/${id}/$(URL "${filenamestring}.pdf")"
+    ;;
   *)
     REDIRECT /
     ;;