diff options
author | levinse <levinse> | 2011-04-11 23:31:58 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-04-11 23:31:58 +0000 |
commit | f96af8da0b49cf412cf2dca81f1bbe28780884e9 (patch) | |
tree | 6b1306fdf92dd759b0da1026d0efa1c65aa76402 /httemplate/misc | |
parent | bf97863715c17358d674593b0cd3c217e1811530 (diff) |
Bulk DID order improvements, RT11291
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/phone_avail-import.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/httemplate/misc/phone_avail-import.html b/httemplate/misc/phone_avail-import.html index 903c17bd9..635b8f69c 100644 --- a/httemplate/misc/phone_avail-import.html +++ b/httemplate/misc/phone_avail-import.html @@ -91,18 +91,25 @@ 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. <BR><BR> -<b>Default</b> format has the following field order: <i>state, number, name</i><br> -<b>Bulk</b> format has the following field order: <i>state, number, rate center, rate_center_abbrev, msa, latanum</i> +% if ( $ordernum ) { + <b>Bulk</b> format has the following field order: <i>state, number, rate center, rate_center_abbrev, msa, latanum</i> +% } else { + <b>Default</b> format has the following field order: <i>state, number, name</i><br> +% } <BR><BR> Field information: <ul> <li><i>state</i>: Two-letter state code, i.e. "CA" <li><i>number</i>: Phone number - <li><i>name</i>: optional, rate center + +% if ( $ordernum ) { <li><i>rate center</i>: rate center (required) <li><i>rate_center_abbrev</i>: rate center abbreviation <li><i>msa</i>: MSA <li><i>latanum</i>: LATA # +% } else { + <li><i>name</i>: optional, rate center +% } </ul> <BR><BR> |