Opened 8 months ago
Closed 4 days ago
#1831 closed Bug/Fehler (fixed)
Bestellung bearbeiten - Nettopreis ist plötzlich brutto.
Reported by: | fishnet | Owned by: | somebody |
---|---|---|---|
Priority: | normal | Milestone: | modified-shop-2.0.6.0 |
Component: | Admin | Version: | 2.0.5.1 |
Description
Im stable.modified-shop.org getestet, mit Version 2.0.5.1
Zuerst habe ich bei Testprodukt 3 zwei Attribute (mit Einbau, ohne Einbau) hinzugefügt.
Danach bin ich auf Bestellung Nr 5 gegangen und habe sie bearbeitet. Zu Beginn hatte das Testprodukt 3 einen Bruttopreis von 50 Euro, Nettopreis 42,02.
Wenn ich die Bestellung bearbeite und ein Attribut hinzufüge und speichere, dann ist der Bruttopreis plötzlich 42,02.
Attachments (0)
Change History (5)
comment:1 Changed 8 months ago by GTB
comment:2 Changed 8 months ago by fishnet
Nein im DEV Shop scheints zu gehen :-)
Ich nehme an Ihr habt in der
admin/includes/functions/orders_functions.php
das hier
if ($prefix === false) { $products_old_price = $xtPrice->xtcGetPrice($products['products_id'], $format = false, $products['products_quantity'], '', '', '', $order->customer['ID']); $products_price = ($products_old_price + $ov_price); }
so geändert?
if ($prefix === false) { $products_old_price = $xtPrice->xtcGetPrice($products['products_id'], $format = false, $products['products_quantity'], 1, '', '', $order->customer['ID']); $products_price = ($products_old_price + $ov_price); }
comment:3 Changed 8 months ago by GTB
nein, denn damit würdest du eine Steuerklasse setzen und das ist an der Stelle nicht gewünscht.
comment:4 Changed 4 days ago by Tomcraft
- Milestone set to modified-shop-2.0.6.0
comment:5 Changed 4 days ago by GTB
- Resolution set to fixed
- Status changed from new to closed
In 12744:
Kannst du das auch im DEV Shop nachstellen ?