}
list_invoices(){
- local sender client date number vat vatrate iban bic hourly
+ local sender client date number vat vatrate iban bic hourly \
+ taxtype nett tax gross total
+
[ -d invoices/ ] && for i in invoices/*; do
read -r sender client date number vat vatrate<<-EOF
$(sed q "$i")
&& date="$(date -d "@${date#date=}" +%x)" \
|| date="(unset)"
+ read -r taxtype nett tax gross <<-EOF
+ $(invoice_total "${i#invoices/}")
+ EOF
+ case $taxtype in
+ nett) total="${nett} € + VAT";;
+ gross) total="${gross} € incl. VAT";;
+ *) total="${gross} €";;
+ esac
+
printf '[div .invoice
[h2
%s]
[label From:] %s [label To:] %s [label on] %s
- [label Amount:] %.2f €
+ [label Amount:] %s
[a href="/invoices/%s" Edit]
]' "$(UNSTRING "${number#number=}" |HTML)" \
"$(UNSTRING "${sender#address=}" |sed q |HTML)" \
"$(UNSTRING "${client#address=}" |sed q |HTML)" "$(HTML "$date")" \
- "$(invoice_total "${i#invoices/}")" \
+ "$total" \
"$(HTML ${i#invoices/})"
done
}
edit_invoice(){
- local id="$1" sender client date number vat vatrate caddress hourly total
+ local id="$1" sender client date number vat vatrate caddress hourly \
+ taxtype nett tax gross
+
if [ -f "invoices/$id" ]; then
read -r sender client date number vat vatrate<<-EOF
$(sed q "invoices/$id")
hourly="${hourly#hourly=}"
tid="$(tid "invoices/$id")"
- total=$(invoice_total "$id")
+
+ read -r taxtype nett tax gross <<-EOF
+ $(invoice_total "$id")
+ EOF
cat <<-EOF
[form method="POST" action="/update_invoice"
done
)
[tr [td colspan=4
- $(case $vat in
- vat=nett)
- awk "BEGIN {
- printf \"Sum: %7.2f €<br/> + VAT: %7.2f €<br/> [strong Total:] %7.2f €\",
- $total, int($total * $vatrate + .5) / 100,
- $total + int($total * $vatrate + .5) / 100
- }" ;;
- vat=gross)
- awk "BEGIN {
- printf \"[strong Total:] %7.2f €<br/> incl VAT: %7.2f €<br/>+ nett: %7.2f €\",
- $total, int($total / (100 + $vatrate) * $vatrate * 100 + .5) / 100,
- $total - int($total / (100 + $vatrate) * $vatrate * 100 + .5) / 100
- }" ;;
- *) printf '[strong Total:] %.2f €' "$total" ;;
+ $(case $taxtype in
+ (nett) printf 'Sum: %7.2f €[br] + VAT: %7.2f €[br] [strong Total:] %7.2f €' \
+ $nett $tax $gross ;;
+ (gross) printf '[strong Total:] %7.2f €[br] incl. nett: %7.2f €[br] + VAT: %7.2f €' \
+ $gross $nett $tax ;;
+ (*) printf '[strong Total:] %.2f €' $nett ;;
esac)
]]
]
[ "${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=0
total=$((total + hours * hourly))
done
- printf %.2f\\n "$total"
+ case $vat in
+ vat=nett)
+ awk "BEGIN {
+ printf \"nett %.2f %.2f %.2f\",
+ $total, int($total * $vatrate + .5) / 100,
+ $total + int($total * $vatrate + .5) / 100
+ }" ;;
+ vat=gross)
+ awk "BEGIN {
+ printf \"gross %.2f %.2f %.2f\",
+ $total - int($total / (100 + $vatrate) * $vatrate * 100 + .5) / 100,
+ int($total / (100 + $vatrate) * $vatrate * 100 + .5) / 100, $total
+ }" ;;
+ *)
+ awk "BEGIN {
+ printf \"notax %.2f %.2f %.2f\",
+ $total, 0, $total
+ }" ;;
+ esac
}
else
printf %.2f\\n 0
}
odt_content(){
- local id="$1" sender="$2" client="$3" date="$4" number="$5" vat="$6" vatrate="$7" hourly="$8"
+ local id="$1" sender="$2" client="$3" date="$4" number="$5" vat="$6" vatrate="$7" hourly="$8" \
+ taxtype nett tax gross
+ read -r taxtype nett tax gross <<-EOF
+ $(invoice_total "$id")
+ EOF
cat <<-EOF
<?xml version="1.0" encoding="UTF-8"?>
-->$(case $vat in
(smallbusiness)
printf '<text:line-break/>Gemäß Kleinunternehmerregelung (§19 Umsatzsteuergesetz) wird keine Umsatzsteuer berechnet.';;
- (nett) printf 'zuzüglich %i%% MWSt.' "$vatrate";;
- (gross) printf '(einschließlich %i\% MWSt.)' "$vatrate";;
+ (nett) printf 'zuzüglich %i%% MwSt.' "$vatrate";;
+ (gross) printf '(einschließlich %i%% MwSt.)' "$vatrate";;
esac)<!--
--></text:p>
<text:p text:style-name="P3"/>
<table:table-cell table:style-name="Table1.6" office:value-type="string">
<text:p text:style-name="P6"/>
</table:table-cell>
- <table:table-cell table:style-name="Table1.6" office:value-type="string">
- <text:p text:style-name="P6"/>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.6" office:value-type="string">
- <text:p text:style-name="P7">Summe:</text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.6" office:value-type="string">
- <text:p text:style-name="P7">$(invoice_total "$id") €</text:p>
- </table:table-cell>
+ $(case $taxtype in
+ (nett) cat <<-TCELL
+ <table:table-cell table:style-name="Table1.6" table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P5">
+ Zwischensumme:<text:line-break/>
+ zzgl. ${vatrate}% MwSt.:<text:line-break/>
+ </text:p>
+ <text:p text:style-name="P7">zu zahlender Betrag:</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table1.6" office:value-type="string">
+ <text:p text:style-name="P5">
+ ${nett} €<text:line-break/>
+ ${tax} €<text:line-break/>
+ </text:p>
+ <text:p text:style-name="P7">${gross} €</text:p>
+ </table:table-cell>
+ TCELL
+ ;;
+ (gross) cat <<-TCELL
+ <table:table-cell table:style-name="Table1.6" table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P7">zu zahlender Betrag:</text:p>
+ <text:p text:style-name="P5">
+ <text:line-break/>
+ enthaltene MwSt (${vatrate}%):<text:line-break/>
+ enthaltener Netto-Betrag:<!--
+ --></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table1.6" office:value-type="string">
+ <text:p text:style-name="P7">${gross} €</text:p>
+ <text:p text:style-name="P5">
+ <text:line-break/>
+ ${tax} €<text:line-break/>
+ ${nett} €<!--
+ --></text:p>
+ </table:table-cell>
+ TCELL
+ ;;
+ (*) cat <<-TCELL
+ <table:table-cell table:style-name="Table1.6" table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P7">zu zahlender Betrag:</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table1.6" office:value-type="string">
+ <text:p text:style-name="P7">${gross} €</text:p>
+ </table:table-cell>
+ TCELL
+ ;;
+ esac)
</table:table-row>
</table:table>
</office:text>