[freeside-commits] branch master updated. 94ff30dbfd8bcdd47170b3a93f8112dd2da68aa9
Ivan
ivan at 420.am
Thu Dec 20 20:52:33 PST 2012
The branch, master has been updated
via 94ff30dbfd8bcdd47170b3a93f8112dd2da68aa9 (commit)
from 2027c653847c5dfe77bf25f3a71337f132078e9d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 94ff30dbfd8bcdd47170b3a93f8112dd2da68aa9
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Dec 20 20:52:30 2012 -0800
fix tax detail reporting fallout from package level credits feature, RT#18676
diff --git a/httemplate/search/cust_bill_pkg.cgi b/httemplate/search/cust_bill_pkg.cgi
index 34c89e5..5f02588 100644
--- a/httemplate/search/cust_bill_pkg.cgi
+++ b/httemplate/search/cust_bill_pkg.cgi
@@ -452,7 +452,7 @@ if ( $cgi->param('nottax') ) {
} elsif ( $cgi->param('out') ) {
- $join_pkg = '
+ $join_pkg .= '
LEFT JOIN cust_bill_pkg_tax_location USING (billpkgnum)
';
push @where, 'cust_bill_pkg_tax_location.billpkgnum IS NULL';
@@ -463,7 +463,7 @@ if ( $cgi->param('nottax') ) {
} else { # not locationtaxid or 'out'--the normal case
- $join_pkg = '
+ $join_pkg .= '
LEFT JOIN cust_bill_pkg_tax_location USING (billpkgnum)
JOIN cust_main_county USING (taxnum)
';
-----------------------------------------------------------------------
Summary of changes:
httemplate/search/cust_bill_pkg.cgi | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list