tooner Posted June 30, 2007 Report Share Posted June 30, 2007 Hallo, ich weiß ja nicht ob Ihr vor dem gleichen Problem steht wie ich. Also ich habe verschiedene Produkte zum Preis von 5.00 Euro Jedes dieser 5.00 Euro-Produkte soll zum Angebotspreis von 4.71 Euro angeboten werden. Jetzt kommt der BUG: Xt-Commerce ändert zwar den Preis aber nichzt auf 4.71 Euro sondern XT-Commerce schlägt 12% oder 20% auf die 5,00 Euro rauf. Weiß jemand woran das liegt??? Link to comment Share on other sites More sharing options...
buero-design Posted June 30, 2007 Report Share Posted June 30, 2007 Hi tooner, vielleicht ein Problem mit der MwSt.? 4.71 + 19 % MwSt = 5.6049 (= 5 + ~12%) Ben Link to comment Share on other sites More sharing options...
tooner Posted June 30, 2007 Author Report Share Posted June 30, 2007 Ja, das hab ich mir auch schon gedacht. Leider hab ich aber keine Ahnung wo der Fehler sitzen könnte :-( Link to comment Share on other sites More sharing options...
Rovert Posted June 30, 2007 Report Share Posted June 30, 2007 Wenn Bruttopreise im Admin auf true gesetzt ist ergibt sich ein Fehlberechnung bei der Neueingabe von Sonderangebote. Der Eingegebene Bruttopreis wird dann als Netto betrachtet und bekommt Steuer dazuberechnet. Also 200 wird eingegeben und 238 wird dargestellt. Beim nochmalige Eingabe (Update bzw. Edit) wird wieder 200 eingegeben und alles wird korrekt dargestellt (also Produkt = 200 Euro im Angebot). Fix ist ganz einfach: Zeile 35 (case insert) im admin/speicals.php original: $sql="select tr.tax_rate from " . TABLE_TAX_RATES . " tr, " . TABLE_PRODUCTS . " p where tr.tax_class_id = p. products_tax_class_id and p.products_id = '". $_POST['products_up_id'] . "' "; muss heissen: $sql="select tr.tax_rate from " . TABLE_TAX_RATES . " tr, " . TABLE_PRODUCTS . " p where tr.tax_class_id = p. products_tax_class_id and p.products_id = '". $_POST['products_id'] . "' "; ---------------------------------------------------- Also products_id anstelle products_up_id Grund: in Zeile 189 echo '<input type="hidden" name="products_up_id" value="' . $sInfo->products_id . '">'; bekommt bei Neueingabe keinen Wert. Variabel wird logischerweise erst erzeugt wenn das Produkt schon als Sonderangebot verfasst worden ist. T Link to comment Share on other sites More sharing options...
tooner Posted June 30, 2007 Author Report Share Posted June 30, 2007 Echt der Hammer Vielen vielen dank für Deine Hilfe :D :D Dachte schon ich brauch ein neues Modul. Das freut mich jetzt aber echt das es wieder funktioniert. Jetzt kann ich weiter schaffen. Hihi. Hoffe, ich kann auch bald solche Beiträge bringen aber das dauert wohl noch bis mein Wissen auf solch einem Level ist. Aber trotzdem vielen Dank an Euch beiden für die sehr schnelle Hilfe. Link to comment Share on other sites More sharing options...
map_1961 Posted July 31, 2007 Report Share Posted July 31, 2007 Danke, diese Sache war uns auch aufgefallen und konnte somit behoben werden. map_1961 Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.