Revision a0c6ec81
Von Bernd Bleßmann vor 7 Monaten hinzugefügt
SL/Model/Record.pm | ||
---|---|---|
121 | 121 |
$price_src = $price_source->best_price |
122 | 122 |
? $price_source->best_price |
123 | 123 |
: $price_source->price_from_source(""); |
124 |
$price_src->price($::form->round_amount($price_src->price / $record->exchangerate, 5)) if $record->exchangerate; |
|
124 |
|
|
125 |
$price_src->price($::form->round_amount($price_src->price / $record->exchangerate, 5)) if $record->can('exchangerate') && $record->exchangerate; |
|
125 | 126 |
$price_src->price(0) if !$price_source->best_price; |
126 | 127 |
} |
127 | 128 |
|
Auch abrufbar als: Unified diff
S:M:Record: Preis- und Rabattquellen: Wechselkurs nur für Belege, die einen haben