Subversion Repositories wpShopGermany4

Rev

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

Rev 8089 Rev 8264
Line 246... Line 246...
246
                        <th class="col_nr wpsg_order" data-order="cdate"><?php echo __('Nr', 'wpsg'); ?></th>
246
                        <th class="col_nr wpsg_order" data-order="cdate"><?php echo __('Nr', 'wpsg'); ?></th>
247
                        <th class="col_customer wpsg_order" data-order="customer"><?php echo __('Kunde', 'wpsg'); ?></th>
247
                        <th class="col_customer wpsg_order" data-order="customer"><?php echo __('Kunde', 'wpsg'); ?></th>
248
                        <th class="col_payment wpsg_order" data-order="payment"><?php echo __('Bezahlmethode', 'wpsg'); ?></th>
248
                        <th class="col_payment wpsg_order" data-order="payment"><?php echo __('Bezahlmethode', 'wpsg'); ?></th>
249
                        <th class="col_shipping wpsg_order" data-order="shipping"><?php echo __('Versandart', 'wpsg'); ?></th>
249
                        <th class="col_shipping wpsg_order" data-order="shipping"><?php echo __('Versandart', 'wpsg'); ?></th>
250
                        <th class="col_products wpsg_order" data-order="products"><?php echo __('Produkte', 'wpsg'); ?></th>
250
                        <th class="col_products wpsg_order" data-order="products"><?php echo __('Produkte', 'wpsg'); ?></th>
-
 
251
                        <?php if ($this->get_option('wpsg_showvalueofgoods')) { ?><th class="col_productsum wpsg_order" data-order="productsum"><?php echo __('Warenwert', 'wpsg'); ?></th><?php } ?>
251
                        <th class="col_sum wpsg_order" data-order="amount"><?php echo __('Bestellwert', 'wpsg'); ?></th>
252
                        <th class="col_sum wpsg_order" data-order="amount"><?php echo __('Bestellwert', 'wpsg'); ?></th>
252
                        <th class="col_state wpsg_order" data-order="state"><?php echo __('Status', 'wpsg'); ?></th>
253
                        <th class="col_state wpsg_order" data-order="state"><?php echo __('Status', 'wpsg'); ?></th>
253
                    </tr>
254
                    </tr>
254
                </thead>
255
                </thead>
255
                <tbody>
256
                <tbody>
Line 406... Line 407...
406
                                <?php } ?>
407
                                <?php } ?>
407
                            
408
                            
408
                            <?php } ?>
409
                            <?php } ?>
409
 
410
 
410
                        </td>
411
                        </td>
-
 
412
                        <?php if ($this->get_option('wpsg_showvalueofgoods')) { ?>
-
 
413
                            <td class="col_productsum">
-
 
414
 
-
 
415
                                <?php $oOrderProducts = $oOrder->getOrderProducts(); ?>
-
 
416
                                <?php foreach ($oOrderProducts as $oOrderProduct) { ?>
-
 
417
                                    <?php $product_sum += $oOrderProduct->getPriceSum($this->getBackendTaxview()); ?>
-
 
418
                                <?php } ?>
-
 
419
                                <?php echo wpsg_ff($product_sum, $this->get_option('wpsg_currency')); ?>
-
 
420
                                <?php $product_sum = 0; ?>
-
 
421
 
-
 
422
                            </td>
-
 
423
                        <?php } ?>
411
                        <td class="col_sum">
424
                        <td class="col_sum">
412
                            <?php echo wpsg_ff($oOrder->getAmount(), $this->get_option('wpsg_currency')); ?>
425
                            <?php echo wpsg_ff($oOrder->getAmount(), $this->get_option('wpsg_currency')); ?>
413
                        </td>
426
                        </td>
414
                        <td class="col_state">
427
                        <td class="col_state">
415
                            <?php echo $oOrder->getStateLabel(); ?>
428
                            <?php echo $oOrder->getStateLabel(); ?>