begin adding inventory control overrides of parent class

This commit is contained in:
Colin Kuskie 2008-05-09 23:02:44 +00:00
parent b273a0bbb5
commit 3ec94d50d8

View file

@ -389,6 +389,19 @@ sub getPrice {
return $self->getOptions->{price};
}
#-------------------------------------------------------------------
=head2 getQuantityAvailable ( )
Returns the amount of a variant that are available.
=cut
sub getQuantityAvailable {
my $self = shift;
return $self->getOptions->{quantity};
}
#-------------------------------------------------------------------
sub getThumbnailUrl {
my $self = shift;