Subversion Repositories wpShopGermany4

Rev

Rev 7672 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7672 Rev 7900
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
?><div class="baskettable_wrap">
9
?><div class="baskettable_wrap">
7
	<table class="baskettable" cellpadding="2" cellspacing="0" style="cell-padding:4px;">
10
	<table class="baskettable" cellpadding="2" cellspacing="0" style="cell-padding:4px;">
Line 199... Line 202...
199
			<td style="padding:4px; line-height:100%; vertical-align:middle;" class="col_amount">&nbsp;</td>
202
			<td style="padding:4px; line-height:100%; vertical-align:middle;" class="col_amount">&nbsp;</td>
200
			<td style="padding:4px; line-height:100%; vertical-align:middle;" class="col_sum"><strong><?php echo wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')); ?></strong></td>
203
			<td style="padding:4px; line-height:100%; vertical-align:middle;" class="col_sum"><strong><?php echo wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')); ?></strong></td>
201
		</tr>
204
		</tr>
202
		<?php $this->callMods('mail_order_end', [&$this->view['basket']['arCalculation'], true]); ?>	
205
		<?php $this->callMods('mail_order_end', [&$this->view['basket']['arCalculation'], true]); ?>	
203
	</table>
206
	</table>
-
 
207
 
-
 
208
    <?php
-
 
209
 
-
 
210
        $arCV = $oOrder->getCustomer()->getCustomerVariables();
-
 
211
 
-
 
212
        if (wpsg_isSizedArray($arCV)) { ?>
-
 
213
 
-
 
214
            <strong><?php echo __('Weitere Kundendaten', 'wpsg'); ?>:</strong><br />
-
 
215
 
-
 
216
            <table>
-
 
217
 
-
 
218
                <?php foreach ($arCV as $cv) { ?>
-
 
219
                    <tr>
-
 
220
                        <th><?php echo $cv['label']; ?></th>
-
 
221
                        <td><?php echo $cv['value']; ?></td>
-
 
222
                    </tr>
-
 
223
                <?php } ?>
-
 
224
 
-
 
225
            </table>
-
 
226
 
-
 
227
        <?php }
-
 
228
 
-
 
229
    ?>
-
 
230
 
204
</div>
231
</div>
205
	
232
	
206
<br />
233
<br />
207
234