Jump to content

Ilość miejsc po przecinku w cenie netto


stomasz

Recommended Posts

Cześć, 

mam następujący problem - potrzebuję wyświetlać swoim Klientom cenę netto i brutto. Generalnie poradziłem sobie z tym, dodając w szablonie coś takiego: 

templates/catalog/_partials/miniatures/product.tpl

<p class="product-without-taxes">{l s='%price% tax excl.' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}	</p>

Wygląda to następująco: 

{block name='product_price_and_shipping'}
        {if $product.show_price}
          <div class="product-price-and-shipping">
            {if $product.has_discount}
              {hook h='displayProductPriceBlock' product=$product type="old_price"}

              <span class="regular-price">{$product.regular_price}</span>
              {if $product.discount_type === 'percentage'}
                <span class="discount-percentage">{$product.discount_percentage}</span>
              {/if}
            {/if}

            {hook h='displayProductPriceBlock' product=$product type="before_price"}

            <span itemprop="price" class="price {if $product.has_discount} price_sale{/if}">{$product.price} </span>
			<p class="product-without-taxes">{l s='%price% tax excl.' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}
			</p>

            {hook h='displayProductPriceBlock' product=$product type='unit_price'}

            {hook h='displayProductPriceBlock' product=$product type='weight'}
          </div>
        {/if}
      {/block}

 

Efekt jest taki, że cena wyświetla się, ale z 6 miejscami po przecinku... 

 

Przechwytywanie.JPG.e950143a17f72a4232946a409590e886.JPG

Niestety nie potrafię sobie poradzić ze skróceniem tej ceny, straciłem już nadzieję, więc jesteście ostatnią deską ratunku. Pomóżcie proszę :( 

Link to comment
Share on other sites

Super że działa i że wyłapałeś literówkę, poprawiłem swój kod co by inni kiedyś mieli lżej :)

Tak jeszcze patrząc na screen który dałeś to brakuje Ci znaczka waluty możesz go dodać wstawiając w chciane miejsce {$currency.sign} np przed  {l s=' tax excl.' d='Shop.Theme.Catalog'}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...