From: Sven Schöling Date: Thu, 11 Sep 2014 16:35:40 +0000 (+0200) Subject: PriceSource: 0,0000 Preise nicht als best_price erlauben X-Git-Tag: release-3.2.0beta~161 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=cf35a74f94bfe0451dfe9498e0a07ce20ae098ed;p=kivitendo-erp.git PriceSource: 0,0000 Preise nicht als best_price erlauben Auch wenn es im Einzelfall valide Preise sein können, sollte das Standardverhalten keine Umsonstpreise vorschlagen. --- diff --git a/SL/PriceSource.pm b/SL/PriceSource.pm index 5237003fe..9f7c11090 100644 --- a/SL/PriceSource.pm +++ b/SL/PriceSource.pm @@ -35,7 +35,7 @@ sub available_prices { } sub best_price { - min_by { $_->price } map { $_->best_price } $_[0]->all_price_sources; + min_by { $_->price } grep { $_->price > 0 } map { $_->best_price } $_[0]->all_price_sources; } sub empty_price {