Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 128b0775

Von Sven Schöling vor etwa 7 Jahren hinzugefügt

  • ID 128b0775bae87e3507fde183e8fb307e2a598b60
  • Vorgänger ab719aed
  • Nachfolger 4bfb9e7b

PriceSource: unknown Flag um "fast" korrekt durchzureichen

Unterschiede anzeigen:

SL/PriceSource/Discount.pm
use parent 'SL::DB::Object';
use Rose::Object::MakeMethods::Generic (
scalar => [ qw(discount description spec price_source invalid missing) ],
scalar => [ qw(discount description spec price_source invalid missing unknown) ],
'scalar --get_set_init' => [ qw(priority) ],
);
......
If discount is missing, you do not need to supply anything except C<source>.
=item C<unknown>
OPTIONAL. Boolean indicator that this discount was not computed for performance
reasons. This is only valid for PriceSources flagged as C<fast>. This discount
must be ignored.
=back
=head1 SEE ALSO
SL/PriceSource/Price.pm
use parent 'SL::DB::Object';
use Rose::Object::MakeMethods::Generic (
scalar => [ qw(price description spec price_source invalid missing) ],
scalar => [ qw(price description spec price_source invalid missing unknown) ],
'scalar --get_set_init' => [ qw(priority editable) ],
);
......
If price is missing, you do not need to supply anything except C<source>.
=item C<unknown>
OPTIONAL. Boolean indicator that this price was not computed for performance
reasons. This is only valid for PriceSources flagged as C<fast>. This price
must be ignored.
=back
=head1 SEE ALSO

Auch abrufbar als: Unified diff