]> git.plutz.net Git - invoices/commitdiff
gross calculation in doclist
authorPaul Hänsch <paul@plutz.net>
Thu, 30 Nov 2023 11:32:10 +0000 (12:32 +0100)
committerPaul Hänsch <paul@plutz.net>
Thu, 30 Nov 2023 11:32:10 +0000 (12:32 +0100)
doclist.css
doclist.sh

index d8423755759a29e16220054d16682ec02696efad..a3b07de2e0fdab9d0d3e40903b3e1bc5affba2a5 100644 (file)
@@ -30,6 +30,9 @@ section form.invoice {
   background-color: #FFF;
   box-shadow: .25em .25em .5em #888;
 }
+section form.invoice h3 {
+  text-align: center;
+}
 section form.invoice span {
   display: block;
 }
index d31619d24d511777072ad94ac98c7b027ffc68ad..f875b1571e729723b443beec6983069a1db152f5 100644 (file)
@@ -3,18 +3,26 @@
 printf '%s\r\n' "Content-Type: text/html; charset=utf-8" ""
 
 list_status() {
-  local status=$1
+  local status=$1 id type net tax gross junk
 
   grep -lxF "status    ${status}" "$_DATA"/*.kvd \
   | while read file; do
     id="${file##*/}" id="${id%.kvd}"
     DB3 open "$file" || continue
+    type="$(DB3 get type)"
+    [ -d "${_EXEC}/${type}/" ] \
+    && . "${_EXEC}/${type}/form.sh"
+
+    read net tax gross junk <<-EOF
+       $(sumtotal)
+       EOF
+
     cat <<-EOF
        [form .invoice method=POST
-         [h3 [a href="/doc/${id}" . $(DB3 get number || printf ????)]]
+         [h3 [a href="/doc/${id}" . $(DB3 get invnum |grep -xE '.+' || printf ????)]]
          [span .date . $(DB3 get date || printf ????-??-??)]
          [span .rcpt . $(DB3 get rcpt || printf ?)]
-         [span .total . $(DB3 get total || printf '?') €]
+         [span .total . ${gross} €]
          [select name=status
            [option value=open   $([ "$status" = open   ] && printf selected=selected) . $(_ Open)]
            [option value=sent   $([ "$status" = sent   ] && printf selected=selected) . $(_ Sent)]