diff options
author | levinse <levinse> | 2011-04-22 23:17:39 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-04-22 23:17:39 +0000 |
commit | dad39ad50ddc5cbb549a0207262d94a4886d5fec (patch) | |
tree | cca5a44660eb621140d192174ba7ff9457a2da32 /httemplate/misc | |
parent | 9d354e2a0b212a3459d93f3698f26e200577f289 (diff) |
bulk DID orders/inventory improvements, RT11291
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/phone_avail-import.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/httemplate/misc/phone_avail-import.html b/httemplate/misc/phone_avail-import.html index 635b8f69c..b6fea7ec2 100644 --- a/httemplate/misc/phone_avail-import.html +++ b/httemplate/misc/phone_avail-import.html @@ -45,6 +45,16 @@ Import a file containing phone numbers (DIDs). <TD><% $format %><INPUT TYPE="hidden" NAME="format" VALUE="<% $format %>"></TD> </TR> +% if ( scalar(@exports) == 1 ) { +% my $export = $exports[0]; + <TR> + <TD>Export</TD> + <TD> + <INPUT TYPE="hidden" name="exportnum" value="<%$export->exportnum%>"> + <% $export->exportname %> + </TD> + </TR> +% } else { <% include( '/elements/tr-select-table.html', 'table' => 'part_export', 'name_col' => 'label', @@ -55,6 +65,7 @@ Import a file containing phone numbers (DIDs). #'label_callback' => ) %> +% } <TR> <TH ALIGN="right">Country code</TH> @@ -145,5 +156,7 @@ if ( $order ) { my $availbatch = time2str('webimport-%Y/%m/%d-%T'. "-$$-". rand() * 2**32, time); + +my @exports = qsearch('part_export', { 'exporttype' => 'internal_diddb', }); </%init> |