From d41f6698bc794676efbd7d47ea283281a409af07 Mon Sep 17 00:00:00 2001 From: Martin Tatzber Date: Fri, 31 Jan 2014 10:53:51 +0000 Subject: [PATCH] Popup bei offenen Zahlungen im cis --- cis/private/profile/zahlungen_details.php | 61 +++++++++++++---------- 1 file changed, 34 insertions(+), 27 deletions(-) diff --git a/cis/private/profile/zahlungen_details.php b/cis/private/profile/zahlungen_details.php index 7e34a6753..443cb59a0 100644 --- a/cis/private/profile/zahlungen_details.php +++ b/cis/private/profile/zahlungen_details.php @@ -19,10 +19,10 @@ */ require_once('../../../config/cis.config.inc.php'); -// require_once('../../../include/functions.inc.php'); require_once('../../../include/konto.class.php'); require_once('../../../include/bankverbindung.class.php'); require_once('../../../include/studiengang.class.php'); + require_once('../../../include/organisationseinheit.class.php'); if(isset($_GET['buchungsnr'])) @@ -37,6 +37,9 @@ $studiengang->load($konto->studiengang_kz); $bankverbindung=new bankverbindung(); $bankverbindung->load_oe($studiengang->oe_kurzbz); + + $oe=new organisationseinheit(); + $oe->load($studiengang->oe_kurzbz); $konto->getBuchungstyp(); $buchungstyp = array(); @@ -50,49 +53,53 @@ Zahlungsdetails + '; - echo ' + echo '

Einzahlung für '.$konto->vorname.' '.$konto->nachname.'

+
+ + + + + + + - + + + + + +
Zahlungsinformationen
Buchungstyp '.$buchungstyp[$konto->buchungstyp_kurzbz].'
Buchungstext '.$konto->buchungstext.'
Betrag'.abs($konto->betrag).' €
+ + + + + + + + + - + - - - -
Zahlung an
EmpfängerFHTW'.$oe->organisationseinheittyp_kurzbz.' '.$oe->bezeichnung.'
IBAN '.$bankverbindung->result[0]->iban.'
BIC '.$bankverbindung->result[0]->bic.'
Betrag'.$konto->betrag.'
Zahlungsreferenz '.$konto->zahlungsreferenz.'
'; - echo ''; -/* - FHTW - - IBAN - AT99 1111 2222 3333 4444 - - BIC - ABCDEFGHIJK - */ -/* - '.$bankverbindung->result[0]->name.' - - IBAN - '.$bankverbindung->result[0]->iban.' - - BIC - '.$bankverbindung->result[0]->blz.' - */ + + + +'; ?>