596196deeb9fc79fb119e451d0291961b2f523fc
Bernd Wurst Erste Version des SEPA-Mand...

Bernd Wurst authored 10 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2013 by schokokeks.org Hosting, namely
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) */
16) 
17) require_once('invoice.php');
18) 
19) require_role(ROLE_CUSTOMER);
20) $section = 'invoice_current';
21) 
Bernd Wurst Vervollständige Bankname un...

Bernd Wurst authored 10 years ago

22) $path = config('jquery_ui_path');
23) 
24) html_header('
25) <link rel="stylesheet" href="'.$path.'/themes/base/jquery-ui.css" />
26) <script type="text/javascript" src="'.$path.'/jquery-1.9.0.js" ></script>
27) <script type="text/javascript" src="'.$path.'/ui/jquery-ui.js" ></script>
28) 
29) ');
30) 
Bernd Wurst Erste Version des SEPA-Mand...

Bernd Wurst authored 10 years ago

31) title('Erteilung eines Mandats zur SEPA-Basis-Lastschrift');
32) 
33) output('<p>Ich ermächtige die Firma schokokeks.org GbR, Zahlungen von meinem Konto mittels Lastschrift
34) einzuziehen. Zugleich weise ich mein Kreditinstitut an, die von der Firma schokokeks.org GbR auf mein
35) Konto gezogenen Lastschriften einzulösen.</p>
36) <p>Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des
37) belasteten Betrages verlangen. Es gelten dabei diemit meinem Kreditinstitut vereinbarten Bedingungen.
38) Insbesondere fallen bei Zurückweisung einer gerechtfertigten Abbuchung i.d.R. Gebühren an.</p>');
39) 
40) $name = $_SESSION['customerinfo']['name'];
41) if ($_SESSION['customerinfo']['company']) {
42)   if ($_SESSION['customerinfo']['name']) {
43)     $name = $_SESSION['customerinfo']['company'] .' / '. $_SESSION['customerinfo']['name'];
44)   } else {
45)     $name = $_SESSION['customerinfo']['company'];
46)   }
47) }
48) output('<p>Dieses Mandat gilt für Forderungen bzgl. der Kundennummer <strong>'.$_SESSION['customerinfo']['customerno'].'</strong> ('.$name.'). Sämtliche Forderungen werden mindestens 6 Bankarbeitstage vor Fälligkeit angekündigt. Diese Ankündigung erfolgt in der Regel durch Zusendung einer Rechnung per E-Mail.</p>');
49) 
50) 
51) 
52) $first_date = date('Y-m-d');
53) $invoices = my_invoices();
54) foreach ($invoices as $i) {
55)   if ($i['bezahlt'] == 0 && $i['datum'] < $first_date) {
56)     $first_date = $i['datum'];
57)   }
58) }
59) 
60) $html = '<h4>Gültigkeit des Mandats</h4>';
61) $checked = False;
62) if ($first_date != date('Y-m-d')) {
63)   $checked = True;
64)   $html .= '<p><input type="radio" id="gueltig_ab_'.$first_date.'" name="gueltig_ab" value="'.$first_date.'" checked="checked" /><label for="gueltig_ab_'.$first_date.'">Dieses Mandat gilt <strong>ab '.$first_date.'</strong> (Alle bisher offenen Forderungen werden ebenfalls abgebucht)</label></p>';
65) }
66) $html .= '<p><input type="radio" id="gueltig_ab_heute" name="gueltig_ab" value="'.date('Y-m-d').'" '.($checked ? '' : 'checked="checked"').' /><label for="gueltig_ab_heute">Dieses Mandat gilt <strong>ab heute</strong> ('.date('Y-m-d').')</label></p>';
67) $html .= '<p><input type="radio" id="gueltig_ab_datum" name="gueltig_ab" value="datum" /><label for="gueltig_ab_datum">Dieses Mandat gilt <strong>erst ab</strong></label> '.html_datepicker("gueltig_ab_datum", time()).' (Ein eventuell zuvor erteiltes Mandat wird zu diesem Datum automatisch ungültig.)</p>';
68) 
69) $html .= '<h4>Ihre Bankverbindung</h4>';
70) $html .= '<table>
71) <tr><td><label for="kontoinhaber">Name des Kontoinhabers:</label></td><td><input type="text" name="kontoinhaber" id="kontoinhaber" value="'.$_SESSION['customerinfo']['name'].'" /></td></tr>
72) <tr><td><label for="adresse">Adresse des Kontoinhabers:</label></td><td><textarea cols="50" lines="2" name="adresse" id="adresse"></textarea></td></tr>
73) <tr><td><label for="iban">IBAN:</label></td><td><input type="text" name="iban" id="iban" /></td></tr>
74) <tr><td><label for="bankname">Name der Bank:</label></td><td><input type="text" name="bankname" id="bankname" /></td></tr>
75) <tr><td><label for="bic">BIC:</label></td><td><input type="text" name="bic" id="bic" /></td></tr>
76) </table>';
77) 
78) $html .= '<p><input type="submit" value="Mandat erteilen" /></p>';
79) 
80) 
81) output(html_form('sepamandat_neu', 'save', 'action=new', $html));
82) 
Bernd Wurst Vervollständige Bankname un...

Bernd Wurst authored 10 years ago

83) output('
84) <script type="text/javascript">
85) 
86) function populate_bankinfo(result) {
87)   bank = result[0];
88)   $(\'#bankname\').val(bank.bankname);
89)   $(\'#bic\').val(bank.bic);
90)     
91) }
92) 
93) function searchbank() 
94) {
95)   var iban = $(\'#iban\').val();
96)   if (iban.substr(0,2) == "DE" && iban.length == 22) {
97)     $("#bankname").prop("disabled", true);
98)     $("#bic").prop("disabled", true);
99)     $.getJSON("sepamandat_banksearch?iban="+iban, populate_bankinfo)
100)       .always( function() {
101)         $("#bankname").prop("disabled", false);
102)         $("#bic").prop("disabled", false);
103)       });
104) 
105)   }
106) }
107) 
108) $(\'#iban\').on("change keyup paste", searchbank );
Bernd Wurst Erste Version des SEPA-Mand...

Bernd Wurst authored 10 years ago

109) 
Bernd Wurst Vervollständige Bankname un...

Bernd Wurst authored 10 years ago

110) </script>
111) ');