background-color: #FFF;
box-shadow: .25em .25em .5em #888;
}
+section form.invoice h3 {
+ text-align: center;
+}
section form.invoice span {
display: block;
}
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)]