56f1d250c7c1ab9b32db00f5c9c246cf0220066b
bernd Kunden können Ihre Rechnung...

bernd authored 16 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Updated copyright notice (2...

Bernd Wurst authored 11 years ago

5) Written 2008-2013 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd Kunden können Ihre Rechnung...

bernd authored 16 years ago

16) 
17) require_once('inc/base.php');
18) require_once('inc/security.php');
19) 
20) function my_invoices()
21) {
22)   $c = (int) $_SESSION['customerinfo']['customerno'];
Bernd Wurst Zeige zunächst nur unbezahl...

Bernd Wurst authored 12 years ago

23)   $result = db_query("SELECT id,datum,betrag,bezahlt,abbuchung FROM kundendaten.ausgestellte_rechnungen WHERE kunde={$c} ORDER BY id DESC");
bernd Kunden können Ihre Rechnung...

bernd authored 16 years ago

24)   $ret = array();
25)   while($line = mysql_fetch_assoc($result))
26)   	array_push($ret, $line);
27)   return $ret;
28) }
29) 
30) 
31) function get_pdf($id)
32) {
33)   $c = (int) $_SESSION['customerinfo']['customerno'];
34)   $id = (int) $id;
35)   $result = db_query("SELECT pdfdata FROM kundendaten.ausgestellte_rechnungen WHERE kunde={$c} AND id={$id}");
36)   if (mysql_num_rows($result) == 0)
37) 	system_failure('Ungültige Rechnungsnummer oder nicht eingeloggt');
38)   return mysql_fetch_object($result)->pdfdata;
39) 
40) }
41) 
42) 
43) function invoice_details($id)
44) {
45)   $c = (int) $_SESSION['customerinfo']['customerno'];
46)   $id = (int) $id;
47)   $result = db_query("SELECT kunde,datum,betrag,bezahlt,abbuchung FROM kundendaten.ausgestellte_rechnungen WHERE kunde={$c} AND id={$id}");
48)   if (mysql_num_rows($result) == 0)
Bernd Wurst QR-Codes für Überweisung be...

Bernd Wurst authored 11 years ago

49)   	system_failure('Ungültige Rechnungsnummer oder nicht eingeloggt');
bernd Kunden können Ihre Rechnung...

bernd authored 16 years ago

50)   return mysql_fetch_assoc($result);
51) }
52) 
53) function invoice_items($id)
54) {
55)   $c = (int) $_SESSION['customerinfo']['customerno'];
56)   $id = (int) $id;
Bernd Wurst Einheit bei Rechnungsposten...

Bernd Wurst authored 12 years ago

57)   $result = db_query("SELECT id, beschreibung, datum, enddatum, betrag, einheit, brutto, mwst, anzahl FROM kundendaten.rechnungsposten WHERE rechnungsnummer={$id} AND kunde={$c}");
bernd Kunden können Ihre Rechnung...

bernd authored 16 years ago

58)   if (mysql_num_rows($result) == 0)
Bernd Wurst QR-Codes für Überweisung be...

Bernd Wurst authored 11 years ago

59)   	system_failure('Ungültige Rechnungsnummer oder nicht eingeloggt');
bernd Kunden können Ihre Rechnung...

bernd authored 16 years ago

60)   $ret = array();
61)   while($line = mysql_fetch_assoc($result))
62)   array_push($ret, $line);
63)   return $ret;
64) }
65) 
66) 
67) function upcoming_items()
68) {
69)   $c = (int) $_SESSION['customerinfo']['customerno'];
Bernd Wurst Einheit bei Rechnungsposten...

Bernd Wurst authored 12 years ago

70)   $result = db_query("SELECT anzahl, beschreibung, startdatum, enddatum, betrag, einheit, brutto, mwst FROM kundendaten.upcoming_items WHERE kunde={$c} ORDER BY startdatum ASC");
bernd Kunden können Ihre Rechnung...

bernd authored 16 years ago

71)   $ret = array();
72)   while($line = mysql_fetch_assoc($result))
73) 	  array_push($ret, $line);
74)   return $ret;
75) }
76) 
77) 
Bernd Wurst QR-Codes für Überweisung be...

Bernd Wurst authored 11 years ago

78) function generate_qrcode_image($id) 
79) {
80)   $invoice = invoice_details($id);
81)   $customerno = $invoice['kunde'];
82)   $amount = 'EUR'.sprintf('%.2f', $invoice['betrag']);
83)   $datum = $invoice['datum'];
84)   $data = 'BCD
85) 001
86) 1
87) SCT
88) GENODES1VBK
89) schokokeks.org GbR
90) DE91602911200041512006
91) '.$amount.'
92) 
93) 
94) RE '.$id.' KD '.$customerno.' vom '.$datum.'
95) Rechnung '.$id.' von schokokeks.org';
96)   
97)   $descriptorspec = array(
98)     0 => array("pipe", "r"),  // STDIN ist eine Pipe, von der das Child liest
99)     1 => array("pipe", "w"),  // STDOUT ist eine Pipe, in die das Child schreibt
100)     2 => array("pipe", "w") 
101)   );
102) 
103)   $process = proc_open('qrencode -t PNG -o - -l M', $descriptorspec, $pipes);
104) 
105)   if (is_resource($process)) {
106)     // $pipes sieht nun so aus:
107)     // 0 => Schreibhandle, das auf das Child STDIN verbunden ist
108)     // 1 => Lesehandle, das auf das Child STDOUT verbunden ist
109) 
110)     fwrite($pipes[0], $data);
111)     fclose($pipes[0]);
112) 
113)     $pngdata = stream_get_contents($pipes[1]);
114)     fclose($pipes[1]);
115) 
116)     // Es ist wichtig, dass Sie alle Pipes schließen bevor Sie
117)     // proc_close aufrufen, um Deadlocks zu vermeiden
118)     $return_value = proc_close($process);
119)   
120)     return $pngdata;
121)   } else {
122)     warning('Es ist ein interner Fehler im Webinterface aufgetreten, aufgrund dessen kein QR-Code erstellt werden kann. Sollte dieser Fehler mehrfach auftreten, kontaktieren Sie bitte die Administratoren.');
123)   }
124) }
125) 
126) 
127) function generate_bezahlcode_image($id) 
128) {
129)   $invoice = invoice_details($id);
130)   $customerno = $invoice['kunde'];
131)   $amount = str_replace('.', '%2C', sprintf('%.2f', $invoice['betrag']));
132)   $datum = $invoice['datum'];
133)   $data = 'bank://singlepaymentsepa?name=schokokeks.org%20GbR&reason=RE%20'.$id.'%20KD%20'.$customerno.'%20vom%20'.$datum.'&iban=DE91602911200041512006&bic=GENODES1VBK&amount='.$amount;
134)   
135)   $descriptorspec = array(
136)     0 => array("pipe", "r"),  // STDIN ist eine Pipe, von der das Child liest
137)     1 => array("pipe", "w"),  // STDOUT ist eine Pipe, in die das Child schreibt
138)     2 => array("pipe", "w") 
139)   );
140) 
141)   $process = proc_open('qrencode -t PNG -o -', $descriptorspec, $pipes);
142) 
143)   if (is_resource($process)) {
144)     // $pipes sieht nun so aus:
145)     // 0 => Schreibhandle, das auf das Child STDIN verbunden ist
146)     // 1 => Lesehandle, das auf das Child STDOUT verbunden ist
147) 
148)     fwrite($pipes[0], $data);
149)     fclose($pipes[0]);
150) 
151)     $pngdata = stream_get_contents($pipes[1]);
152)     fclose($pipes[1]);
153) 
154)     // Es ist wichtig, dass Sie alle Pipes schließen bevor Sie
155)     // proc_close aufrufen, um Deadlocks zu vermeiden
156)     $return_value = proc_close($process);
157)   
158)     return $pngdata;
159)   } else {
160)     warning('Es ist ein interner Fehler im Webinterface aufgetreten, aufgrund dessen kein QR-Code erstellt werden kann. Sollte dieser Fehler mehrfach auftreten, kontaktieren Sie bitte die Administratoren.');
161)   }
162) }
163) 
164) 
165) 
166) # bank://singlepaymentsepa?name=SCHOKOKEKS.ORG%20GBR&reason=RE%20256%20KD%2032%20vom%202008-03-01&iban=DE91602911200041512006&bic=GENODES1VBK&amount=45%2C00