[label for=date Date:]
[input #date name=date value="${date}" placeholder="YYYY-MM-TT"]
+ <!--
[label for=hourly Hourly Rate:]
[input #hourly type=number name=hourly value="${hourly}"]
[radio "vat" "gross" #vatgross $([ "${vat#vat=}" = gross ] && printf checked)]
[label for=vatgross Gross]
[label for=vatrate VAT Rate: [input type=number name="vatrate" value="${vatrate}"]% ]
+ -->
[table
- [tr [th Date] [th Work] [th Hours] [th Price] ]
+ [tr [th Stück] [th Leistung] [th Stückpreis] [th Summe] ]
$({ sed 1d "invoices/$id"; printf 'time= work= hours=\n'; } \
- | while read -r time work hours x; do
- hours="$(UNSTRING "${hours#hours=}" \
- |grep -m1 -xE '\.[0-9]+|[0-9]+\.?[0-9]*' || printf 0)"
+ | while read -r time work hours pcs ppp x; do
+ 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)"
printf '[tr
- [td [textarea name=time
-%s] ]
+ [td [input type=number name=pieces value="%i" step=1] ]
[td [textarea name=work
%s] ]
- [td [input type=number name=hours value="%g" step=any] ]
+ [td [input type=number name=price value="%g" step=any] ]
[td %s]
- ]' "$(UNSTRING "${time#time=}" |HTML)" \
- "$(UNSTRING "${work#work=}" |HTML)" \
- "$hours" \
- "$(awk "BEGIN { printf \"%.2f €\", ${hours} * ${hourly}; }")"
+ ]' "$pcs" "$(UNSTRING "${work#work=}" |HTML)" "$ppp" \
+ "$(awk "BEGIN { printf \"%.2f €\", ${pcs} * ${ppp}; }")"
done
)
[tr [td colspan=4
$(sed q "invoices/$id")
EOF
- [ "${hourly#hourly=}" -gt 0 ] 2>&- \
- && hourly="${hourly#hourly=}" \
- || hourly=0
[ "${vatrate#vatrate=}" -ge 0 ] 2>&- \
&& vatrate="${vatrate#vatrate=}" \
|| vatrate=19
sed 1d "invoices/$id" \
- | { while read -r time work hours; do
- [ "${hours#hours=}" ] 2>&- \
- && hours="${hours#hours=}" \
- || hours=0
- total=$(awk "BEGIN { printf \"%.2f\", ${total} + ${hours} * ${hourly}; }")
+ | { while read -r time work hours pcs ppp; do
+ 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}; }")
done
case $vat in
vat=nett)
if [ "$(POST update)" = "$tid" ] || [ "$(POST genpdf)" = "$tid" ]; then
mkdir -p invoices
- for n in "$(POST_COUNT time)" "$(POST_COUNT work)" "$(POST_COUNT hours)"; do
+ for n in "$(POST_COUNT time)" "$(POST_COUNT work)" "$(POST_COUNT hours)" "$(POST_COUNT pieces)" "$(POST_COUNT price)"; do
[ "$n" -gt "$extra" ] && extra="$n"
done
"$(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\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)" \
- | grep -xvF 'time=\ work=\ hours=0'
+ "$(POST pieces $n |STRING)" "$(POST price $n |STRING)" \
+ | grep -xvF 'time=\ work=\ hours=0 pcs=1 ppp=0'
done
} >"invoices/$id"