3648 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Dieses Template integriert sich in die E-Mails für Kunden und Admin und zeigt die Bankdaten für das Modul "Bankeinzug" an
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
|
|
|
9 |
<table style="width:100%;">
|
|
|
10 |
<tr>
|
|
|
11 |
<td><?php echo __('Name der Bank', 'wpsg'); ?></td>
|
|
|
12 |
<td style="text-align:right;"><?php echo $this->view['wpsg_mod_autodebit']['name']; ?></td>
|
|
|
13 |
</tr>
|
|
|
14 |
<?php if ($this->get_option('wpsg_mod_autodebit_iban') == '1') { ?>
|
|
|
15 |
<tr>
|
|
|
16 |
<td><?php echo __('BIC Code der Bank', 'wpsg'); ?></td>
|
|
|
17 |
<td style="text-align:right;"><?php echo $this->view['wpsg_mod_autodebit']['bic']; ?></td>
|
|
|
18 |
</tr>
|
|
|
19 |
<?php } else { ?>
|
|
|
20 |
<tr>
|
|
|
21 |
<td><?php echo __('BLZ der Bank', 'wpsg'); ?></td>
|
|
|
22 |
<td style="text-align:right;"><?php echo $this->view['wpsg_mod_autodebit']['blz']; ?></td>
|
|
|
23 |
</tr>
|
|
|
24 |
<?php } ?>
|
|
|
25 |
<tr>
|
|
|
26 |
<td><?php echo __('Name des Kontoinhabers', 'wpsg'); ?></td>
|
|
|
27 |
<td style="text-align:right;"><?php echo $this->view['wpsg_mod_autodebit']['inhaber']; ?></td>
|
|
|
28 |
</tr>
|
|
|
29 |
<?php if ($this->get_option('wpsg_mod_autodebit_iban') == '1') { ?>
|
|
|
30 |
<tr>
|
|
|
31 |
<td><?php echo __('IBAN Nr.', 'wpsg'); ?></td>
|
|
|
32 |
<td style="text-align:right;"><?php echo $this->view['wpsg_mod_autodebit']['iban']; ?></td>
|
|
|
33 |
</tr>
|
|
|
34 |
<?php } else { ?>
|
|
|
35 |
<tr>
|
|
|
36 |
<td><?php echo __('Kontonummer', 'wpsg'); ?></td>
|
|
|
37 |
<td style="text-align:right;"><?php echo $this->view['wpsg_mod_autodebit']['knr']; ?></td>
|
|
|
38 |
</tr>
|
|
|
39 |
<?php } ?>
|
|
|
40 |
</table>
|
|
|
41 |
|