greko_1905 Posted June 2, 2021 Share Posted June 2, 2021 Hallo, Zurzeit sieht die Produktauflistung meiner Bestellbestätigung so aus: Wie man sieht werden hier alle Preise inkl. Mehrwertsteuer ausgegeben. Gibt es da eine möglichkeit in der Zeile {products} die Preise ohne Steuer auszugeben? Die Rot eingekreisten Preise möchte ich ohne Steuer ausgeben. Hat da jemand eine Idee? Link to comment Share on other sites More sharing options...
Claudiocool Posted June 2, 2021 Share Posted June 2, 2021 Einfach die Mathematik bemühen und die Formel dafür einbauen. Link to comment Share on other sites More sharing options...
greko_1905 Posted June 2, 2021 Author Share Posted June 2, 2021 Die Formel ist nicht das Problem aber wo Sie eingebaut wird. Weist du das zufällig? Prestashop Version ist 1.7.6.7 Link to comment Share on other sites More sharing options...
greko_1905 Posted June 2, 2021 Author Share Posted June 2, 2021 Ok einen Teil habe ich gelöst. In der order_conf die der Kunde bekommt werden nun die Netto Preise an der gewünschten Stelle angezeigt aber leider nicht in der Bestellbestätigung die ich als Händler bekomme. In der Datei classes/PaymentModule.php ab Zeile 434 habe ich folgendes geändert: if (isset($product['price']) && $product['price']) { //$product_var_tpl['unit_price'] = Tools::displayPrice($product_price, $this->context->currency, false); $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']; $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'] = ''; } Das ausmarkierte ist der Originalcode und jeweils beim darunterstehende Code wurde $product_price zu ['$product_price'] geändert. Link to comment Share on other sites More sharing options...
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