onebit Posted June 4 Share Posted June 4 Proszę o pomoc bardziej doświadczonych kolegów również koleżanki w temacie: Jak wyświetlić cenę, która będzie sformatowana. Użyłem takiego zapisu: <p class="product-without-taxes">Cena netto: {l s='%price%' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}</p> Efekt jaki uzyskuję to cena netto: Jak sformatować tą cenę używając ustawienia sklepu czyli np: 1 254,45 zł Tak by wyświetlał mi cenę netto z walutą i odpowiednio sformatowane. Bardzo dziękuję za podpowiedzi Link to comment Share on other sites More sharing options...
1 atomek Posted June 4 Share Posted June 4 Spróbuj w ten sposób: {Context::getContext()->currentLocale->formatPrice($product.price_tax_exc, $currency.iso_code)} Link to comment Share on other sites More sharing options...
0 onebit Posted June 4 Author Share Posted June 4 55 minutes ago, atomek said: Spróbuj w ten sposób: {Context::getContext()->currentLocale->formatPrice($product.price_tax_exc, $currency.iso_code)} Rewelacja dziękuję bardzo za pomoc Link to comment Share on other sites More sharing options...
0 onebit Posted June 12 Author Share Posted June 12 On 6/4/2024 at 8:11 PM, atomek said: Spróbuj w ten sposób: {Context::getContext()->currentLocale->formatPrice($product.price_tax_exc, $currency.iso_code)} Dziękuję za Twoja pomoc, ale teraz mam taki układ, ze wyświetla sie cena netto jako ustawiona i potrzebuję w miejscu tego co było ceną netto wyświetlać cenę brutto Wielki dzięki za pomoc Link to comment Share on other sites More sharing options...
0 atomek Posted June 13 Share Posted June 13 Cenę brutto możesz wyliczyć np. w ten sposób: $product.price_tax_exc * (1 + $product.rate / 100) albo zobacz co jest dostępne w zmiennej $product {$product|dump} Link to comment Share on other sites More sharing options...
Question
onebit
Proszę o pomoc bardziej doświadczonych kolegów również koleżanki w temacie:
Jak wyświetlić cenę, która będzie sformatowana.
Użyłem takiego zapisu:
<p class="product-without-taxes">Cena netto: {l s='%price%' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}</p>
Efekt jaki uzyskuję to cena netto:
Jak sformatować tą cenę używając ustawienia sklepu czyli np: 1 254,45 zł
Tak by wyświetlał mi cenę netto z walutą i odpowiednio sformatowane.
Bardzo dziękuję za podpowiedzi
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now