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>
|
|
|
15 |
<td style="text-align:right;"><?php echo $this->get_option('wpsg_mod_prepayment_kinhaber'); ?></td>
|
|
|
16 |
</tr>
|
|
|
17 |
<tr>
|
|
|
18 |
<td><?php echo __('Kontonummer', 'wpsg'); ?>:</td>
|
|
|
19 |
<td style="text-align:right;"><?php echo $this->get_option('wpsg_mod_prepayment_knummer'); ?></td>
|
|
|
20 |
</tr>
|
|
|
21 |
<tr>
|
|
|
22 |
<td><?php echo __('Bank', 'wpsg'); ?>:</td>
|
|
|
23 |
<td style="text-align:right;"><?php echo $this->get_option('wpsg_mod_prepayment_bank'); ?></td>
|
|
|
24 |
</tr>
|
|
|
25 |
<tr>
|
|
|
26 |
<td><?php echo __('BLZ', 'wpsg'); ?>:</td>
|
|
|
27 |
<td style="text-align:right;"><?php echo $this->get_option('wpsg_mod_prepayment_blz'); ?></td>
|
|
|
28 |
</tr>
|
|
|
29 |
<tr>
|
|
|
30 |
<td><?php echo __('IBAN', 'wpsg'); ?>:</td>
|
|
|
31 |
<td style="text-align:right;"><?php echo $this->get_option('wpsg_mod_prepayment_iban'); ?></td>
|
|
|
32 |
</tr>
|
|
|
33 |
<tr>
|
|
|
34 |
<td><?php echo __('BIC-/SWIFT-Code', 'wpsg'); ?></td>
|
|
|
35 |
<td style="text-align:right;"><?php echo $this->get_option('wpsg_mod_prepayment_swift'); ?></td>
|
|
|
36 |
</tr>
|
|
|
37 |
</table>
|