billing_rate_edit.html.old
来自「Astercon2 开源软交换 2.2.0」· OLD 代码 · 共 59 行
OLD
59 行
<html>
<head>
<link href="/css/admin.css" rel="stylesheet" type="text/css">
<title><% title %></title>
<base target="_self">
<script type='text/javascript'>
var whichrow=false
function thisrow(x){
if (whichrow)
whichrow.style.backgroundColor='transparent'
whichrow = x
whichrow.style.backgroundColor='yellow'
}
function moverow(x){
if (whichrow) {
if (x=='up'&&whichrow.previousSibling) {
whichrow.parentNode.insertBefore(whichrow,whichrow.previousSibling);
} else if (x=='down'&&whichrow.nextSibling) {
whichrow.parentNode.insertBefore(whichrow.nextSibling,whichrow);
} else if (x=='first') {
whichrow.parentNode.insertBefore(whichrow,whichrow.parentNode.firstChild);
} else if (x=='last') {
whichrow.parentNode.insertBefore(whichrow,null);
}
rebuild();
} else
alert("Select rule first!");
}
function rebuild(){
edit_form.row_list.value = "";
for (i=1;i<=ratelist_table.rows.length ;i++ )
{
edit_form.row_list.value = edit_form.row_list.value + "," + ratelist_table.rows[i-1].id;
}
}
</script>
</head>
<body bgcolor="#E7E7E7" onload="rebuild()">
<!-- IF notice -->
<marquee width="128" height="16"><span style="background-color: #FF0000; font-size: 12px;font-family: Verdana, Arial, Helvetica, sans-serif;"><a href="/adminp.do/?action=admin_reset_do&return=<% myself_request_uri %>"><font color='white'> <% notice %> </font></a></span></marquee>
<!-- END notice -->
<table border="0" width="95%" cellspacing="0" cellpadding="2" ID="shadow">
<FORM NAME="edit_form" METHOD=POST ACTION="?action=billing_rate_edit_do&rate_id=<% rate_id %>" target="_self">
<input type="hidden" name="row_list" value="">
<tr>
<td width="100%" bgcolor="#EFF7FF" height="25">
<INPUT TYPE="text" NAME="title" value="<% rate_title %>" size="20"> <INPUT TYPE="text" NAME="remark" value="<% rate_remark %>" size="30"> <select size="1" name="lcr_priority">
<option value="0" <% lcr_priority_selected_0 %>>Price</option>
<option value="1" <% lcr_priority_selected_1 %>>Quality</option>
</select>
[<a href="/adminp_webcontrol.do/?action=dialplan_smartlcr_edit_page&rate_id=<% rate_id %>"> Smart routing Setting </a>] [<a href="/adminp_billing.do/?action=billing_rate_page"> Back to rate list </a>]
</td>
</tr>
<tr>
<td width="101%" bgcolor="#FFFFFF" colspan="2" height="109" valign="top">銆
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?