[freeside-commits] branch FREESIDE_4_BRANCH updated. 3772b8dec61bb23540543552f632a6ef741d02c6
Ivan
ivan at 420.am
Fri Mar 11 20:05:04 PST 2016
The branch, FREESIDE_4_BRANCH has been updated
via 3772b8dec61bb23540543552f632a6ef741d02c6 (commit)
from 8be1c9f4cf65aea5218abb49c2123a796fa86fab (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 3772b8dec61bb23540543552f632a6ef741d02c6
Author: Ivan Kohler <ivan at freeside.biz>
Date: Fri Mar 11 20:05:03 2016 -0800
fix customer package browse selection, RT#39822
diff --git a/FS/FS/cust_main/Packages.pm b/FS/FS/cust_main/Packages.pm
index 792c05b..ef8d1a4 100644
--- a/FS/FS/cust_main/Packages.pm
+++ b/FS/FS/cust_main/Packages.pm
@@ -485,7 +485,8 @@ sub ncancelled_pkgs {
$self->custnum. "\n"
if $DEBUG > 1;
- $extra_qsearch->{'extra_sql'} .= ' AND ( cancel IS NULL OR cancel = 0 ) ';
+ $extra_qsearch->{'extra_sql'} .=
+ ' AND ( cust_pkg.cancel IS NULL OR cust_pkg.cancel = 0 ) ';
@cust_pkg = $self->_cust_pkg($extra_qsearch);
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cust_main/Packages.pm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
More information about the freeside-commits
mailing list