diff options
| author | jeff <jeff> | 2009-12-30 05:23:00 +0000 | 
|---|---|---|
| committer | jeff <jeff> | 2009-12-30 05:23:00 +0000 | 
| commit | f756d517b6dedf0c6646789b3579c2e182a16a90 (patch) | |
| tree | b33ac328da71455f77327c87d9f208e34bcd81fc | |
| parent | bee0dc56acce8715f1cb2d3e3e9813d855c2d70b (diff) | |
noise reduction
| -rw-r--r-- | FS/FS/tax_rate.pm | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/FS/FS/tax_rate.pm b/FS/FS/tax_rate.pm index 93550b178..101802bd5 100644 --- a/FS/FS/tax_rate.pm +++ b/FS/FS/tax_rate.pm @@ -407,13 +407,14 @@ sub taxline {      };    } -  if ($self->maxtype != 0 && $self->maxtype != 9) { +  my $maxtype = $self->maxtype || 0; +  if ($maxtype != 0 && $maxtype != 9) {      return $self->_fatal_or_null( 'tax with "'.                                      $self->maxtype_name. '" threshold'                                  );    } -  if ($self->maxtype == 9) { +  if ($maxtype == 9) {      return        $self->_fatal_or_null( 'tax with "'. $self->maxtype_name. '" threshold' );                                                                  # "texas" tax @@ -439,7 +440,7 @@ sub taxline {    my $taxable_units = 0;    unless ($self->recurtax =~ /^Y$/i) { -    if ($self->unittype == 0) { +    if (( $self->unittype || 0 ) == 0) {        my %seen = ();        foreach (@cust_bill_pkg) {          $taxable_units += $_->units | 
