[freeside-commits] branch master updated. c3b6a3e02cbe18b67714f11d502492e234d7ac77

Ivan ivan at 420.am
Thu Dec 22 17:22:21 PST 2016


The branch, master has been updated
       via  c3b6a3e02cbe18b67714f11d502492e234d7ac77 (commit)
      from  8689850a78c5ef0c744dc1824f22a61d36ed4365 (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 c3b6a3e02cbe18b67714f11d502492e234d7ac77
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Thu Dec 22 17:22:21 2016 -0800

    fix "column refnum is ambiguous" error pulling up churn detail when you have a single advertising source, RT#73852

diff --git a/FS/FS/cust_pkg/Search.pm b/FS/FS/cust_pkg/Search.pm
index 3a8e6d0..311dbdb 100644
--- a/FS/FS/cust_pkg/Search.pm
+++ b/FS/FS/cust_pkg/Search.pm
@@ -281,7 +281,7 @@ sub search {
   }
 
   ###
-  # parse refnum (advertising source)
+  # parse (customer) refnum (advertising source)
   ###
 
   if ( exists($params->{'refnum'}) ) {
@@ -292,7 +292,7 @@ sub search {
       @refnum = ( $params->{'refnum'} );
     }
     my $in = join(',', grep /^\d+$/, @refnum);
-    push @where, "refnum IN($in)" if length $in;
+    push @where, "cust_main.refnum IN($in)" if length $in;
   }
 
   ###

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/cust_pkg/Search.pm |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)




More information about the freeside-commits mailing list