a2b_entity_did_import.php

来自「asterisk用 的voip记费软件」· PHP 代码 · 共 347 行

PHP
347
字号
<?php// Common includesinclude ("../lib/defines.php");include ("../lib/module.access.php");include ("../lib/smarty.php");//include ("../lib/Class.Table.php");set_time_limit(0);if (! has_rights (ACX_DID)){	   Header ("HTTP/1.0 401 Unauthorized");	   Header ("Location: PP_error.php?c=accessdenied");	   die();}$FG_DEBUG = 0;$DBHandle  = DbConnect();$my_max_file_size = (int) MY_MAX_FILE_SIZE_IMPORT;/*************************************************************/$instance_table_tariffname = new Table("cc_didgroup", "id, didgroupname");$FG_TABLE_CLAUSE = "";$list_tariffname = $instance_table_tariffname  -> Get_list ($DBHandle, $FG_TABLE_CLAUSE, "didgroupname", "ASC", null, null, null, null);$nb_tariffname = count($list_tariffname);$instance_table_country = new Table("cc_country", "id, countryname");$list_countryname = $instance_table_country  -> Get_list ($DBHandle, $FG_TABLE_CLAUSE, "countryname", "ASC", null, null, null, null);$nb_countryname = count($list_countryname);?><?php	$smarty->display('main.tpl');?><script type="text/javascript"><!--function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}//--></script><script language="JavaScript"><!--function sendtofield(form){	if (form.listemail.value.length < 5){		alert ('<?php echo gettext("Insert emails on the Field!")?>');		form.listemail.focus ();		return (false);	}    document.forms["prefs"].elements["task"].value = "field";	document.forms[0].submit();}function sendtoupload(form){	if (form.the_file.value.length < 2){		alert ('<?php echo gettext("Please, you must first select a file !")?>');		form.the_file.focus ();		return (false);	}    return true;}//--></script><script language="JavaScript" type="text/javascript"><!--function deselectHeaders(){    document.prefs.unselected_search_sources[0].selected = false;    document.prefs.selected_search_sources[0].selected = false;}function resetHidden(){    var tmp = '';    for (i = 1; i < document.prefs.selected_search_sources.length; i++) {        tmp += document.prefs.selected_search_sources[i].value;        if (i < document.prefs.selected_search_sources.length - 1)            tmp += "\t";    }    document.prefs.search_sources.value = tmp;}function addSource(){    for (i = 1; i < document.prefs.unselected_search_sources.length; i++) {        if (document.prefs.unselected_search_sources[i].selected) {            document.prefs.selected_search_sources[document.prefs.selected_search_sources.length] = new Option(document.prefs.unselected_search_sources[i].text, document.prefs.unselected_search_sources[i].value);            document.prefs.unselected_search_sources[i] = null;            i--;        }    }    resetHidden();}function removeSource(){    for (i = 1; i < document.prefs.selected_search_sources.length; i++) {        if (document.prefs.selected_search_sources[i].selected) {            document.prefs.unselected_search_sources[document.prefs.unselected_search_sources.length] = new Option(document.prefs.selected_search_sources[i].text, document.prefs.selected_search_sources[i].value)            document.prefs.selected_search_sources[i] = null;            i--;        }    }    resetHidden();}function moveSourceUp(){    var sel = document.prefs.selected_search_sources.selectedIndex;	//var sel = document.prefs["selected_search_sources[]"].selectedIndex;    if (sel == -1 || document.prefs.selected_search_sources.length <= 2) return;    // deselect everything but the first selected item    document.prefs.selected_search_sources.selectedIndex = sel;    if (sel == 1) {        tmp = document.prefs.selected_search_sources[sel];        document.prefs.selected_search_sources[sel] = null;        document.prefs.selected_search_sources[document.prefs.selected_search_sources.length] = tmp;        document.prefs.selected_search_sources.selectedIndex = document.prefs.selected_search_sources.length - 1;    } else {        tmp = new Array();        for (i = 1; i < document.prefs.selected_search_sources.length; i++) {            tmp[i - 1] = new Option(document.prefs.selected_search_sources[i].text, document.prefs.selected_search_sources[i].value)        }        for (i = 0; i < tmp.length; i++) {            if (i + 1 == sel - 1) {                document.prefs.selected_search_sources[i + 1] = tmp[i + 1];            } else if (i + 1 == sel) {                document.prefs.selected_search_sources[i + 1] = tmp[i - 1];            } else {                document.prefs.selected_search_sources[i + 1] = tmp[i];            }        }        document.prefs.selected_search_sources.selectedIndex = sel - 1;    }    resetHidden();}function moveSourceDown(){    var sel = document.prefs.selected_search_sources.selectedIndex;    if (sel == -1 || document.prefs.selected_search_sources.length <= 2) return;    // deselect everything but the first selected item    document.prefs.selected_search_sources.selectedIndex = sel;    if (sel == document.prefs.selected_search_sources.length - 1) {        tmp = new Array();        for (i = 1; i < document.prefs.selected_search_sources.length; i++) {            tmp[i - 1] = new Option(document.prefs.selected_search_sources[i].text, document.prefs.selected_search_sources[i].value)        }        document.prefs.selected_search_sources[1] = tmp[tmp.length - 1];        for (i = 0; i < tmp.length - 1; i++) {            document.prefs.selected_search_sources[i + 2] = tmp[i];        }        document.prefs.selected_search_sources.selectedIndex = 1;    } else {        tmp = new Array();        for (i = 1; i < document.prefs.selected_search_sources.length; i++) {            tmp[i - 1] = new Option(document.prefs.selected_search_sources[i].text, document.prefs.selected_search_sources[i].value)        }        for (i = 0; i < tmp.length; i++) {            if (i + 1 == sel) {                document.prefs.selected_search_sources[i + 1] = tmp[i + 1];            } else if (i + 1 == sel + 1) {                document.prefs.selected_search_sources[i + 1] = tmp[i - 1];            } else {                document.prefs.selected_search_sources[i + 1] = tmp[i];            }        }        document.prefs.selected_search_sources.selectedIndex = sel + 1;    }    resetHidden();}// --></script>     	  <?php	echo $CC_help_import_did;?><center>		<b><?php echo gettext("New DID have to be imported from a CSV file.");?>.</b></br></br>		<table width="95%" border="0" cellspacing="2" align="center" class="records">              <form name="prefs" enctype="multipart/form-data" action="A2B_entity_did_import_analyse.php" method="post">				<tr>                  <td colspan="2" align=center>				  <?php echo gettext("Choose a DIDGroup to use");?> :				  <select NAME="didgroup" size="1"  class="form_input_select"  style="width=250">								<option value=''><?php echo gettext("Choose a DIDGroup");?></option>								<?php								 foreach ($list_tariffname as $recordset){								?>									<option class=input value='<?php  echo $recordset[0]?>-:-<?php  echo $recordset[1]?>' <?php if ($recordset[0]==$didgroup) echo "selected";?>><?php echo $recordset[1]?></option>								<?php 	 }								?>						</select>						<br>                        <br>                        <?php echo gettext("Choose a Country to use");?> :                        <select NAME="countryID" size="1" class="form_input_select" style="width=250">								<option value=''><?php echo gettext("Choose a Country");?></option>								<?php								 foreach ($list_countryname as $recordset){								?>									<option class=input value='<?php  echo $recordset[0]?>-:-<?php  echo $recordset[1]?>' <?php if ($recordset[0]== $countryID) echo "selected";?>><?php echo $recordset[1]?></option>								<?php 	 }								?>						</select>						<br><br>				<?php echo gettext("These fields are mandatory");?><br><select  name="bydefault" multiple="multiple" size="2" class="form_input_select" width="40">	<option value="bb1"><?php echo gettext("DID");?></option>	<option value="bb2"><?php echo gettext("FIXRATE");?></option></select><br/><br/><?php echo gettext("Choose the additional fields to import from the CSV file");?>.<br><input name="search_sources" value="nochange" type="hidden"><table>    <tbody><tr>        <td>            <select name="unselected_search_sources" multiple="multiple" size="5" class="form_input_select" width="50" onchange="deselectHeaders()">				<option value=""><?php echo gettext("Unselected Fields...");?></option>				<option value="activated"><?php echo gettext("activated");?></option>				<option value="startingdate"><?php echo gettext("startingdate");?></option>				<option value="expirationdate"><?php echo gettext("expirationdate");?></option>				<option value="billingtype"><?php echo gettext("billingtype");?></option>	down_black			</select>        </td>        <td>            <a href="" onclick="addSource(); return false;"><img src="<?php echo Images_Path;?>/forward.png" alt="add source" title="add source" border="0"></a>            <br>            <a href="" onclick="removeSource(); return false;"><img src="<?php echo Images_Path;?>/back.png" alt="remove source" title="remove source" border="0"></a>        </td>        <td>            <select name="selected_search_sources" multiple="multiple" size="5" class="form_input_select" width="50" onchange="deselectHeaders();">				<option value=""><?php echo gettext("Selected Fields...");?></option>			</select>        </td>        <td>            <a href="" onclick="moveSourceUp(); return false;"><img src="<?php echo Images_Path;?>/up_black.png" alt="move up" title="move up" border="0"></a>            <br>            <a href="" onclick="moveSourceDown(); return false;"><img src="<?php echo Images_Path;?>/down_black.png" alt="move down" title="move down" border="0"></a>        </td>    </tr></tbody></table>				</td></tr>                <tr>                  <td colspan="2">                    <div align="center"><span class="textcomment">					  <?php echo gettext("Use the example below  to format the CSV file. Fields are separated by  ; : or ?");?></br>					  <?php echo gettext(". and , are used for decimal format.");?>					  <br/>					  <a href="importsamples.php?sample=did_Complex" target="superframe"><?php echo gettext("Complex Sample");?></a> -					  <a href="importsamples.php?sample=did_Simple" target="superframe"> <?php echo gettext("Simple Sample");?></a>                      </span></div>						<center>							<iframe name="superframe" src="importsamples.php?sample=did_Simple" BGCOLOR=white	width=500 height=80 marginWidth=10 marginHeight=10  frameBorder=1  scrolling=yes>							</iframe>						</center>                  </td>                </tr>                <tr>                  <td colspan="2">                    <p align="center"><span class="textcomment">                      <?php echo gettext("The maximum file size is ");?>                      <?php echo $my_max_file_size / 1024?>                      KB </span><br>                      <input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $my_max_file_size?>">                      <input type="hidden" name="task" value="upload">                      <input name="the_file" type="file" size="50" onFocus=this.select() class="saisie1">                      <input type="submit"  value="Import DID" onFocus=this.select() class="form_input_button" name="submit1" onClick="return sendtoupload(this.form);">                       </p>                  </td>                </tr>              </form>            </table></center><?php	$smarty->display('footer.tpl');?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?