Finish cleaning up after the move of getTaxRate from the Sku to the TaxDriver.

This commit is contained in:
Colin Kuskie 2009-04-24 03:35:34 +00:00
parent c541788968
commit 25ead75eba
3 changed files with 0 additions and 18 deletions

View file

@ -41,7 +41,6 @@ use WebGUI::Asset::Sku;
$hashRef = $self->getOptions;
$integer = $self->getMaxAllowedInCart;
$float = $self->getPrice;
$float = $self->getTaxRate;
$boolean = $self->isShippingRequired;
$html = $self->processStyle($output);
@ -336,19 +335,6 @@ sub getTaxConfiguration {
#-------------------------------------------------------------------
=head2 getTaxRate ( )
Returns undef unless the "Override tax rate?" switch is set to yes. If it is, then it returns the value of the "Tax Rate Override" field.
=cut
sub getTaxRate {
my $self = shift;
return ($self->get("overrideTaxRate")) ? $self->get("taxRateOverride") : undef;
}
#-------------------------------------------------------------------
=head2 getThumbnailUrl ( )
Returns undef. Should be overridden by any skus that have images.