[freeside-commits] branch master updated. fd4322f01b8c53b3f1f9e54ca15184930b0443de

Ivan ivan at 420.am
Wed Dec 5 18:15:38 PST 2012


The branch, master has been updated
       via  fd4322f01b8c53b3f1f9e54ca15184930b0443de (commit)
      from  1a6848f49af5bed28f7a73c747ce18d8bbe2f31e (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 fd4322f01b8c53b3f1f9e54ca15184930b0443de
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Dec 5 18:15:27 2012 -0800

    support custnum param even though we wound up not using it here, RT#18676

diff --git a/httemplate/search/cust_bill_pkg.cgi b/httemplate/search/cust_bill_pkg.cgi
index 4c0fa4a..ed34440 100644
--- a/httemplate/search/cust_bill_pkg.cgi
+++ b/httemplate/search/cust_bill_pkg.cgi
@@ -200,6 +200,11 @@ if ( $cgi->param('refnum') =~ /^(\d+)$/ ) {
   push @where, "cust_main.refnum = $1";
 }
 
+# custnum
+if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
+  push @where, "cust_main.custnum = $1";
+}
+
 # the non-tax case
 if ( $cgi->param('nottax') ) {
 

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

Summary of changes:
 httemplate/search/cust_bill_pkg.cgi |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)




More information about the freeside-commits mailing list