<% if (showWegPriceBox($row()) && ( showBasePrice($row()) || getGrossPrice($row()) || getDiscount($row()) || getWeeeTax($row()) || getWeeeTaxTitle($row()) || showCustomerPriceArea($row())) ) { %>
<% if (showBasePrice($row())) { %> <% var regularPrice = getRegularPrice($row()); %> <% if (regularPrice) { %> <% if (tooltipContent) { %>
<%= tooltipContent %> <%= getBasePriceLabel($row()) %>
<% } %> <%= getBasePriceLabel($row()) %> <%= regularPrice %>
<% } %> <% if (hasSpecialPrice($row())) { %> <%= getSpecialPriceLabel() %> <%= getPrice($row()) %> <% } %> <% } %> <% var GrossPrice = getGrossPrice($row()); %> <% if (GrossPrice) { %> <%= $t('Gross Price') %> <%= GrossPrice %> <% } %> <% var Discount = getDiscount($row()); %> <% if (Discount) { %> <%= $t('Discount') %> <%= Discount %> <% } %> <% var WeeeTax = getWeeeTax($row()); %> <% if (WeeeTax) { %> <%= $t('WEEE') %> <%= formatPrice(WeeeTax) %> <% } %> <% if (showCustomerPriceArea($row())) { %> <% var priceDifference = null %> <% var customerPrice = getCustomerPrice($row()); %> <% if (showDiscount) { %> <% priceDifference = getCustomerRegularPriceDifference($row()) %> <% } %> <%= getCustomerPriceLabel() %> <% if (priceDifference) { %> (<%= formatPriceDiff(priceDifference) %>) <% } %> <% if (showCustomerPriceLink($row())) { %> <%= $t('Click here') %> <% } %> <% if (!showCustomerPriceLink($row())) { %> <%= customerPrice %> <% } %> <% } %> <% var weeeTaxTitle = getWeeeTaxTitle($row()); %> <% if (weeeTaxTitle) { %>
<%= weeeTaxTitle %>
<% } %>
<% } %>