File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/9c304d73017f2a53ded03bb70eca7829
<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">€ <?php echo price($product->getOriginalPriceExVat()); ?></td> <td class="order-overview-product-discount"><?php echo $product->discount_description; ?></td> <td class="order-overview-product-price" align="right">€ <?php echo price($product->getPriceExVat()); ?></td> </tr> <?php /*<?php foreach($product->getCompositionAsObject() as $composite): ?>*/ ?> <?php /*<tr class="order-overview-composite">*/ ?> <?php /*<td> </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"> </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%"> </th> <td align="left" width="5%"> </td> <td align="right" width="10%"><?php echo Lang::get('partials/pricingOverview.subtotal'); ?>:</td> <td align="right" width="10%">€ <?php echo price($order->getSubTotalExVat()); ?></td> </tr> <?php if($order->discount_price): ?> <tr class="order-overview-discount"> <th align="left"> </th> <td align="left"> </td> <td align="right"><?php echo Lang::get('partials/pricingOverview.discount'); ?>:</td> <td align="right">(-<?php echo $order->discount_percentage; ?>%) -€ <?php echo price($order->discount_price); ?></td> </tr> <?php endif; ?> <tr class="order-overview-shipping-costs"> <th align="left"> </th> <td align="left"> </td> <td align="right"><?php echo Lang::get('partials/pricingOverview.shipping'); ?>:</td> <?php /*<td align="right">€ <?php echo price($order->shipping_costs); ?>/td> */ ?><?php /*TODO This is a bug*/ ?> <td align="right">€ <?php echo price($order->getShippingCostsExVat()); ?></td> </tr> <?php foreach($order->getTaxTotals() as $taxTotal): ?> <tr class="order-overview-tax"> <th align="left"> </th> <td align="left"> </td> <td colspan="2" align="right"><?php echo Lang::get('partials/pricingOverview.vat_reverse_charge'); ?></td> </tr> <?php endforeach; ?> <tr class="order-overview-total"> <th align="left"> </th> <td align="left"> </td> <td align="right"><?php echo Lang::get('partials/pricingOverview.total'); ?>:</td> <td align="right">€ <?php echo price($order->price_total); ?></td> </tr> <tr> <td align="right" colspan="4" class=""> <?php echo Lang::get('partials/pricingOverview.vat_reverse_charge_warning',['vat' => $order->invoice_company_vat]); ?><br /> BTW-NR Tops: <?php echo Config::get('komma/tops.vat_number'); ?> </td> </tr> </table> </div>