Hanno Böck 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'; title('Daten Ihres Lastschrift-Mandats'); $ref = $_REQUEST['ref']; $mandate = get_sepamandate(); $m = NULL; foreach ($mandate as $man) { if ($man['mandatsreferenz'] == $ref) { $m = $man; } } if (! $m) { system_failure('Konnte das Mandat nicht finden.'); } if ($m['medium'] == 'legacy') { output('

Sie hatten uns vor längerer Zeit eine Einzugsermächtigung ausgesprochen. Wir haben diese selbstständig in das nachstehende SEPA-Mandat überführt.

'); } else { $medium = 'über unser Webinterface'; switch ($m['medium']) { case 'email': $medium = 'per E-Mail'; break; case 'fax': $medium = 'per Fax'; break; case 'post': $medium = 'per Post'; break; } output('

Wir haben das nachstehende Mandat am '.$m['erteilt'].' '.$medium.' entgegen genommen.

'); } output('

Stammdaten

Mandatsreferenz
'.$m['mandatsreferenz'].'
Unsere Gläubiger-ID
'.$m['glaeubiger_id'].'
'); output('

Gültigkeit

'); $gueltigkeit = 'ab '.$m['gueltig_ab']; if ($m['gueltig_ab'] < date('Y-m-d')) { $gueltigkeit = 'seit '.$m['gueltig_ab']; } if ($m['gueltig_bis']) { $gueltigkeit = 'von '.$m['gueltig_ab'].' bis '.$m['gueltig_bis']; } if ($m['gueltig_ab'] <= date('Y-m-d') && ($m['gueltig_bis'] == NULL || $m['gueltig_bis'] >= date('Y-m-d'))) { output('

Das Mandat ist momentan gültig ('.$gueltigkeit.').

'); } elseif ($m['gueltig_ab'] > date('Y-m-d')) { output('

Das Mandat ist noch nicht gültig ('.$gueltigkeit.').

'); } else { output('

Das Mandat ist erloschen ('.$gueltigkeit.').

'); } $lastschriften = get_lastschriften($m['mandatsreferenz']); if (! $lastschriften) { output('

Es wurden bisher keine Abbuchungen mit Bezug auf dieses Mandat durchgeführt.

'); } else { output('

Dieses Mandat wurde bisher für folgende Abbuchungen in Anspruch genommen:

'); } output('

Kontodaten

Kontoinhaber
'.$m['kontoinhaber'].'
Adresse des Kontoinhabers
'.nl2br($m['adresse']).'
IBAN
'.$m['iban'].'
Name der Bank
'.$m['bankname'].'
BIC
'.$m['bic'].'
'); output('

'.internal_link('current', 'Zurück').'

'); ?>