diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-03-14 01:18:50 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-03-14 01:18:50 -0700 |
commit | f1e7894f6f9b3a4b6f7daea1324f4a5a6bae2a78 (patch) | |
tree | b8651f21d5a9951d4a869a35639f123ae3963c90 | |
parent | a5430ef54bfcba9fb7bbb9c42cd6f8cb2cb618be (diff) |
fix, but for what? alas
-rw-r--r-- | FS/FS/cust_credit_bill_pkg.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_credit_bill_pkg.pm b/FS/FS/cust_credit_bill_pkg.pm index 7427d09ab..3cb44a092 100644 --- a/FS/FS/cust_credit_bill_pkg.pm +++ b/FS/FS/cust_credit_bill_pkg.pm @@ -348,13 +348,13 @@ sub cust_bill_pkg { sub cust_bill_pkg_tax_Xlocation { my $self = shift; - if ($self->billpkg_tax_locationnum) { + if ($self->billpkgtaxlocationnum) { return qsearchs( 'cust_bill_pkg_tax_location', { 'billpkgtaxlocationnum' => $self->billpkgtaxlocationnum }, ); - } elsif ($self->billpkg_tax_rate_locationnum) { + } elsif ($self->billpkgtaxratelocationnum) { return qsearchs( 'cust_bill_pkg_tax_rate_location', { 'billpkgtaxratelocationnum' => $self->billpkgtaxratelocationnum }, |