HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/115093e8649e9f49b0f9ba20c775d059
<div class="row products-table"> <table width="100%" cellpadding="0" cellspacing="0" border="0" class="order-overview"> <tr> <th align="left" width="10%"><?php echo Lang::get('partials/orderOverview.article_nr'); ?></th> <th align="left" width="50%"><?php echo Lang::get('partials/orderOverview.description'); ?></th> <th align="left" width="10%"><?php echo Lang::get('partials/orderOverview.quantity'); ?></th> <th align="left" width="10%"><?php echo Lang::get('partials/orderOverview.price'); ?></th> <th align="left" width="10%"><?php echo Lang::get('partials/orderOverview.discount'); ?></th> <th align="right" width="10%"><?php echo Lang::get('partials/orderOverview.total'); ?></th> </tr> <?php foreach($order->products as $product): ?> <tr class="order-overview-product"> <td class="order-overview-product-nr"><?php echo $product->internal_article_number; ?></td> <td class="order-overview-product-description"><?php echo $product->title; ?></td> <td class="order-overview-product-quantity"><?php echo $product->quantity; ?> <?php if($product->discount_number_of_items_for_free > 0): ?> + <?php echo $product->discount_number_of_items_for_free; ?> <?php endif; ?> </td> <td class="order-overview-product-original-price">&euro;&nbsp;<?php echo price($product->original_price/$product->quantity); ?></td> <td class="order-overview-product-discount"><?php echo $product->discount_description; ?></td> <td class="order-overview-product-price" align="right">&euro;&nbsp;<?php echo price($product->price); ?></td> </tr> <?php /*<?php foreach($product->getCompositionAsObject() as $composite): ?>*/ ?> <?php /*<tr class="order-overview-composite">*/ ?> <?php /*<td>&nbsp;</td>*/ ?> <?php /*<td><?php echo $composite->type; ?> - <?php echo $composite->size; ?> - <?php echo $composite->class; ?></td>*/ ?> <?php /*<td class="order-overview-product-quantity">*/ ?> <?php /*<?php echo $composite->quantity * $product->quantity; ?>*/ ?> <?php /*<?php if($product->discount_number_of_items_for_free > 0): ?>*/ ?> <?php /*+ <?php echo $product->discount_number_of_items_for_free* $composite->quantity; ?>*/ ?> <?php /*<?php endif; ?>*/ ?> <?php /*</td>*/ ?> <?php /*<td collspan="3">&nbsp;</td>*/ ?> <?php /*</tr>*/ ?> <?php /*<?php endforeach; ?>*/ ?> <?php endforeach; ?> </table> </div> <div class="row"> <table width="100%" cellpadding="0" cellspacing="0" border="0" class=""> <tr class="order-overview-subtotal"> <th align="left" width="75%">&nbsp;</th> <td align="left" width="5%">&nbsp;</td> <td align="right" width="10%"><?php echo Lang::get('partials/pricingOverview.subtotal'); ?>:</td> <td align="right" width="10%">&euro;&nbsp;<?php echo price($order->getSubTotal()); ?></td> </tr> <?php if($order->discount_price): ?> <tr class="order-overview-discount"> <th align="left" width="75%">&nbsp;</th> <td align="left" width="5%">&nbsp;</td> <td align="right"><?php echo Lang::get('partials/pricingOverview.discount'); ?>:</td> <td align="right">(-<?php echo $order->discount_percentage; ?>%) -&euro;&nbsp;<?php echo price($order->discount_price); ?></td> </tr> <?php endif; ?> <tr class="order-overview-shipping-costs"> <th align="left" width="75%">&nbsp;</th> <td align="left" width="5%">&nbsp;</td> <td align="right"><?php echo Lang::get('partials/pricingOverview.shipping'); ?>:</td> <td align="right">&euro;&nbsp;<?php echo price($order->shipping_costs); ?></td> </tr> <?php foreach($order->getTaxTotals() as $taxTotal): ?> <tr class="order-overview-tax"> <th align="left" width="75%">&nbsp;</th> <td align="left" width="5%">&nbsp;</td> <td align="right"><?php echo Lang::get('partials/pricingOverview.vat'); ?> <?php echo $taxTotal['rate']; ?>%</td> <td align="right">&euro;&nbsp;<?php echo price($taxTotal['total']); ?></td> </tr> <?php endforeach; ?> <tr class="order-overview-total"> <th align="left" width="75%">&nbsp;</th> <td align="left" width="5%">&nbsp;</td> <td align="right"><?php echo Lang::get('partials/pricingOverview.total'); ?>:</td> <td align="right">&euro;&nbsp;<?php echo price($order->price_total); ?></td> </tr> </table> </div>