From 3ee1aac9825fc438ad70e3878ce6623cd172139c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20H=C3=A4nsch?= Date: Fri, 1 Dec 2023 12:34:09 +0100 Subject: [PATCH] use form variables --- doclist.css | 3 ++- doclist.sh | 11 +++-------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/doclist.css b/doclist.css index a3b07de..511f6c2 100644 --- a/doclist.css +++ b/doclist.css @@ -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) { diff --git a/doclist.sh b/doclist.sh index aeae79f..44ba533 100644 --- a/doclist.sh +++ b/doclist.sh @@ -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")" -- 2.39.5