File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/d7a0fc2e0304e1b197ef423291bfe1bf
<div class="number">3</div> <h2><?php echo Lang::get('checkout/checkout.order.title'); ?></h2> <table class="order-info-table"> <tr class="heading"> <td class="product-info"><?php echo Lang::get('partials/orderOverview.description'); ?></td> <td class="square"><?php echo Lang::get('partials/orderOverview.quantity'); ?></td> <td class="square"><?php echo Lang::get('partials/orderOverview.from_price_without_discount'); ?></td> <td class="square"><?php echo Lang::get('partials/orderOverview.discount'); ?></td> <td class="square last"><?php echo Lang::get('partials/orderOverview.price'); ?></td> </tr> <?php if(count($checkout->cart()->products()) == 0): ?> <?php echo Lang::get('checkout/cart.no_products'); ?> <?php endif; ?> <?php foreach($checkout->cart()->products() as $product): ?> <tr> <td class="product-info"> <strong><?php echo (strtolower($product['data']->brand_name) != 'toebehoren'?$product['data']->brand_name.' ': ''); ?><?php echo $product['data']->name; ?></strong><br/> <?php if($product['data']->special_1): ?> <?php echo $product['data']->special_1; ?><br/> <?php endif; ?> <?php if($product['data']->product_group !== null): ?> <?php if(Lang::has('pages/products.' . $product['data']->product_group)): ?> <?php echo Lang::get('pages/products.' . $product['data']->product_group); ?> <?php else: ?> <?php echo $product['data']->product_group; ?> <?php endif; ?> <?php endif; ?> <?php if(!empty($product['data']->filter_class)): ?> <?php echo $product['data']->filter_class; ?> <?php endif; ?> <br/> <?php echo Lang::get('pages/products.article_number'); ?> TOPS: <?php echo $product['data']->internal_article_number; ?> <?php echo $product['data']->composition_formatted; ?> </td> <td class="square"> <?php echo $product['quantity']; ?> <?php if(strpos(strtolower($product['data']->product_group), 'filterset') !== false || strpos(strtolower($product['data']->product_group), 'filtergrepen') !== false): ?> <?php echo Lang::get('pages/products.units.sets'); ?> <?php elseif(strpos(strtolower($product['data']->product_group), 'filter') !== false): ?> <?php echo Lang::get('pages/products.units.filters'); ?> <?php endif; ?> </td> <td class="square"> <span class="price" ng-hide="invoiceCompany"><?php echo Format::asPrice($product['data']->price * $product['quantity']); ?></span> <span class="price" ng-show="invoiceCompany"><?php echo Format::asPrice($product['data']->getPriceExVat($product['quantity'])); ?></span> </td> <td class="square"> <?php if($product['data']->hasDiscount($product['quantity'], $checkout->cart()->getCouponCode(), $checkout->cart()->getBatchId())): ?> <span class="discount"><?php echo $product['data']->getDiscountSummary($product['quantity'], $checkout->cart()->getCouponCode(), $checkout->cart()->getBatchId()); ?></span> <?php else: ?> - <?php endif; ?> </td> <td class="square last"> <span class="price" ng-hide="invoiceCompany"><?php echo Format::asPrice($product['data']->getDiscountPrice($product['quantity'], $checkout->cart()->getCouponCode(), $checkout->cart()->getBatchId())); ?></span> <span class="price" ng-show="invoiceCompany"><?php echo Format::asPrice( $product['data']->getDiscountPriceExVat( $product['quantity'], $checkout->cart()->getCouponCode(), $checkout->cart()->getBatchId() )); ?></span> </td> </tr> <?php endforeach; ?> </table> <div class="summary"> <?php /* Sub Total */ ?> <div class="summary-row"> <span class="title"><?php echo Lang::get('partials/pricingOverview.subtotal'); ?></span> <span class="price" ng-init="subTotal = <?php echo $checkout->cart()->totalProductPrice(); ?>" ng-hide="invoiceCompany"><?php echo Format::asPrice($checkout->cart()->totalProductPrice(), ['currency' => '€']); ?></span> <span class="price" ng-init="subTotalEx = <?php echo $checkout->cart()->totalProductPriceExVat(); ?>" ng-show="invoiceCompany"><?php echo Format::asPrice($checkout->cart()->totalProductPriceExVat(), ['currency' => '€']); ?></span> </div> <?php /* Discount */ ?> <div class="summary-row" ng-show="discount > 0"> <span class="title"><?php echo Lang::get('partials/pricingOverview.order_discount'); ?></span> <span class="price" ng-hide="invoiceCompany" ng-init="discount = <?php echo $checkout->cart()->getDiscount(); ?>">- <?php echo Format::asPrice($checkout->cart()->getDiscount(), ['currency' => '€']); ?></span> <span class="price" ng-show="invoiceCompany" ng-init="discountEx = <?php echo $checkout->cart()->getDiscountExVat(); ?>">- <?php echo Format::asPrice($checkout->cart()->getDiscountExVat(), ['currency' => '€']); ?></span> </div> <?php /* Shipping Costs */ ?> <div class="summary-row" ng-init="highestVatPercentage = <?php echo $checkout->cart()->highestVatPercentage(); ?>"> <span class="title"><?php echo Lang::get('partials/pricingOverview.shipping'); ?></span> <span class="price" ng-hide="invoiceCompany" ng-init="shippingCosts = <?php echo $checkout->cart()->shipping(); ?>" ng-bind-html="(shippingCosts / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->shipping(), ['currency' => '€']); ?></span> <span class="price" ng-show="invoiceCompany" ng-init="shippingCostsEx = <?php echo $checkout->cart()->shippingWithoutVat(); ?>" ng-bind-html="(shippingCostsEx / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->shippingWithoutVat(), ['currency' => '€']); ?></span> </div> <?php /* Price VAT excluded */ ?> <div> <?php /*This block is only shown when -There is an invoice compamy AND the country is not NL and shipping is not NL -OR invoiceCompany and country is nl*/ ?> <div class="summary-row total" ng-show="(invoiceCompany &&(invoiceCountry != 'NL' && ( shippingType != 'add-shipping-address' || shippingCountry != 'NL'))||(invoiceCompany && invoiceCountry == 'NL'))"> <?php /*Totaal (Excl BTW)*/ ?> <span class="title"><?php echo Lang::get('partials/pricingOverview.total'); ?><span class="extra">(<?php echo Lang::get('partials/pricingOverview.excl_vat'); ?>)</span></span> <span class="price" ng-bind-html="(getTotalCostsEx() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->priceWithoutVat( $checkout->cart()->totalPrice() ), ['currency' => '€']); ?></span> </div> <?php /* VAT normal */ ?> <?php /*This is shown when invoiceCompany is set and country is nl*/ ?> <div class="summary-row vat" ng-show="invoiceCompany && invoiceCountry == 'NL'"> <?php /*Prijs inclusief BTW*/ ?> <span class="title"><?php echo Lang::get('partials/pricingOverview.price_with_vat'); ?></span> <span class="price" ng-bind-html="(getTotalCosts() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->totalPrice(), ['currency' => '€']); ?></span> </div> <?php /* VAT reverse charge */ ?> <?php /*This in shown when invoiceCompany and country is not nl and shipping is not nl*/ ?> <div class="summary-row vat" ng-show="(invoiceCompany &&(invoiceCountry != 'NL' && ( shippingType != 'add-shipping-address' || shippingCountry != 'NL')))"> <?php /*Btw verlegd (€ 0)*/ ?> <span class="title"><?php echo Lang::get('partials/pricingOverview.vat_reverse_charge'); ?></span> <span class="price"><?php echo Format::asPrice(0, ['currency' => '€']); ?></span> </div> </div> <?php /* Price VAT included */ ?> <?php /*This is shown when no invoicompany OR invoice country is not nl and shipping is nl*/ ?> <div ng-show="!(invoiceCompany) || (invoiceCountry != 'NL' && (shippingType == 'add-shipping-address' && shippingCountry == 'NL'))"> <div class="summary-row total"> <span class="title"><?php echo Lang::get('partials/pricingOverview.total'); ?></span> <span class="price" ng-bind-html="(getTotalCosts() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->totalPrice(),['currency' => '€']); ?></span> </div> <div class="summary-row vat"> <span class="title"><?php echo Lang::get('partials/pricingOverview.price_without_vat'); ?></span> <span class="price" ng-bind-html="(getTotalCostsEx() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->priceWithoutVat( $checkout->cart()->totalPrice() ), ['currency' => '€']); ?></span> </div> </div> </div>