Revision 128b0775
Von Sven Schöling vor fast 7 Jahren hinzugefügt
SL/PriceSource/Price.pm | ||
---|---|---|
4 | 4 |
|
5 | 5 |
use parent 'SL::DB::Object'; |
6 | 6 |
use Rose::Object::MakeMethods::Generic ( |
7 |
scalar => [ qw(price description spec price_source invalid missing) ], |
|
7 |
scalar => [ qw(price description spec price_source invalid missing unknown) ],
|
|
8 | 8 |
'scalar --get_set_init' => [ qw(priority editable) ], |
9 | 9 |
); |
10 | 10 |
|
... | ... | |
149 | 149 |
|
150 | 150 |
If price is missing, you do not need to supply anything except C<source>. |
151 | 151 |
|
152 |
=item C<unknown> |
|
153 |
|
|
154 |
OPTIONAL. Boolean indicator that this price was not computed for performance |
|
155 |
reasons. This is only valid for PriceSources flagged as C<fast>. This price |
|
156 |
must be ignored. |
|
157 |
|
|
152 | 158 |
=back |
153 | 159 |
|
154 | 160 |
=head1 SEE ALSO |
Auch abrufbar als: Unified diff
PriceSource: unknown Flag um "fast" korrekt durchzureichen