diff options
Diffstat (limited to 'httemplate/search/phone_avail.html')
-rw-r--r-- | httemplate/search/phone_avail.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/search/phone_avail.html b/httemplate/search/phone_avail.html index 8dec7b247..1335379ae 100644 --- a/httemplate/search/phone_avail.html +++ b/httemplate/search/phone_avail.html @@ -3,7 +3,7 @@ 'name_singular' => 'phone number', 'query' => { 'table' => 'phone_avail', - 'hashref' => {}, + 'hashref' => $hashref, 'select' => join(', ', 'phone_avail.*', 'cust_main.custnum', @@ -129,6 +129,9 @@ my $addl_from = ' LEFT JOIN cust_svc USING ( svcnum ) '. my $count_query = "SELECT COUNT(*) FROM phone_avail $search"; #$addl_from? +my $hashref = {}; +$hashref->{'ordernum'} = $1 if $cgi->param('ordernum') =~ /^(\d+)$/; + my $link_cust = sub { my $phone_avail = shift; if ( $phone_avail->svcnum ) { |