Jump to content
xt:Commerce Community Forum

Kleines Problem Mit Der Preisanzeige


arnower

Recommended Posts

Hallo,

ich habe bei der einstellung des Shops ein kleines Problem.

Und zwar benutze ich Staffelpreise, funktioniert auch soweit. Nur wird mir bei der Artikelanzeige der Preis f?r ab 10 Produkte angzeigt und nicht der, der f?r die St?ckzahl unter 9 angezeigt werden soll, also der Hauptpreis.

Hier ein Bild:

preis.jpg

W?rde mich sehr ?ber eine gute antwort freuen :bounce:

Link to comment
Share on other sites

Das Problem hatte ich auch schon ... Passiert nur, wenn man nachtr?glich Staffelpreise eingibt. Hier wird der falsche Staffelpreis eingelesen. Bei Neuanlage ist alles in Ordnung.

L?sung:

Tausch mal in der general.php diesen Block aus:

function get_group_price($group_id, $product_id) {

? ? // well, first try to get group price from database

? ? $group_price_query = xtc_db_query("SELECT personal_offer FROM personal_offers_by_customers_status_" . $group_id . " WHERE products_id = '" . $product_id . "' and quantity=1");

? ? $group_price_data = xtc_db_fetch_array($group_price_query);

? ? // if we found a price, everything is ok if not, we will create new entry

? ? if ($group_price_data['personal_offer'] == '') {

? ? ? xtc_db_query("INSERT INTO personal_offers_by_customers_status_" . $group_id . " (price_id, products_id, quantity, personal_offer) VALUES ('', '" . $product_id . "', '1', '0.00')");

? ? ? $group_price_query = xtc_db_query("SELECT personal_offer FROM personal_offers_by_customers_status_" . $group_id . " WHERE products_id = '" . $product_id . "' and quantity=1");

? ? ? $group_price_data = xtc_db_fetch_array($group_price_query);

? ? }

? ? return $group_price_data['personal_offer'];

? }

das rot markierte ist die ?nderung

Link to comment
Share on other sites

Ich habe das gleiche Problem wie arnower!

Ich speicher Einzelpreis und Staffelpreis um.

Dann zeigt ermir nach dem speichern den preis vom ersten Staffelpreis als Hauptpreis an.

Ich echt sauer, da ich schon etliche Artikel eingegeben habe und es auf einmal nicht mehr funzt... Die ganze Arbeit umsonst?

Link to comment
Share on other sites

Originally posted by dvd-welt+Apr 11 2005, 15:49 PM--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (dvd-welt @ Apr 11 2005, 15:49 PM)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-chpohl@Apr 10 2005, 12:01 PM

Tausch mal in der general.php diesen Block aus:

wo finde ich diese datei ?brigends gebau? hat da jemand mal einen pfad?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...