Jump to content
  • 0

PS 1.7 ceny netto w podsumowaniu zamówienia


Wojtan

Question

Koleżanki, koledzy - mam następujący problem.

Po przeprowadzeniu procesy zakupowego przy podsumowaniu wyświetlają się ceny netto przy produkcie i brutto w ogólnym rozrachunku. Jak mogę to zmienić, aby ceny wszędzie były brutto? Dzięki z góry za pomoc!

PS 1.7.2.4

Zrzut ekranu z 2018-01-08 14-35-24.png

Edited by Wojtan
literówka (see edit history)
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Problem rozwiązany:
Zmiana w pliku themes/MOTYW/templates/checkout/_partials/order-confirmation-table :
 

<div class="row">
              <div class="col-5 text-right checkout-num">{Tools::displayPrice(Tools::ps_round($product['product_price_wt'], 2))}</div>
              <div class="col-2 text-right checkout-num">{$product.quantity}</div>
              <div class="col-5 text-right checkout-num">{Tools::displayPrice(Tools::ps_round({$product.total_wt}, 2))}</div>
            </div>

to załatwia problem cen netto w podsumowaniu.
Jest jeszcze błąd w generowaniu maila z potwierdzeniem zakupu dla klienta - tam też jest cena netto.
Aby go rozwiązać edytujemy plik classes/PaymentModule.php :

 if (isset($product['price']) && $product['price']) {
                            $product_var_tpl['unit_price'] = Tools::displayPrice($product_price, $this->context->currency, false);
                            $product_var_tpl['unit_price_full'] = Tools::displayPrice($product_price, $this->context->currency, false).' '.$product['unity'];
                        } else {
                            $product_var_tpl['unit_price'] = $product_var_tpl['unit_price_full'] = '';
                        }

Źródło rozwiązania: https://www.prestashop.com/forums/topic/607948-ps-17-order-confirmation-shows-no-tax/

  • Like 1
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...