From: Paul Hänsch Date: Wed, 29 Nov 2023 23:07:10 +0000 (+0100) Subject: pdf export function X-Git-Url: https://git.plutz.net/?a=commitdiff_plain;h=584b499a6847e8b804bca9ab791e77cc00cab348;p=invoices pdf export function --- diff --git a/invoices.cgi b/invoices.cgi index bbf85d0..22d3da3 100755 --- a/invoices.cgi +++ b/invoices.cgi @@ -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 / ;;