Revision cf35a74f
Von Sven Schöling vor etwa 10 Jahren hinzugefügt
SL/PriceSource.pm | ||
---|---|---|
35 | 35 |
} |
36 | 36 |
|
37 | 37 |
sub best_price { |
38 |
min_by { $_->price } map { $_->best_price } $_[0]->all_price_sources; |
|
38 |
min_by { $_->price } grep { $_->price > 0 } map { $_->best_price } $_[0]->all_price_sources;
|
|
39 | 39 |
} |
40 | 40 |
|
41 | 41 |
sub empty_price { |
Auch abrufbar als: Unified diff
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.