3648 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Dieses Template dient zur Integration der Admin Kontodaten in eine Bestellung (HTML)
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
<p>
|
|
|
9 |
<?php echo wpsg_translate(__('Bitte überweisen Sie den Rechnungsbetrag in Höhe von #1# auf folgendes Konto und geben Sie als Betreff <strong>#2#</strong> an.', 'wpsg'), wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')), $this->view['mod_prepayment']['subject']); ?>
|
|
|
10 |
</p>
|
|
|
11 |
|
|
|
12 |
<table style="width:100%;">
|
|
|
13 |
<tr>
|
|
|
14 |
<td><?php echo __('Kontoinhaber', 'wpsg'); ?>:</td>
|
3748 |
daniel |
15 |
<td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_kinhaber')); ?></td>
|
3648 |
daniel |
16 |
</tr>
|
|
|
17 |
<tr>
|
3748 |
daniel |
18 |
<td><?php echo __('IBAN', 'wpsg'); ?>:</td>
|
|
|
19 |
<td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_iban')); ?></td>
|
3648 |
daniel |
20 |
</tr>
|
|
|
21 |
<tr>
|
|
|
22 |
<td><?php echo __('Bank', 'wpsg'); ?>:</td>
|
3748 |
daniel |
23 |
<td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_bank')); ?></td>
|
|
|
24 |
</tr>
|
3648 |
daniel |
25 |
<tr>
|
7191 |
thomas |
26 |
<td><?php echo __('BIC-/SWIFT-Code', 'wpsg'); ?>:</td>
|
3748 |
daniel |
27 |
<td style="text-align:right;"><?php echo $this->replaceUniversalPlatzhalter($this->get_option('wpsg_mod_prepayment_swift')); ?></td>
|
3648 |
daniel |
28 |
</tr>
|
|
|
29 |
</table>
|