1105 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template welches bei der Zahlungsart "Vorkasse" nach Abschluß einer Bestellung angezeigt wird
|
|
|
5 |
*/
|
|
|
6 |
|
1618 |
david |
7 |
//wpsg_debug($this->view['wpsg_mod_prepayment']['subject']);
|
1105 |
daniel |
8 |
|
|
|
9 |
?>
|
2571 |
roger |
10 |
<?php echo wpsg_translate(__('Sie haben die Zahlungsart "Vorkasse" gewählt. Überweisen Sie daher den Rechnungsbetrag von #1# auf folgendes Konto:', 'wpsg'), wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency'))); ?>
|
1105 |
daniel |
11 |
<br /><br />
|
3748 |
daniel |
12 |
<?php echo wpsg_translate(__('Kontoinhaber: #1#', 'wpsg'), $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_kinhaber'))); ?><br />
|
|
|
13 |
<?php echo wpsg_translate(__('IBAN: #1#', 'wpsg'), $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_iban'))); ?><br />
|
|
|
14 |
<?php echo wpsg_translate(__('Bank: #1#', 'wpsg'), $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_bank'))); ?><br />
|
|
|
15 |
<?php echo wpsg_translate(__('BIC-/SWIFT-Code: #1#', 'wpsg'), $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_swift'))); ?>
|
1618 |
david |
16 |
<br /><br />
|
6664 |
thomas |
17 |
<?php echo wpsg_translate(__('Bitte als Betreff angeben: "#1#"', 'wpsg'), $this->view['wpsg_mod_prepayment']['subject']); ?>
|
|
|
18 |
|
|
|
19 |
<?php if (isset($this->view['wpsg_mod_prepayment']['subject'])) { ?>
|
|
|
20 |
<p><?php echo __('Wenn Ihre Banking-App Girocode unterstützt, können Sie diesen QRCode scannen.', 'wpsg'); ?></p>
|
|
|
21 |
<?php
|
|
|
22 |
require_once WPSG_PATH_LIB.'phpgirocode.class.php';
|
|
|
23 |
|
|
|
24 |
$img = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'],
|
|
|
25 |
$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_BASE64));
|
|
|
26 |
?>
|
|
|
27 |
<img src="data:image/gif;base64,<?php echo $img; ?>" alt="" />
|
|
|
28 |
|
|
|
29 |
<pre style="display:none;"><?php echo $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'],
|
|
|
30 |
$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_TEST));
|
|
|
31 |
?></pre>
|
|
|
32 |
<?php } ?>
|