night66 Posted June 24, 2007 Report Share Posted June 24, 2007 Hallo, ich möchte in der checkout_payment.php den Rabattsatz bei Vorkasse (z.B. - 3% )anzeigen lassen. Benutze ot_payment.Ich hab mal einen Thread in einem Forum darüber gefunden, leider finde ich ihn nicht mehr. Vielleicht weiss ja einer von euch, was ich wo ändern muss? Danke Link to comment Share on other sites More sharing options...
das_ol Posted June 26, 2007 Report Share Posted June 26, 2007 Diese Funktion habe ich mal als kostenpflichtiges Modul im Internet gesehen. Meines Wissens kann das XTC nicht standardmäßig. Link to comment Share on other sites More sharing options...
night66 Posted June 26, 2007 Author Report Share Posted June 26, 2007 Danke für deine Antwort. Ich habe das Modul ot_payment. Ist das Modul was du meinst. Habe leider die Anleitung nicht mehr. Aber der Thread hat sich erledigt. Habe im Forum bei ******************************************************** genau die passende Antwort bekommen. Jetzt funktionierts:) Danke Link to comment Share on other sites More sharing options...
CatiTB Posted July 11, 2007 Report Share Posted July 11, 2007 verräts du es auch anderen? LG cati Link to comment Share on other sites More sharing options...
supervisior Posted July 11, 2007 Report Share Posted July 11, 2007 Wohl nur auf indirektem Wege, weil der Link zu der Seite zensiert wird. Link to comment Share on other sites More sharing options...
chpohl Posted July 11, 2007 Report Share Posted July 11, 2007 manchmal hilft auch einfach Suchfunktion in diesem Forum http://www.xt-commerce.com/forum/showthread.php?t=17888&highlight=ot_payment Link to comment Share on other sites More sharing options...
awos Posted May 20, 2008 Report Share Posted May 20, 2008 Hallo zusammen ich habe ein kleines problem und sitz schon seit tagen daran. ich habe mir das ot_payment runtergeladen und die daten wie in der anleitung auf meinen server geschoben. Dann habe ich die moneyorder.php wie folge abgeändert function javascript_validation() { return false; } function selection() { global $order; $do = false; $table = split("[,]" , MODULE_ORDER_TOTAL_PAYMENT_TYPE); for ($i = 0; $i < count($table); $i++) { if ($this->code == $table[$i]) $do = 1; } $table = split("[,]" , MODULE_ORDER_TOTAL_PAYMENT_TYPE2); for ($i = 0; $i < count($table); $i++) { if ($this->code == $table[$i]) $do = 2; } if ($do==1) { $discount_table = (split("[:,]" , MODULE_ORDER_TOTAL_PAYMENT_PERCENTAGE)); for ($i=0; $i<sizeof($discount_table); $i+=2) { if ($order->info['total'] >= $discount_table[$i]) { $percent = -$discount_table[$i+1]; } else { break; } } } elseif ($do==2) { $discount_table = (split("[:,]" , MODULE_ORDER_TOTAL_PAYMENT_PERCENTAGE2)); for ($i=0; $i<sizeof($discount_table); $i+=2) { if ($order->info['total'] >= $discount_table[$i]) { $percent = -$discount_table[$i+1]; } else { break; } } } if (isset($percent)) $this->cost = abs($percent) . '% ' . ($percent<0?'Rabatt':'Zuschlag'); { return array ('id' => $this->code, 'module' => $this->title, 'description' => $this->info, 'module_cost'=>$this->cost); } function pre_confirmation_check() { return false; [/php] nun habe ich das Problem das ich alle Zahlungsoptionen die unter diesem Modul waren verschwunden sind und ich die anderen auch nicht bearbeiten kann. Das modul ot_payment sehe ich auch nicht:-( hoffe das ihr mir helfen könnt. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.