Revision 128b0775
Von Sven Schöling vor fast 7 Jahren hinzugefügt
SL/PriceSource/Discount.pm | ||
---|---|---|
4 | 4 |
|
5 | 5 |
use parent 'SL::DB::Object'; |
6 | 6 |
use Rose::Object::MakeMethods::Generic ( |
7 |
scalar => [ qw(discount description spec price_source invalid missing) ], |
|
7 |
scalar => [ qw(discount description spec price_source invalid missing unknown) ],
|
|
8 | 8 |
'scalar --get_set_init' => [ qw(priority) ], |
9 | 9 |
); |
10 | 10 |
|
... | ... | |
133 | 133 |
|
134 | 134 |
If discount is missing, you do not need to supply anything except C<source>. |
135 | 135 |
|
136 |
=item C<unknown> |
|
137 |
|
|
138 |
OPTIONAL. Boolean indicator that this discount was not computed for performance |
|
139 |
reasons. This is only valid for PriceSources flagged as C<fast>. This discount |
|
140 |
must be ignored. |
|
141 |
|
|
136 | 142 |
=back |
137 | 143 |
|
138 | 144 |
=head1 SEE ALSO |
Auch abrufbar als: Unified diff
PriceSource: unknown Flag um "fast" korrekt durchzureichen