Subversion Repositories wpShopGermany4

Rev

Rev 8060 | Rev 8266 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8060 Rev 8139
Line 301... Line 301...
301
				</td>
301
				</td>
302
				<td class="wpsg_cell_gesamt_value wpsg_cell_gesamtpreis">
302
				<td class="wpsg_cell_gesamt_value wpsg_cell_gesamtpreis">
303
					<strong><?php echo wpsg_ff($arCalculation['sum']['brutto']); ?> <?php echo $this->get_option('wpsg_currency'); ?></strong>
303
					<strong><?php echo wpsg_ff($arCalculation['sum']['brutto']); ?> <?php echo $this->get_option('wpsg_currency'); ?></strong>
304
				</td>
304
				</td>
305
			</tr>			
305
			</tr>			
306
			<?php foreach ($arCalculation['tax'] as $tax) { if ($tax['sum'] > 0 && $tax['key'] != '0') { ?>
-
 
307
				<tr class="wpsg_row_mwst wpsg_row_small">
-
 
308
					<td colspan="<?php echo $this->view['colspan']; ?>" class="wpsg_cell_mwst_label">
-
 
-
 
306
            
309
						<?php if ($this->get_option('wpsg_kleinunternehmer') == '1') { ?>
307
            <?php if ($this->get_option('wpsg_kleinunternehmer') == '1') { ?>
-
 
308
                 <tr class="wpsg_row_mwst wpsg_row_small">
-
 
309
                    <td class="wpsg_cell_mwst_value wpsg_cell_gesamtpreis" colspan="<?php echo $this->view['colspan'] + 1; ?>">
310
							<?php echo $this->get_option('wpsg_kleinunternehmer_text'); ?>
310
                        <?php echo $this->get_option('wpsg_kleinunternehmer_text'); ?>
-
 
311
                    </td>
-
 
312
                 </tr>
311
						<?php } else { ?>
313
            <?php } else { ?>
-
 
314
            
-
 
315
                <?php foreach ($arCalculation['tax'] as $tax) { if ($tax['sum'] > 0 && $tax['key'] != '0') { ?>
-
 
316
                    <tr class="wpsg_row_mwst wpsg_row_small">
-
 
317
                        <td colspan="<?php echo $this->view['colspan']; ?>" class="wpsg_cell_mwst_label">
312
							<?php echo wpsg_translate(__('darin enthaltene MwSt. (#1#)', 'wpsg'), $arTax[$tax['key']]); ?>
318
                            <?php echo wpsg_translate(__('darin enthaltene MwSt. (#1#)', 'wpsg'), $arTax[$tax['key']]); ?>                           
313
						<?php } ?>
-
 
314
					</td>
319
                        </td>
315
					<td class="wpsg_cell_mwst_value wpsg_cell_gesamtpreis">
320
                        <td class="wpsg_cell_mwst_value wpsg_cell_gesamtpreis">
316
						<?php echo wpsg_ff($tax['sum']); ?> <?php echo $this->get_option('wpsg_currency'); ?>
321
                            <?php echo wpsg_ff($tax['sum']); ?> <?php echo $this->get_option('wpsg_currency'); ?>
317
					</td>
322
                        </td>
318
				</tr>
323
                    </tr>
319
			<?php } } ?>
324
                <?php } } ?>
320
			
325
                
321
		<?php } ?>
326
            <?php } ?>
322
		
327
			
-
 
328
		<?php } ?>
-
 
329
		
323
		<?php // Wertgutscheine  ?>
330
		<?php // Wertgutscheine  ?>
324
		<?php if (wpsg_isSizedArray($arCalculation['coupon'])) { ?>
331
		<?php if (wpsg_isSizedArray($arCalculation['coupon'])) { ?>
325
			
332
			
326
			<?php foreach ($arCalculation['coupon'] as $c) { ?>
333
			<?php foreach ($arCalculation['coupon'] as $c) { ?>
327
 
334