#!/bin/zsh
-odt_manifest(){
- cat <<-EOF
- <?xml version="1.0" encoding="UTF-8"?>
- <manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.2">
- <manifest:file-entry manifest:full-path="/" manifest:version="1.2" manifest:media-type="application/vnd.oasis.opendocument.text"/>
- <manifest:file-entry manifest:full-path="styles.xml" manifest:media-type="text/xml"/>
- <manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
- </manifest:manifest>
- EOF
-}
-
-odt_stylesheet(){
- local iban="$1" bic="$2"
-
- cat <<-EOF
- <?xml version="1.0" encoding="UTF-8"?>
- <office:document-styles xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2">
- <office:styles>
- <style:style style:name="Standard" style:family="paragraph" style:class="text">
- <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
- <style:text-properties style:font-name="DejaVu Sans" fo:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt" style:font-weight-asian="normal"/>
- </style:style>
- </office:styles>
- <office:automatic-styles>
- <style:style style:name="MP1" style:family="paragraph">
- <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
- <style:text-properties style:font-name="DejaVu Sans" fo:font-size="10.5pt" style:font-size-asian="10.5pt" style:font-size-complex="10.5pt"/>
- </style:style>
- <style:style style:name="MT1" style:family="text">
- <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
- </style:style>
- <style:page-layout style:name="Mpm1">
- <style:page-layout-properties fo:page-width="8.2681in" fo:page-height="11.6929in" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.7874in" fo:margin-bottom="0.7874in" fo:margin-left="0.7874in" fo:margin-right="0.7874in" style:writing-mode="lr-tb" style:footnote-max-height="0in">
- <style:footnote-sep style:width="0.0071in" style:distance-before-sep="0.0398in" style:distance-after-sep="0.0398in" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
- </style:page-layout-properties>
- <style:header-style/>
- <style:footer-style>
- <style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.1965in"/>
- </style:footer-style>
- </style:page-layout>
- </office:automatic-styles>
- <office:master-styles>
- <style:master-page style:name="Standard" style:page-layout-name="Mpm1">
- <style:footer>
- <text:p text:style-name="MP1">
- <text:span text:style-name="MT1">Bankverbindung - IBAN:</text:span>
- <text:span>${iban}</text:span>
- <text:span text:style-name="MT1">| BIC:</text:span>
- <text:span>${bic}</text:span>
- </text:p>
- </style:footer>
- </style:master-page>
- </office:master-styles>
- </office:document-styles>
- EOF
-}
-
-odt_content(){
+html_content(){
local id="$1" sender="$2" client="$3" date="$4" number="$5" vat="$6" vatrate="$7" hourly="$8" \
- taxtype nett tax gross
+ taxtype nett tax gross date_due
read -r taxtype nett tax gross <<-EOF
$(invoice_total "$id")
EOF
+ date_due="$((date + 86400 * 28))"
+
cat <<-EOF
- <?xml version="1.0" encoding="UTF-8"?>
- <office:document-content xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2">
- <office:automatic-styles>
- <style:style style:name="Table1" style:family="table">
- <style:table-properties style:width="6.7in" fo:margin-top="0in" fo:margin-bottom="0in" table:align="margins"/>
- </style:style>
- <style:style style:name="Table1.A" style:family="table-column">
- <style:table-column-properties style:column-width="1.2in" style:rel-column-width="12000*"/>
- </style:style>
- <style:style style:name="Table1.B" style:family="table-column">
- <style:table-column-properties style:column-width="3.4in" style:rel-column-width="34000*"/>
- </style:style>
- <style:style style:name="Table1.C" style:family="table-column">
- <style:table-column-properties style:column-width="1.1in" style:rel-column-width="11000*"/>
- </style:style>
- <style:style style:name="Table1.D" style:family="table-column">
- <style:table-column-properties style:column-width="1.0in" style:rel-column-width="10000*"/>
- </style:style>
- <style:style style:name="Table1.1" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.0201in" fo:border-left="none" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Table1.2" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.0201in" fo:border="none"/>
- </style:style>
- <style:style style:name="Table1.6" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.0201in" fo:border-left="none" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="none"/>
- </style:style>
- <style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
- <style:text-properties style:font-name="DejaVu Sans" fo:font-size="10.5pt" style:font-size-asian="10.5pt" style:font-size-complex="10.5pt"/>
- </style:style>
- <style:style style:name="P4" style:family="paragraph" style:parent-style-name="Standard">
- <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
- <style:text-properties style:font-name="DejaVu Sans" fo:font-size="10.5pt" style:font-size-asian="10.5pt" style:font-size-complex="10.5pt"/>
- </style:style>
- <style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
- <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
- <style:text-properties fo:font-size="10.5pt" style:font-size-asian="10.5pt" style:font-size-complex="10.5pt"/>
- </style:style>
- <style:style style:name="P6" style:family="paragraph" style:parent-style-name="Standard">
- <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
- <style:text-properties fo:font-weight="bold" fo:font-size="10.5pt" style:font-size-complex="10.5pt"/>
- </style:style>
- <style:style style:name="P7" style:family="paragraph" style:parent-style-name="Standard">
- <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
- <style:text-properties fo:font-weight="bold" fo:font-size="10.5pt" style:font-size-complex="10.5pt"/>
- </style:style>
- <style:style style:name="T3" style:family="text">
- <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
- </style:style>
- <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Standard">
- <style:graphic-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0in" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="page-content" style:horizontal-pos="right" style:horizontal-rel="page-content" fo:padding="0in" fo:border="none" style:shadow="none" draw:shadow-opacity="100%"/>
- </style:style>
- <style:style style:name="fr2" style:family="graphic" style:parent-style-name="Standard">
- <style:graphic-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0in" style:wrap="none" style:vertical-pos="top" style:vertical-rel="page-content" style:horizontal-pos="right" style:horizontal-rel="page-content" fo:padding="0in" fo:border="none" style:shadow="none" draw:shadow-opacity="100%"/>
- </style:style>
- <style:style style:name="fr3" style:family="graphic" style:parent-style-name="Standard">
- <style:graphic-properties fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0in" fo:margin-bottom="0in" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="page-content" style:horizontal-pos="left" style:horizontal-rel="page-content" fo:padding="0in" fo:border="none" style:shadow="none" draw:shadow-opacity="100%"/>
- </style:style>
- </office:automatic-styles>
- <office:body>
- <office:text>
- <text:p text:style-name="P3">
- <draw:frame draw:style-name="fr1" draw:name="Rahmen4" text:anchor-type="paragraph" svg:y="2.7598in" svg:width="1.7283in">
- <draw:text-box fo:min-height="0.2528in">
- <text:p text:style-name="P5">$(date -d @${date} +%d.%m.%Y)</text:p>
- </draw:text-box>
- </draw:frame><draw:frame draw:style-name="fr2" draw:name="Rahmen2" text:anchor-type="paragraph" svg:width="1.8228in">
- <draw:text-box fo:min-height="1.8992in">
- <text:p text:style-name="P5"><!--
- -->$(HTML "$sender" |sed -r 's;(
\;)?
\;|(�?[Dd]\;)?�?[aA]\;|\r?$;<text:line-break/>;g')<!--
- --></text:p>
- </draw:text-box>
- </draw:frame><draw:frame draw:style-name="fr3" draw:name="Rahmen1" text:anchor-type="paragraph" svg:y="1.3799in" svg:width="3.4398in">
- <draw:text-box fo:min-height="1.3311in">
- <text:p text:style-name="P3"><!--
- -->$(HTML "$client" |sed -r 's;(
\;)?
\;|(�?[Dd]\;)?�?[aA]\;|\r?$;<text:line-break/>;g')<!--
- --></text:p>
- </draw:text-box>
- </draw:frame><text:span text:style-name="T3">Rechnung ${number}</text:span>
- </text:p>
- <text:p text:style-name="P3"/>
- <text:p text:style-name="P3"/>
- <text:p text:style-name="P3">Vergütung: ${hourly} € / Std.<!--
- -->$(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";;
- esac)<!--
- --></text:p>
- <text:p text:style-name="P3"/>
- <table:table table:name="Table1" table:style-name="Table1">
- <table:table-column table:style-name="Table1.A"/>
- <table:table-column table:style-name="Table1.B"/>
- <table:table-column table:style-name="Table1.C"/>
- <table:table-column table:style-name="Table1.D"/>
- <table:table-header-rows>
- <table:table-row>
- <table:table-cell table:style-name="Table1.1" office:value-type="string">
- <text:p text:style-name="P6">Datum</text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.1" office:value-type="string">
- <text:p text:style-name="P6">Art der Leistung</text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.1" office:value-type="string">
- <text:p text:style-name="P7">Stundenzahl</text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.1" office:value-type="string">
- <text:p text:style-name="P7">Betrag</text:p>
- </table:table-cell>
- </table:table-row>
- </table:table-header-rows>
- $(sed 1d "invoices/$id" |while read -r time work hours; do
- time="$(UNSTRING "${time#time=}" |sed -r 's;(
\;)?
\;|(�?[Dd]\;)?�?[aA]\;|\r?$;<text:line-break/>;g')"
- work="$(UNSTRING "${work#work=}" |sed -r 's;(
\;)?
\;|(�?[Dd]\;)?�?[aA]\;|\r?$;<text:line-break/>;g')"
- hours="$(UNSTRING "${hours#hours=}")"
- cat <<-TROW
- <table:table-row>
- <table:table-cell table:style-name="Table1.2" office:value-type="string">
- <text:p text:style-name="P4">${time} </text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.2" office:value-type="string">
- <text:p text:style-name="P3">${work}</text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.2" office:value-type="string">
- <text:p text:style-name="P5">$( awk "BEGIN {
- if ( int(${hours}) == ${hours} )
- printf \"%i\", ${hours};
- else
- printf \"%i:%i\", int(${hours}), int((${hours} - int(${hours})) * 60);
- }"
- )</text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Table1.2" office:value-type="string">
- <text:p text:style-name="P5">$(awk "BEGIN { printf \"%.2f\", ${hourly} * ${hours}; }" ) €</text:p>
- </table:table-cell>
- </table:table-row>
- TROW
+ <!DOCTYPE html>
+ <html>
+ <head>
+ <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+ <title></title>
+ <meta name="generator" content="LibreOffice 7.4.5.1 (Linux)"/>
+ <meta name="created" content="2023-11-02T15:32:43.493295697"/>
+ <meta name="changed" content="2023-11-08T12:52:58.068548329"/>
+ <style type="text/css">
+ @page { size: 21cm 29.7cm; margin-left: 2.5cm; margin-right: 2.5cm; margin-top: 2.7cm; margin-bottom: 2cm }
+ p { line-height: 115%; margin-bottom: 0.25cm; background: transparent; background: transparent }
+ td p { orphans: 0; widows: 0; background: transparent; background: transparent }
+ th p { font-weight: bold; text-align: center; orphans: 0; widows: 0; background: transparent; background: transparent }
+ a:link { color: #000080; text-decoration: underline }
+ a:visited { color: #800000; text-decoration: underline }
+ </style>
+ </head>
+ <body lang="de-DE" link="#000080" vlink="#800000" dir="ltr"><p align="left" style="line-height: 100%; margin-top: 1.5cm; background: transparent">
+ <font color="#000000"><font face="Cabin"><font size="1" style="font-size: 8pt"><b>${sender}</b></font></font></font></p>
+ <p align="left" style="font-weight: normal; line-height: 100%; margin-top: 0.2cm; background: transparent">
+ <font color="#000000"><font face="Cabin"><font size="2" style="font-size: 11pt">${client}</font></font></font></p>
+ <p align="left" style="line-height: 100%; margin-top: 3.3cm; background: transparent; page-break-before: auto; page-break-after: auto">
+ <font color="#000000"><font face="Cabin"><font size="3" style="font-size: 12pt"><b>Rechnung
+ SI $(date -d @${date} +%y) ${number}</b></font></font></font></p>
+ <p align="left" style="font-weight: normal; line-height: 100%; margin-top: 0.9cm; background: transparent; page-break-before: auto; page-break-after: auto">
+ <font color="#000000"><font face="Cabin"><font size="2" style="font-size: 11pt">Sehr
+ geehrte Damen und Herren,</font></font></font></p>
+ <p align="right" style="font-weight: normal; line-height: 100%; margin-right: 2cm; background: transparent; page-break-before: auto; page-break-after: auto">
+ <font color="#000000"><font face="Cabin"><font size="2" style="font-size: 10pt">$(date -d @${date} +%d.%m.%Y)</font></font></font></p>
+ <p><br/>
+ <br/>
+
+ </p>
+ <table width="100%" cellpadding="0" cellspacing="0">
+ <col width="23*"/>
+
+ <col width="3*"/>
+
+ <col width="154*"/>
+
+ <col width="38*"/>
+
+ <col width="38*"/>
+
+ <thead>
+ <tr valign="top">
+ <th width="9%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">Anz.</font></font></p>
+ </th>
+ <th width="1%" style="border: none; padding: 0cm"><p align="right">
+ <br/>
+
+ </p>
+ </th>
+ <th width="60%" style="border: none; padding: 0cm"><p align="left">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">Leistung</font></font></p>
+ </th>
+ <th width="15%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">Einzelpreis</font></font></p>
+ </th>
+ <th width="15%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">Summe</font></font></p>
+ </th>
+ </tr>
+ </thead>
+ <tbody>
+ $(sed 1d "invoices/$id" |while read -r time work hours pcs ppp; do
+ work="$(UNSTRING "${work#work=}" |HTML)"
+ 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}; }")
+ cat <<-ROW
+ <tr valign="top">
+ <td width="9%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">${pcs}</font></font></p>
+ </td>
+ <td width="1%" style="border: none; padding: 0cm"><p align="right">
+ <br/>
+
+ </p>
+ </td>
+ <td width="60%" style="border: none; padding: 0cm"><p align="left">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">${work}</font></font></p>
+ </td>
+ <td width="15%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">${ppp}
+ €</font></font></p>
+ </td>
+ <td width="15%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">${total}
+ €</font></font></p>
+ </td>
+ </tr>
+ ROW
done)
- <table:table-row>
- <table:table-cell table:style-name="Table1.6" office:value-type="string">
- <text:p text:style-name="P6"/>
- </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>
- </office:body>
- </office:document-content>
+ <tr valign="top">
+ <td width="9%" style="border: none; padding: 0cm"><p align="right">
+ <br/>
+
+ </p>
+ </td>
+ <td width="1%" style="border: none; padding: 0cm"><p align="right">
+ <br/>
+
+ </p>
+ </td>
+ <td width="60%" style="border: none; padding: 0cm"><p align="left" style="font-weight: normal">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">${vatrate}%
+ MwSt.</font></font></p>
+ </td>
+ <td width="15%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">${tax}
+ €</font></font></p>
+ </td>
+ <td width="15%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt">${nett}
+ €</font></font></p>
+ </td>
+ </tr>
+ <tr valign="top">
+ <td width="9%" style="border: none; padding: 0cm"><p align="right">
+ <br/>
+
+ </p>
+ </td>
+ <td width="1%" style="border: none; padding: 0cm"><p align="right">
+ <br/>
+
+ </p>
+ </td>
+ <td width="60%" style="border: none; padding: 0cm"><p align="left">
+ <font face="Cabin"><font size="2" style="font-size: 11pt"><b>Gesamtsumme</b></font></font></p>
+ </td>
+ <td width="15%" style="border: none; padding: 0cm"><p align="right">
+ <br/>
+
+ </p>
+ </td>
+ <td width="15%" style="border: none; padding: 0cm"><p align="right">
+ <font face="Cabin"><font size="2" style="font-size: 11pt"><b>$gross
+ €</b></font></font></p>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <p align="left" style="line-height: 100%; margin-right: 3.18cm; background: transparent">
+ <br/>
+ <br/>
+
+ </p>
+ <p align="left" style="font-weight: normal; line-height: 100%; margin-right: 3.18cm; background: transparent">
+ <font color="#000000"><font face="Cabin"><font size="2" style="font-size: 11pt">Ich
+ bitte um Überweisung des Rechnungsbetrags bis zum $(date -d @${date_due} +%d.%m.%Y)</font></font></font></p>
+ <p style="line-height: 100%"><br/>
+ <br/>
+
+ </p>
+ <p style="font-weight: normal; line-height: 100%"><font face="Cabin"><font size="2" style="font-size: 11pt">Vielen
+ Dank für den Auftrag, die gute Zusammenarbeit und freundliche Grüße,</font></font></p>
+ <p style="line-height: 100%"><br/>
+ <br/>
+
+ </p>
+ <p style="font-weight: normal; line-height: 100%"><font face="Cabin"><font size="2" style="font-size: 11pt">Olaf
+ Schenckenberg</font></font></p>
+ <p style="line-height: 100%"><br/>
+ <br/>
+
+ </p>
+ <p style="line-height: 100%"><br/>
+ <br/>
+
+ </p>
+ <p style="font-weight: normal; line-height: 100%"><a name="__DdeLink__15_3552620450"></a>
+ <font face="Cabin"><font size="2" style="font-size: 9pt"><i>Der
+ Rechnungsbetrag ist nach § 4 Abs. 25 UStG umsatzsteuerfrei</i></font></font></p>
+ </body>
+ </html>
EOF
}
-genodt(){
- local id="$1" exdir="export/$1"
- [ -d "$exdir" ] && {
- rm "$exdir/content.xml" "$exdir/styles.xml" "$exdir/META-INF/manifest.xml"
- rmdir "$exdir/META-INF/" "$exdir/"
- }
+genhtml(){
+ local id="$1"
read -r sender client date number vat vatrate hourly x<<-EOF
$(sed q "invoices/$id")
read -r sender iban bic x<"senders/${sender#sender=}"
read -r client chourly x<"clients/${client#client=}"
- mkdir -p "$exdir/META-INF"
- odt_manifest >"$exdir/META-INF/manifest.xml"
- odt_stylesheet "$(UNSTRING "${iban#iban=}")" "$(UNSTRING "${bic#bic=}")" >"$exdir/styles.xml"
- odt_content "$id" \
+ html_content "$id" \
"$(UNSTRING "${sender#address=}")" \
"$(UNSTRING "${client#address=}")" \
"${date#date=}" \
"$(UNSTRING "${number#number=}")" \
"${vat#vat=}" "${vatrate#vatrate=}" \
"${hourly#hourly=}" \
- >"$exdir/content.xml"
-
- [ -f "export/${id}.odt" ] && rm "export/${id}.odt"
- ( cd "$exdir"
- zip -q "../${id}.odt" content.xml styles.xml META-INF/manifest.xml
- )
- rm "$exdir/content.xml" "$exdir/styles.xml" "$exdir/META-INF/manifest.xml"
- rmdir "$exdir/META-INF/" "$exdir/"
+ >"export/$id.html"
}
genpdf(){
local id="$1"
- genodt "$id"
- lowriter --convert-to pdf --outdir "export/" "export/${id}.odt" >/dev/null
- rm "export/${id}.odt"
+ genhtml "$id"
+ lowriter --convert-to pdf --outdir "export/" "export/${id}.html" >/dev/null
+ rm "export/${id}.html"
}