Subversion Repositories wpShopGermany4

Rev

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

Rev 7305 Rev 7867
Line 101... Line 101...
101
<?php } ?>
101
<?php } ?>
102
     <?php echo wpsg_pad_right(__('Zwischensumme:', 'wpsg'), 40); ?>
102
     <?php echo wpsg_pad_right(__('Zwischensumme:', 'wpsg'), 40); ?>
103
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis'], $this->get_option('wpsg_currency')), 31); ?>
103
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis'], $this->get_option('wpsg_currency')), 31); ?>
104
<?php if ($this->view['basket']['sum']['preis_shipping'] != 0 || $this->get_option('wpsg_hideemptyshipping') != '1') { ?> 
104
<?php if ($this->view['basket']['sum']['preis_shipping'] != 0 || $this->get_option('wpsg_hideemptyshipping') != '1') { ?> 
105
     <?php echo wpsg_pad_right(__('Versandkosten', 'wpsg'), 40); ?>
105
     <?php echo wpsg_pad_right(__('Versandkosten', 'wpsg'), 40); ?>
106
<?php echo wpsg_pad_left(wpsg_ff($this->arShipping[$this->view['basket']['checkout']['shipping']]['mwst_value'],'% '), 10); ?>
106
<?php echo wpsg_pad_left(wpsg_ff($this->arShipping[$this->view['basket']['checkout']['shipping']]['mwst_value']??0,'% '), 10); ?>
107
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_shipping'], $this->get_option('wpsg_currency')), 21); ?> 
107
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_shipping'], $this->get_option('wpsg_currency')), 21); ?> 
108
<?php } ?>
108
<?php } ?>
109
<?php if ($this->view['basket']['sum']['preis_payment'] != 0 || $this->get_option('wpsg_hideemptypayment') != '1') { ?>
109
<?php if ($this->view['basket']['sum']['preis_payment'] != 0 || $this->get_option('wpsg_hideemptypayment') != '1') { ?>
110
     <?php echo wpsg_pad_right(__('Zahlungsart', 'wpsg'), 40); ?>
110
     <?php echo wpsg_pad_right(__('Zahlungsart', 'wpsg'), 40); ?>
111
<?php echo wpsg_pad_left(wpsg_ff($this->arPayment[$this->view['basket']['checkout']['payment']]['mwst_value'],'% '), 10); ?>
111
<?php echo wpsg_pad_left(wpsg_ff($this->arPayment[$this->view['basket']['checkout']['payment']]['mwst_value']??0,'% '), 10); ?>
112
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_payment'], $this->get_option('wpsg_currency')), 21); ?> 
112
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_payment'], $this->get_option('wpsg_currency')), 21); ?> 
113
<?php } ?>
113
<?php } ?>
114
<?php //wpsg_debug($this->view['basket']['mwst']) ?>
114
<?php //wpsg_debug($this->view['basket']['mwst']) ?>
115
<?php if ($this->get_option('wpsg_kleinunternehmer') == '1') { ?>
115
<?php if ($this->get_option('wpsg_kleinunternehmer') == '1') { ?>
116
<?php echo $this->get_option('wpsg_kleinunternehmer_text'); ?>
116
<?php echo $this->get_option('wpsg_kleinunternehmer_text'); ?>
Line 126... Line 126...
126
<?php }?>
126
<?php }?>
127
<?php echo wpsg_pad_left(' ', 61); ?>---------------
127
<?php echo wpsg_pad_left(' ', 61); ?>---------------
128
     <?php echo wpsg_pad_right(__('Gesamtpreis', 'wpsg'), 37); ?>
128
     <?php echo wpsg_pad_right(__('Gesamtpreis', 'wpsg'), 37); ?>
129
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')), 34); ?> 
129
<?php echo wpsg_pad_left(wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')), 34); ?> 
130
 
130
 
-
 
131
<?php $this->callMods('mail_aftercalculation', array(&$this->view['order']['id'])); ?>
-
 
132
 
131
<?php echo __('Wir bedanken uns fuer Ihre Bestellung.', 'wpsg'); ?> 
133
<?php echo __('Wir bedanken uns fuer Ihre Bestellung.', 'wpsg'); ?> 
132
 
134
 
133
<?php echo __('Es gelten unsere Allgemeinen Geschaeftsbedingungen (AGB).', 'wpsg'); ?>  
135
<?php echo __('Es gelten unsere Allgemeinen Geschaeftsbedingungen (AGB).', 'wpsg'); ?>  
134
 
136
 
135
<?php echo $this->getURL(wpsg_ShopController::URL_AGB); ?>       
137
<?php echo $this->getURL(wpsg_ShopController::URL_AGB); ?>