From cdc8251d9a70f10dd6cf39540b5171e94c4f1006 Mon Sep 17 00:00:00 2001 From: Martin Tatzber Date: Fri, 24 Jan 2014 13:31:15 +0000 Subject: [PATCH] =?UTF-8?q?Popup-Fenster=20f=C3=BCr=20offene=20Zahlungen?= =?UTF-8?q?=20im=20CIS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cis/private/profile/zahlungen.php | 6 +- cis/private/profile/zahlungen_details.php | 72 +++++++++++++++++++++++ 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 cis/private/profile/zahlungen_details.php diff --git a/cis/private/profile/zahlungen.php b/cis/private/profile/zahlungen.php index 4c1895687..16e1c626b 100644 --- a/cis/private/profile/zahlungen.php +++ b/cis/private/profile/zahlungen.php @@ -118,7 +118,11 @@ //Auszahlung } else - echo $p->t('tools/offen'); + { + echo ''.$p->t('tools/offen').''; + } echo ''; echo ''; } diff --git a/cis/private/profile/zahlungen_details.php b/cis/private/profile/zahlungen_details.php new file mode 100644 index 000000000..9f958e0fe --- /dev/null +++ b/cis/private/profile/zahlungen_details.php @@ -0,0 +1,72 @@ +, + */ + + require_once('../../../config/cis.config.inc.php'); +// require_once('../../../include/functions.inc.php'); + require_once('../../../include/konto.class.php'); + + if(isset($_GET['buchungsnr'])) + $buchungsnr=$_GET['buchungsnr']; + else + $buchungsnr=''; + + $konto=new konto(); + $konto->load($buchungsnr); + + $konto->getBuchungstyp(); + $buchungstyp = array(); + foreach ($konto->result as $row) + $buchungstyp[$row->buchungstyp_kurzbz]=$row->beschreibung; + + echo ' + + + + Zahlungsdetails + + + + '; + + echo ' + + + + + + + + + + + + + + + + + + + + + +
Buchungstyp'.$buchungstyp[$konto->buchungstyp_kurzbz].'
Buchungstext'.$konto->buchungstext.'
EmpfängerFHTW
IBANAT99 1111 2222 3333 4444
BICABCDEFGHIJK
Betrag'.$konto->betrag.'
Zahlungsreferenz'.$konto->zahlungsreferenz.'
'; + echo ''; +?>