[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 2e14c8d3c631b171dcca9781b3c87e338af85e2d
Ivan
ivan at 420.am
Wed Dec 5 18:15:37 PST 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via 2e14c8d3c631b171dcca9781b3c87e338af85e2d (commit)
from 48df303c25948bcc07dbebbec09749d5c4682594 (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 2e14c8d3c631b171dcca9781b3c87e338af85e2d
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Dec 5 18:15:34 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 1a46b00..917ec89 100644
--- a/httemplate/search/cust_bill_pkg.cgi
+++ b/httemplate/search/cust_bill_pkg.cgi
@@ -175,6 +175,11 @@ if ( $cgi->param('refnum') =~ /^(\d+)$/ ) {
push @where, "cust_main.refnum = $1";
}
+# custnum
+if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
+ push @where, "cust_main.custnum = $1";
+}
+
#classnum
# not specified: all classes
# 0: empty class
-----------------------------------------------------------------------
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