From: Paul Hänsch Date: Fri, 8 Dec 2023 12:56:30 +0000 (+0100) Subject: list sort order and display, default filename X-Git-Url: https://git.plutz.net/?a=commitdiff_plain;h=8d949819123e5c1d62b6f8e196cc3a0a570ad91b;p=invoices list sort order and display, default filename --- diff --git a/doclist.sh b/doclist.sh index d3df3e1..0472ec7 100755 --- a/doclist.sh +++ b/doclist.sh @@ -6,7 +6,7 @@ list_status() { local status=$1 id type net tax gross junk grep -lxF "status ${status}" "$_DATA"/*.kvd \ - | sort \ + | sort -r \ | while read file; do id="${file##*/}" id="${id%.kvd}" DB3 open "$file" || continue @@ -18,7 +18,7 @@ list_status() { [form .invoice method=POST [h3 [a href="${_BASE}/doc/${id}" . $(DB3 get invnum |HTML)]] [span .date . $(DB3 get date |HTML)] - [span .rcpt . $(DB3 get rcpt |HTML)] + [span .rcpt . $(DB3 get rcpt |sed -E 's/ *;.*//g' |HTML)] [span .total . ${gross} €] [select name=status [option value=open $([ "$status" = open ] && printf selected=selected) . $(_ Open)]