diff options
author | levinse <levinse> | 2011-04-17 03:28:12 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-04-17 03:28:12 +0000 |
commit | fe54b392480244e9486603b162902acd2144bbc6 (patch) | |
tree | f91678656f227d65035c5d539c00f7d7c3dc8f32 /httemplate/search | |
parent | ac2a516d126ab23b46138a6b930545fecc633943 (diff) |
bulk DID orders/inventory enhancements, RT11291
Diffstat (limited to 'httemplate/search')
-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 3c853efa5..d2480a01b 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', @@ -130,6 +130,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 ) { |