From 5a8a52ea75fa9e0830a5e96f41c5b57ba878c57c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20H=C3=A4nsch?= Date: Wed, 8 Nov 2023 16:26:57 +0100 Subject: [PATCH] smaller fixes --- invoices.sh | 8 ++++---- odtgen.sh | 15 +++++++++++---- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/invoices.sh b/invoices.sh index 6bbe5b5..0fc3a7e 100755 --- a/invoices.sh +++ b/invoices.sh @@ -172,7 +172,7 @@ $({ sed 1d "invoices/$id"; printf 'time= work= hours=\n'; } \ pcs="$(UNSTRING "${pcs#pcs=}" \ |grep -m1 -xE '[0-9]+' || printf 1)" ppp="$(UNSTRING "${ppp#ppp=}" \ - |grep -m1 -xE '-?(\.[0-9]+|[0-9]+\.?[0-9]*)' || printf 0)" + |grep -m1 -xEe '-?(\.[0-9]+|[0-9]+\.?[0-9]*)' || printf 0)" printf '[tr [td [input type=number name=pieces value="%i" step=1] ] [td [textarea name=work @@ -224,7 +224,7 @@ invoice_total(){ pcs="$(UNSTRING "${pcs#pcs=}" \ |grep -m1 -xE '[0-9]+' || printf 1)" ppp="$(UNSTRING "${ppp#ppp=}" \ - |grep -m1 -xE '-?(\.[0-9]+|[0-9]+\.?[0-9]*)' || printf 0)" + |grep -m1 -xEe '-?(\.[0-9]+|[0-9]+\.?[0-9]*)' || printf 0)" total=$(awk "BEGIN { printf \"%.2f\", ${total} + ${pcs} * ${ppp}; }") done case $vat in @@ -272,11 +272,11 @@ update_invoice(){ "$(POST hourly |grep -m1 -xE '[0-9]+')" \ "$(POST status |grep -m1 -xE 'open|sent|resent|paid|cancelled')" for n in $(seq 1 $extra); do - printf 'time=%s work=%s hours=%s pcs=%s ppp=%s\n' \ + printf 'time=%s work=%s hours=%s pcs=%s ppp=%s\n' \ "$(POST time $n |STRING)" "$(POST work $n |STRING)" \ "$(POST hours $n |STRING)" \ "$(POST pieces $n |STRING)" "$(POST price $n |STRING)" \ - | grep -xvF 'time=\ work=\ hours=0 pcs=1 ppp=0' + | grep -xvF 'time=\ work=\ hours=\ pcs=1 ppp=0' done } >"invoices/$id" diff --git a/odtgen.sh b/odtgen.sh index 8dedaef..d72faa4 100755 --- a/odtgen.sh +++ b/odtgen.sh @@ -3,10 +3,15 @@ html_content(){ local id="$1" sender="$2" client="$3" date="$4" number="$5" vat="$6" vatrate="$7" hourly="$8" \ taxtype nett tax gross date_due + + sender="$(HTML "$sender" |sed -E 's/ / • /g;')" + client="$(HTML "$client")" + read -r taxtype nett tax gross <<-EOF $(invoice_total "$id") EOF + [ "$vatrate" ] || vatrate=0 date_due="$((date + 86400 * 28))" cat <<-EOF @@ -77,12 +82,13 @@ html_content(){ $(sed 1d "invoices/$id" |while read -r time work hours pcs ppp; do - work="$(UNSTRING "${work#work=}" |HTML)" + work="$(UNSTRING "${work#work=}" |HTML |sed -E '$!s;$;
;;')" pcs="$(UNSTRING "${pcs#pcs=}" \ |grep -m1 -xE '[0-9]+' || printf 1)" ppp="$(UNSTRING "${ppp#ppp=}" \ - |grep -m1 -xE '-?(\.[0-9]+|[0-9]+\.?[0-9]*)' || printf 0)" - total=$(awk "BEGIN { printf \"%.2f\", ${total} + ${pcs} * ${ppp}; }") + |grep -m1 -xEe '-?(\.[0-9]+|[0-9]+\.?[0-9]*)' || printf 0)" + ppp="$(printf "%.2f" "$ppp")" + total=$(awk "BEGIN { printf \"%.2f\", ${pcs} * ${ppp}; }") cat <<-ROW

@@ -127,7 +133,7 @@ html_content(){ €

- ${nett} + ${tax} €

@@ -195,6 +201,7 @@ html_content(){ genhtml(){ local id="$1" + mkdir -p "export/" read -r sender client date number vat vatrate hourly x<<-EOF $(sed q "invoices/$id") -- 2.39.5