Claudiocool Posted July 4, 2020 Share Posted July 4, 2020 Hallo zusammen, ich habe gerade in den Mails an den Kunden hinbekommen, dass die Steuer korrekt dargestellt wird, wenn Gutscheine verrechnet werden. da wurde in der /classes/PaymentModule.php entsprechend geändert, siehe dazu den anderen Beitrag von mir... Die wesentliche Änderung dort war: $data['{pds_title}'] = ''; $data['{total_pds}'] = ''; require_once(_PS_MODULE_DIR_.'/paymentdiscountssurcharges/paymentdiscountssurcharges.php'); if (class_exists('PaymentDiscountsSurcharges')) { $value = PaymentDiscountsSurcharges::getOrderPDSData((int)$order->id); if ($value !== false && isset($value['id_module_pds_order'])) { $data['{pds_title}'] = $value['title']; $data['{total_pds}'] = Tools::displayPrice($value['pds_value'], $this->context->currency, false); $data['{total_tax_paid}'] = Tools::displayPrice(($order->total_products_wt - $order->total_products) + ($order->total_shipping_tax_incl - $order->total_shipping_tax_excl) + ($order->total_discounts_tax_excl - $order->total_discounts_tax_incl) + ($value['pds_value_tax_incl'] - $value['pds_value_tax_excl']), $this->context->currency, false); } } Damit wurden dann auch die Nachlässe bzw. AUfschläge aus Silbersaitens Modul korrekt in der Kundenmail verarbeitet. Versuche ich nun selbiges in der mailalerts.php zu machen, scheitere ich, egal, wo ich das hinsetze. Hat jemand eine Idee, wie ich das hinkriege, dass der diese Variablen "pds_title" und "total_pds" auch dort übernimmt und damit rechnet, so dass in der Mail an den Shopbetreiber auch diese Punkte korrekt dargestellt werden?? Link to comment Share on other sites More sharing options...
Claudiocool Posted July 16, 2020 Author Share Posted July 16, 2020 Ich hole es jetzt nochmal hoch, da Silbersaiten kein Interesse hat, zu helfen (Dafür verkaufen die mir jetzt auch das Ampelmodul nicht...) 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