Jump to content
  • 0

Ceny brutto w koszyku


grze11

Question

Potrzebuje pomocy w ustawienia cen brutto w koszyku.

Aktualnie domyślnie nam ceny Netto w sklepie. Na liście produktów udało mi się ustawić też widoczną cenę brutto dla klientów i chce, aby do koszyka były już pobierane ceny brutto.

Mam taki kod, ale kompletnie nie wiem co tu zmienić.

<div class="cart-prices">
							<div class="cart-prices-line first-line">
								<span class="price_text">
									{l s='Shipping :' mod='spblockcart'}
								</span>
								<span class="price cart_block_shipping_cost ajax_cart_shipping_cost">
									{if $shipping_cost_float == 0}
										{l s='Free shipping!' mod='spblockcart'}
									{else}
										{$shipping_cost}
									{/if}
								</span>
								
							</div>
							{if $show_wrapping}
								<div class="cart-prices-line">
									<span class="price_text">
										{l s='Wrapping' mod='spblockcart'}
									</span>
									{assign var='cart_flag' value='Cart::ONLY_WRAPPING'|constant}
									<span class="price cart_block_wrapping_cost">
										{if $priceDisplay == 1}
											{convertPrice price=$cart->getOrderTotal(false, $cart_flag)}{else}{convertPrice price=$cart->getOrderTotal(true, $cart_flag)}
										{/if}
									</span>
									
							   </div>
							{/if}
							{if $show_tax && isset($tax_cost)}
								<div class="cart-prices-line">
									<span class="price cart_block_tax_cost ajax_cart_tax_cost">{$tax_cost}</span>
									<span>{l s='Tax' mod='spblockcart'}</span>
								</div>
							{/if}
						</div>
						
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...