X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fmisc%2Fphone_avail-import.html;h=903c17bd93750501b398efec4df834fc9c47cd8e;hb=31f2e890b5b3e1b0ad29a877ff67bc641ea1fc40;hp=c664c07267faaff923087f28faa0f51d9d18db83;hpb=42b2a5b6a4e8bf2a692467ae1e45d9dde2d614db;p=freeside.git diff --git a/httemplate/misc/phone_avail-import.html b/httemplate/misc/phone_avail-import.html index c664c0726..903c17bd9 100644 --- a/httemplate/misc/phone_avail-import.html +++ b/httemplate/misc/phone_avail-import.html @@ -7,7 +7,7 @@ Import a file containing phone numbers (DIDs). 'name' => 'PhonenumImportForm', 'action' => 'process/phone_avail-import.html', 'num_files' => 1, - 'fields' => [ 'format', 'availbatch', 'exportnum', 'countrycode' ], + 'fields' => [ 'format', 'availbatch', 'exportnum', 'countrycode', 'ordernum', 'confirmed', 'vendor_order_id' ], 'message' => 'DID import successful', 'url' => $p."search/phone_avail.html?availbatch=$availbatch", ) @@ -15,10 +15,36 @@ Import a file containing phone numbers (DIDs). <% &ntable("#cccccc", 2) %> - +% if ( $ordernum ) { + + Bulk DID Order # + <% $ordernum %> + + + + + Vendor Order # + + + + + + <% include( '/elements/tr-input-date-field.html', { + 'name' => 'confirmed', + 'label' => 'Order Confirmed', + 'value' => $confirmed, + }) + %> + +% } + + Import Format + <% $format %> + + <% include( '/elements/tr-select-table.html', 'table' => 'part_export', 'name_col' => 'label', @@ -65,15 +91,20 @@ Import a file containing phone numbers (DIDs). Uploaded files can be CSV (comma-separated value) files or Excel spreadsheets. The file should have a .CSV or .XLS extension.

-Default format has the following field order: state, number, name +Default format has the following field order: state, number, name
+Bulk format has the following field order: state, number, rate center, rate_center_abbrev, msa, latanum

- Field information: +

<% include('/elements/footer.html') %> @@ -84,6 +115,27 @@ die "access denied" my $conf = new FS::Conf; +my $ordernum = $cgi->param('ordernum'); +$ordernum = '' unless $ordernum =~ /^\d+$/; + +my $vendor_order_id = ''; +my $confirmed = ''; + +my $order = ''; +$order = qsearchs('did_order', { 'ordernum' => $ordernum } ) + if $ordernum; + +die 'invalid ordernum' unless (!$ordernum || $order); + +my $format = 'default'; + +if ( $order ) { + $format = 'bulk'; + $confirmed = $order->confirmed; + $vendor_order_id = $order->vendor_order_id; +} + + my $availbatch = time2str('webimport-%Y/%m/%d-%T'. "-$$-". rand() * 2**32, time);