]> git.plutz.net Git - invoices/blob - odtgen.sh
sort invoice list, newest to oldest
[invoices] / odtgen.sh
1 #!/bin/zsh
2
3 odt_manifest(){
4   cat <<-EOF
5         <?xml version="1.0" encoding="UTF-8"?>
6         <manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.2">
7           <manifest:file-entry manifest:full-path="/" manifest:version="1.2" manifest:media-type="application/vnd.oasis.opendocument.text"/>
8           <manifest:file-entry manifest:full-path="styles.xml" manifest:media-type="text/xml"/>
9           <manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
10         </manifest:manifest>
11         EOF
12 }
13
14 odt_stylesheet(){
15   local iban="$1" bic="$2"
16
17   cat <<-EOF
18         <?xml version="1.0" encoding="UTF-8"?>
19         <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">
20           <office:styles>
21             <style:style style:name="Standard" style:family="paragraph" style:class="text">
22               <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
23               <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"/>
24             </style:style>
25           </office:styles>
26           <office:automatic-styles>
27             <style:style style:name="MP1" style:family="paragraph">
28               <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
29               <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"/>
30             </style:style>
31             <style:style style:name="MT1" style:family="text">
32               <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
33             </style:style>
34             <style:page-layout style:name="Mpm1">
35               <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">
36                 <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"/>
37               </style:page-layout-properties>
38               <style:header-style/>
39               <style:footer-style>
40                 <style:header-footer-properties fo:min-height="0in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.1965in"/>
41               </style:footer-style>
42             </style:page-layout>
43           </office:automatic-styles>
44           <office:master-styles>
45             <style:master-page style:name="Standard" style:page-layout-name="Mpm1">
46               <style:footer>
47                 <text:p text:style-name="MP1">
48                   <text:span text:style-name="MT1">Bankverbindung - IBAN:</text:span>
49                   <text:span>${iban}</text:span>
50                   <text:span text:style-name="MT1">| BIC:</text:span>
51                   <text:span>${bic}</text:span>
52                 </text:p>
53               </style:footer>
54             </style:master-page>
55           </office:master-styles>
56         </office:document-styles>
57         EOF
58 }
59
60 odt_content(){
61   local id="$1" sender="$2" client="$3" date="$4" number="$5" vat="$6" vatrate="$7" hourly="$8" \
62         taxtype nett tax gross
63   read -r taxtype nett tax gross <<-EOF
64         $(invoice_total "$id")
65         EOF
66
67   cat <<-EOF
68         <?xml version="1.0" encoding="UTF-8"?>
69         <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">
70           <office:automatic-styles>
71             <style:style style:name="Table1" style:family="table">
72               <style:table-properties style:width="6.7in" fo:margin-top="0in" fo:margin-bottom="0in" table:align="margins"/>
73             </style:style>
74             <style:style style:name="Table1.A" style:family="table-column">
75               <style:table-column-properties style:column-width="1.1in" style:rel-column-width="11000*"/>
76             </style:style>
77             <style:style style:name="Table1.B" style:family="table-column">
78               <style:table-column-properties style:column-width="3.4in" style:rel-column-width="34000*"/>
79             </style:style>
80             <style:style style:name="Table1.CD" style:family="table-column">
81               <style:table-column-properties style:column-width="1.1in" style:rel-column-width="11000*"/>
82             </style:style>
83             <style:style style:name="Table1.1" style:family="table-cell">
84               <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"/>
85             </style:style>
86             <style:style style:name="Table1.2" style:family="table-cell">
87               <style:table-cell-properties fo:padding="0.0201in" fo:border="none"/>
88             </style:style>
89             <style:style style:name="Table1.6" style:family="table-cell">
90               <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"/>
91             </style:style>
92             <style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
93               <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"/>
94             </style:style>
95             <style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
96               <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
97               <style:text-properties fo:font-size="10.5pt" style:font-size-asian="10.5pt" style:font-size-complex="10.5pt"/>
98             </style:style>
99             <style:style style:name="P6" style:family="paragraph" style:parent-style-name="Standard">
100               <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
101               <style:text-properties fo:font-weight="bold" fo:font-size="10.5pt" style:font-size-complex="10.5pt"/>
102             </style:style>
103             <style:style style:name="P7" style:family="paragraph" style:parent-style-name="Standard">
104               <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
105               <style:text-properties fo:font-weight="bold" fo:font-size="10.5pt" style:font-size-complex="10.5pt"/>
106             </style:style>
107             <style:style style:name="T3" style:family="text">
108               <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
109             </style:style>
110             <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Standard">
111               <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%"/>
112             </style:style>
113             <style:style style:name="fr2" style:family="graphic" style:parent-style-name="Standard">
114               <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%"/>
115             </style:style>
116             <style:style style:name="fr3" style:family="graphic" style:parent-style-name="Standard">
117               <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%"/>
118             </style:style>
119           </office:automatic-styles>
120           <office:body>
121             <office:text>
122               <text:p text:style-name="P3">
123                 <draw:frame draw:style-name="fr1" draw:name="Rahmen4" text:anchor-type="paragraph" svg:y="2.7598in" svg:width="1.7283in">
124                   <draw:text-box fo:min-height="0.2528in">
125                     <text:p text:style-name="P5">$(date -d @${date} +%d.%m.%Y)</text:p>
126                   </draw:text-box>
127                 </draw:frame><draw:frame draw:style-name="fr2" draw:name="Rahmen2" text:anchor-type="paragraph" svg:width="1.8228in">
128                   <draw:text-box fo:min-height="1.8992in">
129                     <text:p text:style-name="P5"><!--
130                  -->$(HTML "$sender" |sed -r 's;(&#13\;)?&#10\;;<text:line-break/>;g')<!--
131                  --></text:p>
132                   </draw:text-box>
133                 </draw:frame><draw:frame draw:style-name="fr3" draw:name="Rahmen1" text:anchor-type="paragraph" svg:y="1.3799in" svg:width="3.4398in">
134                   <draw:text-box fo:min-height="1.3311in">
135                     <text:p text:style-name="P3"><!--
136                    -->$(HTML "$client" |sed -r 's;(&#13\;)?&#10\;;<text:line-break/>;g')<!--
137                    --></text:p>
138                   </draw:text-box>
139                 </draw:frame><text:span text:style-name="T3">Rechnung ${number}</text:span>
140               </text:p>
141               <text:p text:style-name="P3"/>
142               <text:p text:style-name="P3"/>
143               <text:p text:style-name="P3">Vergütung: ${hourly} € / Std.<!--
144              -->$(case $vat in
145                   (smallbusiness)
146                     printf '<text:line-break/>Gemäß Kleinunternehmerregelung (§19 Umsatzsteuergesetz) wird keine Umsatzsteuer berechnet.';;
147                   (nett)  printf 'zuzüglich %i%% MwSt.' "$vatrate";;
148                   (gross) printf '(einschließlich %i%% MwSt.)' "$vatrate";;
149                  esac)<!--
150            --></text:p>
151               <text:p text:style-name="P3"/>
152               <table:table table:name="Table1" table:style-name="Table1">
153                 <table:table-column table:style-name="Table1.A"/>
154                 <table:table-column table:style-name="Table1.B"/>
155                 <table:table-column table:style-name="Table1.CD"/>
156                 <table:table-column table:style-name="Table1.CD"/>
157                 <table:table-header-rows>
158                   <table:table-row>
159                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
160                       <text:p text:style-name="P6">Datum</text:p>
161                     </table:table-cell>
162                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
163                       <text:p text:style-name="P6">Art der Leistung</text:p>
164                     </table:table-cell>
165                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
166                       <text:p text:style-name="P7">Stundenzahl</text:p>
167                     </table:table-cell>
168                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
169                       <text:p text:style-name="P7">Betrag</text:p>
170                     </table:table-cell>
171                   </table:table-row>
172                 </table:table-header-rows>
173                 $(sed 1d "invoices/$id" |while read -r time work hours; do
174                    time="$(UNSTRING "${time#time=}")"
175                    work="$(UNSTRING "${work#work=}")"
176                   hours="$(UNSTRING "${hours#hours=}")"
177                   cat <<-TROW
178                         <table:table-row>
179                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
180                             <text:p text:style-name="P3">${time}</text:p>
181                           </table:table-cell>
182                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
183                             <text:p text:style-name="P3">${work}</text:p>
184                           </table:table-cell>
185                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
186                             <text:p text:style-name="P5">${hours}</text:p>
187                           </table:table-cell>
188                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
189                             <text:p text:style-name="P5">$((${hourly} * ${hours})) €</text:p>
190                           </table:table-cell>
191                         </table:table-row>
192                         TROW
193                 done)
194                 <table:table-row>
195                   <table:table-cell table:style-name="Table1.6" office:value-type="string">
196                     <text:p text:style-name="P6"/>
197                   </table:table-cell>
198                   $(case $taxtype in
199                     (nett) cat <<-TCELL
200                         <table:table-cell table:style-name="Table1.6" table:number-columns-spanned="2" office:value-type="string">
201                           <text:p text:style-name="P5">
202                           Zwischensumme:<text:line-break/>
203                           zzgl. ${vatrate}% MwSt.:<text:line-break/>
204                           </text:p>
205                           <text:p text:style-name="P7">zu zahlender Betrag:</text:p>
206                         </table:table-cell>
207                         <table:table-cell table:style-name="Table1.6" office:value-type="string">
208                           <text:p text:style-name="P5">
209                           ${nett} €<text:line-break/>
210                           ${tax} €<text:line-break/>
211                           </text:p>
212                           <text:p text:style-name="P7">${gross} €</text:p>
213                         </table:table-cell>
214                         TCELL
215                         ;;
216                     (gross) cat <<-TCELL
217                         <table:table-cell table:style-name="Table1.6" table:number-columns-spanned="2" office:value-type="string">
218                           <text:p text:style-name="P7">zu zahlender Betrag:</text:p>
219                           <text:p text:style-name="P5">
220                           <text:line-break/>
221                           enthaltene MwSt (${vatrate}%):<text:line-break/>
222                           enthaltener Netto-Betrag:<!--
223                         --></text:p>
224                         </table:table-cell>
225                         <table:table-cell table:style-name="Table1.6" office:value-type="string">
226                           <text:p text:style-name="P7">${gross} €</text:p>
227                           <text:p text:style-name="P5">
228                           <text:line-break/>
229                           ${tax} €<text:line-break/>
230                           ${nett} €<!--
231                         --></text:p>
232                         </table:table-cell>
233                         TCELL
234                         ;;
235                     (*) cat <<-TCELL
236                         <table:table-cell table:style-name="Table1.6" table:number-columns-spanned="2" office:value-type="string">
237                           <text:p text:style-name="P7">zu zahlender Betrag:</text:p>
238                         </table:table-cell>
239                         <table:table-cell table:style-name="Table1.6" office:value-type="string">
240                           <text:p text:style-name="P7">${gross} €</text:p>
241                         </table:table-cell>
242                         TCELL
243                         ;;
244                   esac)
245                 </table:table-row>
246               </table:table>
247             </office:text>
248           </office:body>
249         </office:document-content>
250         EOF
251 }
252
253 genodt(){
254   local id="$1" exdir="export/$1"
255   [ -d "$exdir" ] && {
256     rm "$exdir/content.xml" "$exdir/styles.xml" "$exdir/META-INF/manifest.xml"
257     rmdir "$exdir/META-INF/" "$exdir/"
258   }
259
260   read -r sender client date number vat vatrate hourly x<<-EOF
261         $(sed q "invoices/$id")
262         EOF
263   read -r sender iban bic x<"senders/${sender#sender=}"
264   read -r client chourly x<"clients/${client#client=}"
265
266   mkdir -p "$exdir/META-INF"
267   odt_manifest >"$exdir/META-INF/manifest.xml"
268   odt_stylesheet "$(UNSTRING "${iban#iban=}")" "$(UNSTRING "${bic#bic=}")" >"$exdir/styles.xml"
269   odt_content "$id" \
270     "$(UNSTRING "${sender#address=}")" \
271     "$(UNSTRING "${client#address=}")" \
272     "${date#date=}" \
273     "$(UNSTRING "${number#number=}")" \
274     "${vat#vat=}" "${vatrate#vatrate=}" \
275     "${hourly#hourly=}" \
276   >"$exdir/content.xml"
277
278   [ -f "export/${id}.odt" ] && rm "export/${id}.odt"
279   ( cd "$exdir"
280     zip -q "../${id}.odt" content.xml styles.xml META-INF/manifest.xml
281   )
282   rm "$exdir/content.xml" "$exdir/styles.xml" "$exdir/META-INF/manifest.xml"
283   rmdir "$exdir/META-INF/" "$exdir/"
284 }
285
286 genpdf(){
287   local id="$1"
288   genodt "$id"
289   lowriter --convert-to pdf --outdir "export/" "export/${id}.odt" >/dev/null
290   rm "export/${id}.odt"
291 }
292