Line 1... |
Line 1... |
1 |
<?php
|
1 |
<?php
|
2 |
|
2 |
|
- |
|
3 |
/** @var wpsg_order $oOrder */
|
- |
|
4 |
$oOrder = $this->view['oOrder'];
|
- |
|
5 |
|
3 |
if ($this->getFrontendTaxView() === WPSG_BRUTTO) $display_brutto_netto = 'brutto';
|
6 |
if ($this->getFrontendTaxView() === WPSG_BRUTTO) $display_brutto_netto = 'brutto';
|
4 |
else $display_brutto_netto = 'netto';
|
7 |
else $display_brutto_netto = 'netto';
|
5 |
|
8 |
|
6 |
?><?php if (sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1') { $prod_col = 25; } else { $prod_col = 35; } ?>
|
9 |
?><?php if (sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1') { $prod_col = 25; } else { $prod_col = 35; } ?>
|
7 |
|
10 |
|
Line 119... |
Line 122... |
119 |
<?php echo wpsg_pad_left(' ', 61); ?>---------------
|
122 |
<?php echo wpsg_pad_left(' ', 61); ?>---------------
|
120 |
<?php echo wpsg_pad_right(__('Gesamtpreis:', 'wpsg'), 37); ?>
|
123 |
<?php echo wpsg_pad_right(__('Gesamtpreis:', 'wpsg'), 37); ?>
|
121 |
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')), 34); ?>
|
124 |
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')), 34); ?>
|
122 |
<?php $this->callMods('mail_order_end', [&$this->view['basket']['arCalculation'], false]); ?>
|
125 |
<?php $this->callMods('mail_order_end', [&$this->view['basket']['arCalculation'], false]); ?>
|
123 |
|
126 |
|
124 |
<?php $this->callMods('mail_aftercalculation', array(&$this->view['order']['id'])); ?>
|
- |
|
125 |
|
127 |
<?php $this->callMods('mail_aftercalculation', array(&$this->view['order']['id'])); ?>
|
- |
|
128 |
<?php
|
- |
|
129 |
|
- |
|
130 |
$arCV = $oOrder->getCustomer()->getCustomerVariables();
|
- |
|
131 |
|
- |
|
132 |
if (wpsg_isSizedArray($arCV)) { ?>
|
- |
|
133 |
<?php echo __('Weitere Kundendaten', 'wpsg'); ?>:
|
- |
|
134 |
|
- |
|
135 |
<?php foreach ($arCV as $cv) { ?>
|
- |
|
136 |
<?php echo $cv['label']; ?>: <?php echo $cv['value']."\r\n"; ?>
|
- |
|
137 |
<?php } ?>
|
- |
|
138 |
<?php } ?>
|
- |
|
139 |
|
126 |
|
140 |
|