]> git.plutz.net Git - invoices/commitdiff
functions for pdf export
authorPaul Hänsch <paul@plutz.net>
Thu, 22 Nov 2018 16:14:34 +0000 (17:14 +0100)
committerPaul Hänsch <paul@plutz.net>
Thu, 22 Nov 2018 16:14:34 +0000 (17:14 +0100)
invoices.sh
odtgen.sh [new file with mode: 0755]
senders.sh

index 9e07e9fab11ffbec85a9d97fbd37c31c02f59e94..b8568493cbc689d30cd74f47a72bb052e7901d0c 100755 (executable)
@@ -1,9 +1,10 @@
 #!/bin/sh
 
 sender_list(){
 #!/bin/sh
 
 sender_list(){
-  local select="$1" n name
+  local select="$1" n name address iban bic
   [ -d senders/ ] && for n in '' senders/*; do
   [ -d senders/ ] && for n in '' senders/*; do
-    [ "$n" ] && name="$(sed q "$n" |HTML)"
+    [ "$n" ] &&  read -r address iban bic <"$n"
+    name="$(UNSTRING "${address#address=}" |sed q |HTML)"
     [ "${n#senders/}" = "$select" ] \
     && printf '<option value="%s" selected=selected>%s</option>' "${n#senders/}" "$name" \
     || printf '<option value="%s">%s</option>' "${n#senders/}" "$name"
     [ "${n#senders/}" = "$select" ] \
     && printf '<option value="%s" selected=selected>%s</option>' "${n#senders/}" "$name" \
     || printf '<option value="%s">%s</option>' "${n#senders/}" "$name"
@@ -22,16 +23,20 @@ client_list(){
 }
 
 list_invoices(){
 }
 
 list_invoices(){
+  local sender client date number vat vatrate iban bic hourly
   [ -d invoices/ ] && for i in invoices/*; do
     read -r sender client date number vat vatrate<<-EOF
        $(sed q "$i")
        EOF
   [ -d invoices/ ] && for i in invoices/*; do
     read -r sender client date number vat vatrate<<-EOF
        $(sed q "$i")
        EOF
-    [ -f "senders/${sender#sender=}" ] \
-    && sender="$(sed q "senders/${sender#sender=}")" \
-    || sender="(unset)"
+
+    [ ! -f "senders/${sender#sender=}" ] \
+    && sender="(unset)" \
+    || read -r sender iban bic <"senders/${sender#sender=}"
+
     [ ! -f "clients/${client#client=}" ] \
     && client="(unset)" \
     || read -r client hourly <"clients/${client#client=}"
     [ ! -f "clients/${client#client=}" ] \
     && client="(unset)" \
     || read -r client hourly <"clients/${client#client=}"
+
     [ "${date#date=}" -ge 0 ] 2>&- \
     && date="$(date -d "@${date#date=}" +%x)" \
     || date="(unset)"
     [ "${date#date=}" -ge 0 ] 2>&- \
     && date="$(date -d "@${date#date=}" +%x)" \
     || date="(unset)"
@@ -43,7 +48,7 @@ list_invoices(){
       [label Amount:] %.2f €
       [a href="/invoices/%s" Edit]
     ]' "$(UNSTRING "${number#number=}" |HTML)" \
       [label Amount:] %.2f €
       [a href="/invoices/%s" Edit]
     ]' "$(UNSTRING "${number#number=}" |HTML)" \
-       "$(HTML "$sender")" \
+       "$(UNSTRING "${sender#address=}" |sed q |HTML)" \
        "$(UNSTRING "${client#address=}" |sed q |HTML)" "$(HTML "$date")" \
        "$(invoice_total "${i#invoices/}")" \
        "$(HTML ${i#invoices/})"
        "$(UNSTRING "${client#address=}" |sed q |HTML)" "$(HTML "$date")" \
        "$(invoice_total "${i#invoices/}")" \
        "$(HTML ${i#invoices/})"
@@ -72,6 +77,7 @@ edit_invoice(){
   && read -r caddress hourly <"clients/${client#client=}"
   hourly="${hourly#hourly=}"
 
   && read -r caddress hourly <"clients/${client#client=}"
   hourly="${hourly#hourly=}"
 
+  tid="$(tid "invoices/$id")"
   total=$(invoice_total "$id")
 
   cat <<-EOF 
   total=$(invoice_total "$id")
 
   cat <<-EOF 
@@ -137,7 +143,8 @@ $({ sed 1d "invoices/$id"; printf 'time= work= hours=\n'; } \
             esac)
             ]]
          ]
             esac)
             ]]
          ]
-         [submit "update" "$(tid "invoices/$id")" Update]
+         [submit "genpdf" "$tid" Export PDF]
+         [submit "update" "$tid" Update]
        ]
        EOF
 }
        ]
        EOF
 }
@@ -158,7 +165,7 @@ invoice_total(){
     || hourly=0
 
     sed 1d "invoices/$id" \
     || hourly=0
 
     sed 1d "invoices/$id" \
-    | { while read time work hours; do
+    | { while read -r time work hours; do
         [ "${hours#hours=}" -gt 0 ] 2>&- \
         && hours="${hours#hours=}" \
         || hours=0
         [ "${hours#hours=}" -gt 0 ] 2>&- \
         && hours="${hours#hours=}" \
         || hours=0
@@ -172,9 +179,10 @@ invoice_total(){
 }
 
 update_invoice(){
 }
 
 update_invoice(){
-  local id="$(POST id |checkid)" extra=0
+  local id="$(POST id |checkid)" extra=0 tid
+  tid="$(tid invoices/$id)"
 
 
-  if [ "$(POST update)" = "$(tid "invoices/$id")" ]; then
+  if [ "$(POST update)" = "$tid" ] || [ "$(POST genpdf)" = "$tid" ]; then
     mkdir -p invoices
 
     for n in "$(POST_COUNT time)" "$(POST_COUNT work)" "$(POST_COUNT hours)"; do
     mkdir -p invoices
 
     for n in "$(POST_COUNT time)" "$(POST_COUNT work)" "$(POST_COUNT hours)"; do
@@ -195,5 +203,9 @@ update_invoice(){
       done
     } >"invoices/$id"
   fi
       done
     } >"invoices/$id"
   fi
+  if [ "$(POST genpdf)" ]; then
+    . $_EXEC/odtgen.sh
+    genodt "$id"
+  fi
   REDIRECT "/invoices/$id"
 }
   REDIRECT "/invoices/$id"
 }
diff --git a/odtgen.sh b/odtgen.sh
new file mode 100755 (executable)
index 0000000..dbe2945
--- /dev/null
+++ b/odtgen.sh
@@ -0,0 +1,239 @@
+#!/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="$2" bic="$3"
+
+  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(){
+  local id="$1" sender="$2" client="$3" date="$4" number="$5" vat="$6" vatrate="$7" hourly="$8"
+  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.6931in" 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="0.8903in" style:rel-column-width="8717*"/>
+           </style:style>
+           <style:style style:name="Table1.B" style:family="table-column">
+             <style:table-column-properties style:column-width="3.4028in" style:rel-column-width="33318*"/>
+           </style:style>
+           <style:style style:name="Table1.CD" style:family="table-column">
+             <style:table-column-properties style:column-width="1.2in" style:rel-column-width="11749*"/>
+           </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="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 'a<text:line-break/>')<!--
+                --></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 'a<text:line-break/>')<!--
+                  --></text:p>
+                 </draw:text-box>
+               </draw:frame><text:span text:style-name="T3">Rechnung ${issuance}</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.CD"/>
+               <table:table-column table:style-name="Table1.CD"/>
+               <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=}")"
+                   work="$(UNSTRING "${work#work=}")"
+                  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="P3">${time}</text:p>
+                         </table:table-cell>
+                         <table:table-cell table:style-name="Table1.2" office:value-type="string">
+                           <text:p text:style-name="P3">${item}</text:p>
+                         </table:table-cell>
+                         <table:table-cell table:style-name="Table1.2" office:value-type="string">
+                           <text:p text:style-name="P5">${hours}</text:p>
+                         </table:table-cell>
+                         <table:table-cell table:style-name="Table1.2" office:value-type="string">
+                           <text:p text:style-name="P5">$((${hourly} * ${hours})) €</text:p>
+                         </table:table-cell>
+                       </table:table-row>
+                       TROW
+               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>
+                 <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>
+               </table:table-row>
+             </table:table>
+           </office:text>
+         </office:body>
+       </office:document-content>
+       EOF
+}
+
+genodt(){
+  local id="$1" exdir="export/$1"
+  [ -d "$exdir" ] && rm "$exdir/META-INF"
+
+  read -r sender client date number vat vatrate <<-EOF
+       $(sed q "invoices/$id")
+       EOF
+  read -r sender iban bic <"senders/${sender#sender=}"
+  read -r client hourly <"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" \
+    "$(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 "../${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/"
+  # lowriter --headless --convert-to pdf "${odtdoc}"
+}
index 4d1f6121661d56c79f81ec5e1d563dc470d5cb94..8c98737a39b4195ad681172777eb734753fffb87 100755 (executable)
@@ -1,11 +1,16 @@
 #!/bin/sh
 
 edit_sender(){
 #!/bin/sh
 
 edit_sender(){
-  id="$1"
-  if [ -f "senders/$id" ]; then
-    address="$(cat "senders/$id")"
-  fi
-  [ "$address" ] || address="Name
+  local id="$1" address iban bic
+  [ -f "senders/$id" ] \
+  && read -r address iban bic <"senders/$id"
+
+  iban="$(UNSTRING "${iban#iban=}")"
+   bic="$(UNSTRING "${bic#bic=}")"
+
+  [ "${address#address=}" ] \
+  && address="$(UNSTRING "${address#address=}")" \
+  || address="Name
 Street
 City
 
 Street
 City
 
@@ -19,17 +24,23 @@ xxx / 000 / ###
     [form method="POST" action="/update_sender"
       [hidden "id" "%s"]
       <textarea name="address" placeholder="address">%s</textarea>
     [form method="POST" action="/update_sender"
       [hidden "id" "%s"]
       <textarea name="address" placeholder="address">%s</textarea>
+      [label IBAN:][input name=iban value="%s" placeholder=IBAN]
+      [label BIC:][input name=bic value="%s" placeholder=BIC]
       [submit "update" "%s" Update]
     ]' \
       [submit "update" "%s" Update]
     ]' \
-    "$(HTML $id)" \
-    "$(HTML "${address}")" \
+    "$(HTML $id)" "$(HTML "${address}")" \
+    "$(HTML "${iban}")" "$(HTML "${bic}")" \
     "$(tid "senders/$id")"
 }
 
 list_senders(){
   [ -d senders/ ] && for s in senders/*; do
     "$(tid "senders/$id")"
 }
 
 list_senders(){
   [ -d senders/ ] && for s in senders/*; do
-    address=$(cat "$s")
-    [ "$address" ] || address="(no address)"
+    read -r address iban bic <"$s"
+
+    [ "${address#address=}" ] \
+    && address="$(UNSTRING "${address#address=}")" \
+    || address="(no address)"
+
     printf '[div .sender .address <!--
       -->%s[a href="/senders/%s" Edit]]
     ' "$(HTML "$address")" "$(HTML "${s#senders/}")"
     printf '[div .sender .address <!--
       -->%s[a href="/senders/%s" Edit]]
     ' "$(HTML "$address")" "$(HTML "${s#senders/}")"
@@ -40,7 +51,9 @@ update_sender(){
   id="$(POST id |checkid)"
   if [ "$(POST update)" = "$(tid "senders/$id")" ]; then
     mkdir -p senders
   id="$(POST id |checkid)"
   if [ "$(POST update)" = "$(tid "senders/$id")" ]; then
     mkdir -p senders
-    POST address >"senders/$id"
+    printf 'address=%s iban=%s bic=%s\n' \
+    $(POST address |STRING) $(POST iban |STRING) \
+    $(POST bic |STRING) >"senders/$id"
     REDIRECT "/senders/"
   else
     REDIRECT "/senders/$id"
     REDIRECT "/senders/"
   else
     REDIRECT "/senders/$id"