Revision ea1df49d
Von Kivitendo Admin vor etwa 8 Jahren hinzugefügt
SL/Controller/Order.pm | ||
---|---|---|
848 | 848 |
$item->unit($part->unit) if !$item->unit; |
849 | 849 |
|
850 | 850 |
my $price_src; |
851 |
if ($item->sellprice) { |
|
851 |
if ( $part->is_assortment ) { |
|
852 |
# add assortment items with price 0, as the components carry the price |
|
853 |
$price_src = $price_source->price_from_source(""); |
|
854 |
$price_src->price(0); |
|
855 |
} elsif ($item->sellprice) { |
|
852 | 856 |
$price_src = $price_source->price_from_source(""); |
853 | 857 |
$price_src->price($item->sellprice); |
854 | 858 |
} else { |
Auch abrufbar als: Unified diff
Order Controller - Sortimentsartikel mit Preis 0 hinzufügen