]> git.plutz.net Git - invoices/commitdiff
PDF export functions
authorPaul Hänsch <paul@plutz.net>
Thu, 30 Nov 2023 16:20:47 +0000 (17:20 +0100)
committerPaul Hänsch <paul@plutz.net>
Thu, 30 Nov 2023 16:20:47 +0000 (17:20 +0100)
doclist.sh
invoices.cgi

index f875b1571e729723b443beec6983069a1db152f5..aeae79ffaf33a49bba34a1785f6177f419f54609 100644 (file)
@@ -34,6 +34,7 @@ list_status() {
          [input type=hidden name=tid value="$(transid "$file")"]
          [input type=hidden name=session_key value="$SESSION_KEY"]
          [button type=submit name=action value=update_invoice . $(_ Update)]
+         [button type=submit name=action value=pdf_export . $(_ PDF)]
        ]
        EOF
   done
index 35847fe964707a5759bd808e2c7ecd2b25ab1d83..ae97b17b0aa2548b661bbb0af2ca7f2e404bbcad 100755 (executable)
@@ -63,16 +63,22 @@ serverkey' >.gitignore
     ;;
   pdf_export)
     id="$(POST id)" file="$_DATA/${id}.kvd" tmp="$(randomid)"
-    type="$(DBM "$file" get type)"
-    [ -d "${_EXEC}/${type}/" ] \
-    && . "${_EXEC}/${type}/print.sh"
+    DB3 open "$file"
+    type="$(DB3 get type)"
+    . "${_EXEC}/${type}/form.sh"
+    . "${_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"
+    yield_html >"$_DATA/export/${id}.html"
+    lowriter --convert-to pdf --outdir "export/" "export/${id}.html" >/dev/null
+    if [ -f "$_EXEC/$type/print.pdf" ]; then
+      pdftk "export/${id}.pdf" burst output "export/${id}_%04d.pdf"
+      pdftk "export/${id}_0001.pdf" background "$_EXEC/$type/print.pdf" output "export/${tmp}.pdf"
+      mv -- "export/${tmp}.pdf" "export/${id}_0001.pdf"
+      pdftk "export/${id}"_*.pdf cat output "export/${id}.pdf"
+      rm -- "export/${id}"_*.pdf "export/doc_data.txt"
+    fi
     rm -- "export/${id}.html"
-    redirect "/pdf/${id}/$(URL "${filenamestring}.pdf")"
+    REDIRECT "/pdf/${id}/$(URL "${filenamestring}.pdf")"
     ;;
   *)
     REDIRECT /
@@ -94,6 +100,10 @@ esac
     && . "${_EXEC}/${type}/form.sh"
     yield_form
     ;;
+  /pdf/*/*.pdf)
+    id="${PATH_INFO#/pdf/}" id="${id%%/*}"
+    FILE "$_DATA/export/${id}.pdf"
+    ;;
   *) REDIRECT /
     ;;
 esac