8083 |
karl |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Mail, die beim Schreiben einer Rechnung optional an den Kunden versendet werden kann
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
$arPflicht = $this->loadPflichtFeldDaten();
|
|
|
8 |
$arTitle = explode('|', $arPflicht['anrede_auswahl']);
|
|
|
9 |
|
|
|
10 |
foreach ($this->view['multi_data']['order_data'] as $order_data) {
|
|
|
11 |
|
|
|
12 |
$oOrder = $order_data['oOrder'];
|
|
|
13 |
$str['onr'][] = intval($oOrder->getNr());
|
|
|
14 |
|
|
|
15 |
}
|
|
|
16 |
|
|
|
17 |
//wpsg_debug($this->view);
|
|
|
18 |
|
|
|
19 |
?><?php echo wpsg_translate(__('Hallo #1# #2# #3#,', 'wpsg'), @$arTitle[$this->view['kunde']['title']], $this->view['kunde']['vname'], $this->view['kunde']['name']); ?>
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
<?php echo __("Sie erhalten hiermit Ihre Sammelrechnung in Höhe von", "wpsg"); ?> <?php echo wpsg_ff($this->view['arCalculationSum']['sum']['topay_brutto'], $this->get_option('wpsg_currency')); ?> <?php echo __("für Ihre Bestellungen mit den Bestellnummern:", "wpsg"); ?> <?php echo implode(',', $str['onr']); ?>.
|
|
|
23 |
<?php $this->callMods('wpsg_mod_rechnungen_mail'); ?>
|
|
|
24 |
|
|
|
25 |
<?php echo __("Mit freundlichen Grüßen", "wpsg"); ?>
|
|
|
26 |
|
|
|
27 |
<?php echo __($this->get_option('wpsg_shopdata_name'), 'wpsg'); ?> - <?php echo __('Team', 'wpsg'); ?>
|