]> git.plutz.net Git - invoices/commitdiff
use form variables
authorPaul Hänsch <paul@plutz.net>
Fri, 1 Dec 2023 11:34:09 +0000 (12:34 +0100)
committerPaul Hänsch <paul@plutz.net>
Fri, 1 Dec 2023 11:34:09 +0000 (12:34 +0100)
doclist.css
doclist.sh

index a3b07de2e0fdab9d0d3e40903b3e1bc5affba2a5..511f6c2f76ff53cd92a801ed53162fe482ed3185 100644 (file)
@@ -41,7 +41,8 @@ section form.invoice.new {
   padding-top: .5em;
 }
 section form.invoice.new label[for=new_type] {
-  display: none;
+  display: block;
+  font-weight: bold;
 }
 
 @media(min-width: 720pt) {
index aeae79ffaf33a49bba34a1785f6177f419f54609..44ba533c92e80e7e848f48adf1140f941c60a2d9 100644 (file)
@@ -13,15 +13,11 @@ list_status() {
     [ -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 invnum |grep -xE '.+' || printf ????)]]
-         [span .date . $(DB3 get date || printf ????-??-??)]
-         [span .rcpt . $(DB3 get rcpt || printf ?)]
+         [h3 [a href="/doc/${id}" . $(DB3 get invnum |HTML)]]
+         [span .date . $(DB3 get date |HTML)]
+         [span .rcpt . $(DB3 get rcpt |HTML)]
          [span .total . ${gross} €]
          [select name=status
            [option value=open   $([ "$status" = open   ] && printf selected=selected) . $(_ Open)]
@@ -51,7 +47,6 @@ list_status() {
     [form .invoice .new method=POST
       [label for=new_type . $(_ Type):]
       [select #new_type name=type
-        [option selected=selected]
         $(for tmpl in "$_EXEC"/tmpl_*/; do
           tmpl="${tmpl%/}" tmpl="${tmpl##*/}"
           printf '[option value=%s . %s]' "$tmpl" "$(_ "$tmpl")"