]> git.plutz.net Git - invoices/blob - odtgen.sh
functions for pdf export
[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="$2" bic="$3"
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   cat <<-EOF
63         <?xml version="1.0" encoding="UTF-8"?>
64         <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">
65           <office:automatic-styles>
66             <style:style style:name="Table1" style:family="table">
67               <style:table-properties style:width="6.6931in" fo:margin-top="0in" fo:margin-bottom="0in" table:align="margins"/>
68             </style:style>
69             <style:style style:name="Table1.A" style:family="table-column">
70               <style:table-column-properties style:column-width="0.8903in" style:rel-column-width="8717*"/>
71             </style:style>
72             <style:style style:name="Table1.B" style:family="table-column">
73               <style:table-column-properties style:column-width="3.4028in" style:rel-column-width="33318*"/>
74             </style:style>
75             <style:style style:name="Table1.CD" style:family="table-column">
76               <style:table-column-properties style:column-width="1.2in" style:rel-column-width="11749*"/>
77             </style:style>
78             <style:style style:name="Table1.1" style:family="table-cell">
79               <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"/>
80             </style:style>
81             <style:style style:name="Table1.2" style:family="table-cell">
82               <style:table-cell-properties fo:padding="0.0201in" fo:border="none"/>
83             </style:style>
84             <style:style style:name="Table1.6" style:family="table-cell">
85               <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"/>
86             </style:style>
87             <style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
88               <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"/>
89             </style:style>
90             <style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
91               <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
92               <style:text-properties fo:font-size="10.5pt" style:font-size-asian="10.5pt" style:font-size-complex="10.5pt"/>
93             </style:style>
94             <style:style style:name="P6" style:family="paragraph" style:parent-style-name="Standard">
95               <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
96               <style:text-properties fo:font-weight="bold" fo:font-size="10.5pt" style:font-size-complex="10.5pt"/>
97             </style:style>
98             <style:style style:name="P7" style:family="paragraph" style:parent-style-name="Standard">
99               <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
100               <style:text-properties fo:font-weight="bold" fo:font-size="10.5pt" style:font-size-complex="10.5pt"/>
101             </style:style>
102             <style:style style:name="T3" style:family="text">
103               <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
104             </style:style>
105             <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Standard">
106               <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%"/>
107             </style:style>
108             <style:style style:name="fr2" style:family="graphic" style:parent-style-name="Standard">
109               <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%"/>
110             </style:style>
111             <style:style style:name="fr3" style:family="graphic" style:parent-style-name="Standard">
112               <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%"/>
113             </style:style>
114           </office:automatic-styles>
115           <office:body>
116             <office:text>
117               <text:p text:style-name="P3">
118                 <draw:frame draw:style-name="fr1" draw:name="Rahmen4" text:anchor-type="paragraph" svg:y="2.7598in" svg:width="1.7283in">
119                   <draw:text-box fo:min-height="0.2528in">
120                     <text:p text:style-name="P5">$(date -d @${date} +%d.%m.%Y)</text:p>
121                   </draw:text-box>
122                 </draw:frame><draw:frame draw:style-name="fr2" draw:name="Rahmen2" text:anchor-type="paragraph" svg:width="1.8228in">
123                   <draw:text-box fo:min-height="1.8992in">
124                     <text:p text:style-name="P5"><!--
125                  -->$(HTML "$sender" |sed 'a<text:line-break/>')<!--
126                  --></text:p>
127                   </draw:text-box>
128                 </draw:frame><draw:frame draw:style-name="fr3" draw:name="Rahmen1" text:anchor-type="paragraph" svg:y="1.3799in" svg:width="3.4398in">
129                   <draw:text-box fo:min-height="1.3311in">
130                     <text:p text:style-name="P3"><!--
131                    -->$(HTML "$client" |sed 'a<text:line-break/>')<!--
132                    --></text:p>
133                   </draw:text-box>
134                 </draw:frame><text:span text:style-name="T3">Rechnung ${issuance}</text:span>
135               </text:p>
136               <text:p text:style-name="P3"/>
137               <text:p text:style-name="P3"/>
138               <text:p text:style-name="P3">Vergütung: ${hourly} € / Std.<!--
139              -->$(case $vat in
140                   (smallbusiness)
141                     printf '<text:line-break/>Gemäß Kleinunternehmerregelung (§19 Umsatzsteuergesetz) wird keine Umsatzsteuer berechnet.';;
142                   (nett)  printf 'zuzüglich %i%% MWSt.' "$vatrate";;
143                   (gross) printf '(einschließlich %i\% MWSt.)' "$vatrate";;
144                  esac)<!--
145            --></text:p>
146               <text:p text:style-name="P3"/>
147               <table:table table:name="Table1" table:style-name="Table1">
148                 <table:table-column table:style-name="Table1.A"/>
149                 <table:table-column table:style-name="Table1.B"/>
150                 <table:table-column table:style-name="Table1.CD"/>
151                 <table:table-column table:style-name="Table1.CD"/>
152                 <table:table-header-rows>
153                   <table:table-row>
154                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
155                       <text:p text:style-name="P6">Datum</text:p>
156                     </table:table-cell>
157                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
158                       <text:p text:style-name="P6">Art der Leistung</text:p>
159                     </table:table-cell>
160                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
161                       <text:p text:style-name="P7">Stundenzahl</text:p>
162                     </table:table-cell>
163                     <table:table-cell table:style-name="Table1.1" office:value-type="string">
164                       <text:p text:style-name="P7">Betrag</text:p>
165                     </table:table-cell>
166                   </table:table-row>
167                 </table:table-header-rows>
168                 $(sed 1d "invoices/$id" |while read -r time work hours; do
169                    time="$(UNSTRING "${time#time=}")"
170                    work="$(UNSTRING "${work#work=}")"
171                   hours="$(UNSTRING "${hours#hours=}")"
172                   cat <<-TROW
173                         <table:table-row>
174                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
175                             <text:p text:style-name="P3">${time}</text:p>
176                           </table:table-cell>
177                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
178                             <text:p text:style-name="P3">${item}</text:p>
179                           </table:table-cell>
180                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
181                             <text:p text:style-name="P5">${hours}</text:p>
182                           </table:table-cell>
183                           <table:table-cell table:style-name="Table1.2" office:value-type="string">
184                             <text:p text:style-name="P5">$((${hourly} * ${hours})) €</text:p>
185                           </table:table-cell>
186                         </table:table-row>
187                         TROW
188                 done)
189                 <table:table-row>
190                   <table:table-cell table:style-name="Table1.6" office:value-type="string">
191                     <text:p text:style-name="P6"/>
192                   </table:table-cell>
193                   <table:table-cell table:style-name="Table1.6" office:value-type="string">
194                     <text:p text:style-name="P6"/>
195                   </table:table-cell>
196                   <table:table-cell table:style-name="Table1.6" office:value-type="string">
197                     <text:p text:style-name="P7">Summe:</text:p>
198                   </table:table-cell>
199                   <table:table-cell table:style-name="Table1.6" office:value-type="string">
200                     <text:p text:style-name="P7">$(invoice_total "$id") €</text:p>
201                   </table:table-cell>
202                 </table:table-row>
203               </table:table>
204             </office:text>
205           </office:body>
206         </office:document-content>
207         EOF
208 }
209
210 genodt(){
211   local id="$1" exdir="export/$1"
212   [ -d "$exdir" ] && rm "$exdir/META-INF"
213
214   read -r sender client date number vat vatrate <<-EOF
215         $(sed q "invoices/$id")
216         EOF
217   read -r sender iban bic <"senders/${sender#sender=}"
218   read -r client hourly <"clients/${client#client=}"
219
220   mkdir -p "$exdir/META-INF"
221   odt_manifest >"$exdir/META-INF/manifest.xml"
222   odt_stylesheet "$(UNSTRING "${iban#iban=}")" "$(UNSTRING "${bic#bic=}")" >"$exdir/styles.xml"
223   odt_content "$id" \
224     "$(UNSTRING "${sender#address=}")" \
225     "$(UNSTRING "${client#address=}")" \
226     "${date#date=}" \
227     "$(UNSTRING "${number#number=}")" \
228     "${vat#vat=}" "${vatrate#vatrate=}" \
229     "${hourly#hourly=}" \
230   >"$exdir/content.xml"
231
232   [ -f "export/${id}.odt" ] && rm "export/${id}.odt"
233   ( cd "$exdir"
234     zip "../${id}.odt" content.xml styles.xml META-INF/manifest.xml
235   )
236   rm "$exdir/content.xml" "$exdir/styles.xml" "$exdir/META-INF/manifest.xml"
237   rmdir "$exdir/META-INF/" "$exdir/"
238   # lowriter --headless --convert-to pdf "${odtdoc}"
239 }