<?php
/*
This file belongs to the Webinterface of schokokeks.org Hosting

Written 2008-2013 by schokokeks.org Hosting, namely
  Bernd Wurst <bernd@schokokeks.org>
  Hanno Böck <hanno@schokokeks.org>

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.

You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
http://creativecommons.org/publicdomain/zero/1.0/

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.
*/

require_once('invoice.php');

require_role(ROLE_CUSTOMER);
$section = 'invoice_current';

$path = config('jquery_ui_path');

html_header('
<link rel="stylesheet" href="'.$path.'/themes/base/jquery-ui.css" />
<script type="text/javascript" src="'.$path.'/jquery-1.9.0.js" ></script>
<script type="text/javascript" src="'.$path.'/ui/jquery-ui.js" ></script>

');

title('Erteilung eines Mandats zur SEPA-Basis-Lastschrift');

output('<p>Ich ermächtige die Firma schokokeks.org GbR, Zahlungen von meinem Konto mittels Lastschrift
einzuziehen. Zugleich weise ich mein Kreditinstitut an, die von der Firma schokokeks.org GbR auf mein
Konto gezogenen Lastschriften einzulösen.</p>
<p>Hinweis: Ich kann innerhalb von acht Wochen, beginnend mit dem Belastungsdatum, die Erstattung des
belasteten Betrages verlangen. Es gelten dabei diemit meinem Kreditinstitut vereinbarten Bedingungen.
Insbesondere fallen bei Zurückweisung einer gerechtfertigten Abbuchung i.d.R. Gebühren an.</p>');

$name = $_SESSION['customerinfo']['name'];
if ($_SESSION['customerinfo']['company']) {
  if ($_SESSION['customerinfo']['name']) {
    $name = $_SESSION['customerinfo']['company'] .' / '. $_SESSION['customerinfo']['name'];
  } else {
    $name = $_SESSION['customerinfo']['company'];
  }
}
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>');



$first_date = date('Y-m-d');
$invoices = my_invoices();
foreach ($invoices as $i) {
  if ($i['bezahlt'] == 0 && $i['datum'] < $first_date) {
    $first_date = $i['datum'];
  }
}

$html = '<h4>Gültigkeit des Mandats</h4>';
$checked = False;
if ($first_date != date('Y-m-d')) {
  $checked = True;
  $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>';
}
$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>';
$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>';

$html .= '<h4>Ihre Bankverbindung</h4>';
$html .= '<table>
<tr><td><label for="kontoinhaber">Name des Kontoinhabers:</label></td><td><input type="text" name="kontoinhaber" id="kontoinhaber" value="'.$_SESSION['customerinfo']['name'].'" /></td></tr>
<tr><td><label for="adresse">Adresse des Kontoinhabers:</label></td><td><textarea cols="50" lines="2" name="adresse" id="adresse"></textarea></td></tr>
<tr><td><label for="iban">IBAN:</label></td><td><input type="text" name="iban" id="iban" /></td></tr>
<tr><td><label for="bankname">Name der Bank:</label></td><td><input type="text" name="bankname" id="bankname" /></td></tr>
<tr><td><label for="bic">BIC:</label></td><td><input type="text" name="bic" id="bic" /></td></tr>
</table>';

$html .= '<p><input type="submit" value="Mandat erteilen" /></p>';


output(html_form('sepamandat_neu', 'save', 'action=new', $html));

output('
<script type="text/javascript">

function populate_bankinfo(result) {
  bank = result[0];
  $(\'#bankname\').val(bank.bankname);
  $(\'#bic\').val(bank.bic);
    
}

function searchbank() 
{
  var iban = $(\'#iban\').val();
  if (iban.substr(0,2) == "DE" && iban.length == 22) {
    $("#bankname").prop("disabled", true);
    $("#bic").prop("disabled", true);
    $.getJSON("sepamandat_banksearch?iban="+iban, populate_bankinfo)
      .always( function() {
        $("#bankname").prop("disabled", false);
        $("#bic").prop("disabled", false);
      });

  }
}

$(\'#iban\').on("change keyup paste", searchbank );

</script>
');
?>