Subversion Repositories wpShopGermany4

Rev

Rev 7305 | Rev 7349 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7305 Rev 7347
Line 335... Line 335...
335
							$this->arShipping[$this->view['basket']['checkout']['shipping']]['name']
335
							$this->arShipping[$this->view['basket']['checkout']['shipping']]['name']
336
						); ?>:
336
						); ?>:
337
 
337
 
338
				</div>
338
				</div>
339
				<div class="value">
339
				<div class="value">
-
 
340
					
340
					<?php if (sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1') {
341
					<?php if (sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1') {
-
 
342
						
341
						if (isset($this->view['basket']['shipping']['tax_rata']) && $this->view['basket']['shipping']['tax_rata'] === true)
343
						$shipping_tax_key = $this->view['basket']['arCalculation']['shipping'][0]['tax_key'];
-
 
344
						
342
						{
345
						if ($shipping_tax_key === '0') {
343
 
346
							
344
							echo __('anteilig', 'wpsg');
347
							echo __('anteilig', 'wpsg');
345
 
348
							
346
						}
-
 
347
						else if (array_key_exists($this->view['basket']['checkout']['shipping'], $this->arShipping))
-
 
348
						{
349
						} else {
349
 
350
							
350
							echo wpsg_ff($this->arShipping[$this->view['basket']['checkout']['shipping']]['mwst_value'], '%');
351
							echo wpsg_ff($this->view['basket']['arCalculation']['tax'][$shipping_tax_key]['tax_value'], '%');
351
 
352
							
352
						}
353
						}
353
				 	}
354
						
354
					?>
355
					} ?>
-
 
356
					
355
				</div>
357
				</div>
356
				<div class="value">
358
				<div class="value">
-
 
359
					<?php 
-
 
360
						
357
					<?php echo wpsg_ff($this->view['basket']['sum']['preis_shipping'], $this->get_option('wpsg_currency')); ?>
361
						echo wpsg_ff($this->view['basket']['sum']['preis_shipping'], $this->get_option('wpsg_currency'));
-
 
362
						
-
 
363
						if (strpos($this->view['basket']['arCalculation']['shipping'][0]['set'], '%') !== false) {
-
 
364
							
-
 
365
							echo '<span class="procent_payship">('.wpsg_ff(wpsg_tf($this->view['basket']['arCalculation']['shipping'][0]['set']), '%').')</span>';
-
 
366
							
-
 
367
						}
-
 
368
						
-
 
369
					?>
358
				</div>
370
				</div>
359
			</div>
371
			</div>
360
			<?php } ?>
372
			<?php } ?>
361
 
373
 
362
			<?php /* Zeile für Zahlungsart BEGIN */ ?>
374
			<?php /* Zeile für Zahlungsart BEGIN */ ?>
Line 364... Line 376...
364
				<div class="overview_sum_row">
376
				<div class="overview_sum_row">
365
					<div class="title">
377
					<div class="title">
366
						<?php echo wpsg_translate(__('Zahlungsart (#1#)', 'wpsg'), $this->arPayment[$this->view['basket']['checkout']['payment']]['name']); ?>:
378
						<?php echo wpsg_translate(__('Zahlungsart (#1#)', 'wpsg'), $this->arPayment[$this->view['basket']['checkout']['payment']]['name']); ?>:
367
					</div>
379
					</div>
368
					<div class="value">
380
					<div class="value">
-
 
381
						
369
						<?php if (sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1') {
382
						<?php if (sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1') {
370
 
383
							
371
							if (isset($this->view['basket']['payment']['tax_rata']) && $this->view['basket']['payment']['tax_rata'] === true)
384
							$payment_tax_key = $this->view['basket']['arCalculation']['payment'][0]['tax_key'];
-
 
385
							
372
							{
386
							if ($payment_tax_key === '0') {
373
 
387
								
374
								echo __('anteilig', 'wpsg');
388
								echo __('anteilig', 'wpsg');
375
 
389
								
376
							}
-
 
377
							else if (array_key_exists(wpsg_getStr($this->view['basket']['checkout']['payment']), $this->arPayment))
-
 
378
							{
390
							} else {
379
 
391
								
380
								echo wpsg_ff($this->arPayment[$this->view['basket']['checkout']['payment']]['mwst_value'], '%');
392
								echo wpsg_ff($this->view['basket']['arCalculation']['tax'][$payment_tax_key]['tax_value'], '%');
381
 
393
								
382
							}
394
							}
383
 
395
							
384
						} ?>
396
						} ?> 
-
 
397
						
385
					</div>
398
					</div>
386
					<div class="value">
399
					<div class="value">
-
 
400
						<?php 
-
 
401
							
387
						<?php echo wpsg_ff($this->view['basket']['sum']['preis_payment'], $this->get_option('wpsg_currency')); ?>
402
							echo wpsg_ff($this->view['basket']['sum']['preis_payment'], $this->get_option('wpsg_currency'));
-
 
403
							
-
 
404
							if (strpos($this->view['basket']['arCalculation']['payment'][0]['set'], '%') !== false) {
-
 
405
								
-
 
406
								echo '<span class="procent_payship">('.wpsg_ff(wpsg_tf($this->view['basket']['arCalculation']['payment'][0]['set']), '%').')</span>';
-
 
407
								
-
 
408
							}
-
 
409
							
-
 
410
						?>
388
					</div>
411
					</div>
389
				</div>
412
				</div>
390
			<?php } ?>
413
			<?php } ?>
391
			<?php /* Zeile für Zahlungsart ENDE */ ?>
414
			<?php /* Zeile für Zahlungsart ENDE */ ?>
392
 
415