diff options
author | Mark Wells <mark@freeside.biz> | 2013-06-05 14:42:30 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-06-05 14:42:30 -0700 |
commit | 3e7de7eb51f9ea9b135f42ea337c0ec75deceeab (patch) | |
tree | a2204c9bd4c7af6d3818c1b72a06562e5a88f8d7 | |
parent | e2956e14f9ddb53302c594aa343db3a59bacdda3 (diff) |
fix detail links from tax report, #22829
-rw-r--r-- | httemplate/search/cust_bill_pkg.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_bill_pkg.cgi b/httemplate/search/cust_bill_pkg.cgi index 3a3b0feb9..183051170 100644 --- a/httemplate/search/cust_bill_pkg.cgi +++ b/httemplate/search/cust_bill_pkg.cgi @@ -222,7 +222,7 @@ if ( $conf->exists('enable_taxclasses') ) { # valid in both the tax and non-tax cases my $join_cust = - " LEFT JOIN cust_bill USING (invnum)". + " LEFT JOIN cust_bill ON (cust_bill_pkg.invnum = cust_bill.invnum)". # use cust_pkg.locationnum if it exists FS::UI::Web::join_cust_main('cust_bill', 'cust_pkg'); |