代码拉取完成,页面将自动刷新
同步操作将从 物联星空科技有限公司/daloradius汉化版 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <[email protected]> All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <[email protected]>
*
*********************************************************************************************************
*/
include ("library/checklogin.php");
$operator = $_SESSION['operator_user'];
//include('library/check_operator_perm.php');
//setting values for the order by and order type variables
isset($_REQUEST['orderBy']) ? $orderBy = $_REQUEST['orderBy'] : $orderBy = "id";
isset($_REQUEST['orderType']) ? $orderType = $_REQUEST['orderType'] : $orderType = "desc";
include_once('library/config_read.php');
$log = "visited page: ";
$logQuery = "performed query on page: ";
$logDebugSQL = "";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>daloRADIUS</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/1.css" type="text/css" media="screen,projection" />
<link rel="stylesheet" href="css/auto-complete.css" media="screen" type="text/css">
<link rel="stylesheet" type="text/css" href="library/js_date/datechooser.css">
<!--[if lte IE 6.5]>
<link rel="stylesheet" type="text/css" href="library/js_date/select-free.css"/>
<![endif]-->
</head>
<script src="library/js_date/date-functions.js" type="text/javascript"></script>
<script src="library/js_date/datechooser.js" type="text/javascript"></script>
<script src="library/javascript/pages_common.js" type="text/javascript"></script>
<script type="text/javascript" src="library/javascript/ajax.js"></script>
<script type="text/javascript" src="library/javascript/dynamic_attributes.js"></script>
<?php
include ("menu-mng-batch.php");
?>
<div id="contentnorightbar">
<h2 id="Intro"><a href="#" onclick="javascript:toggleShowDiv('helpPage')"><? echo $l['Intro']['mngbatchlist.php']; ?>
<h144>+</h144></a></h2>
<div id="helpPage" style="display:none;visibility:visible" >
<?php echo $l['helpPage']['mngbatchlist'] ?>
<br/>
</div>
<?php
include 'include/management/pages_common.php';
include 'library/opendb.php';
include 'include/management/pages_numbering.php'; // must be included after opendb because it needs to read the CONFIG_IFACE_TABLES_LISTING variable from the config file
// setup php session variables for exporting
$_SESSION['reportTable'] = "";
//reportQuery is assigned below to the SQL statement in $sql
$_SESSION['reportQuery'] = "";
$_SESSION['reportType'] = "reportsBatchList";
//orig: used as maethod to get total rows - this is required for the pages_numbering.php page
$sql = "SELECT ".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".id,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_name,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_description,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_status,".
"COUNT(DISTINCT(".$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".id)) as total_users,".
$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".planname,".
$configValues['CONFIG_DB_TBL_DALOBILLINGPLANS'].".plancost,".
$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].".name as HotspotName,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".creationdate,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".creationby,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".updatedate,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".updateby ".
" FROM ".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].
" LEFT JOIN ".$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].
" ON ".
"(".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".id = ".
$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".batch_id) ".
" LEFT JOIN ".$configValues['CONFIG_DB_TBL_DALOBILLINGPLANS'].
" ON ".
"(".$configValues['CONFIG_DB_TBL_DALOBILLINGPLANS'].".planname = ".
$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".planname) ".
" LEFT JOIN ".$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].
" ON ".
"(".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".hotspot_id = ".
$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].".id) ".
" GROUP by ".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_name ";
// set the session variable for report query (export)
$_SESSION['reportQuery'] = $sql;
$res = $dbSocket->query($sql);
$numrows = $res->numRows();
$logDebugSQL .= $sql . "\n";
$sql = "SELECT ".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".id,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_name,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_description,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_status,".
"COUNT(DISTINCT(".$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".id)) as total_users,".
$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".planname,".
$configValues['CONFIG_DB_TBL_DALOBILLINGPLANS'].".plancost,".
$configValues['CONFIG_DB_TBL_DALOBILLINGPLANS'].".plancurrency,".
$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].".name as HotspotName,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".creationdate,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".creationby,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".updatedate,".
$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".updateby ".
" FROM ".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].
" LEFT JOIN ".$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].
" ON ".
"(".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".id = ".
$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".batch_id) ".
" LEFT JOIN ".$configValues['CONFIG_DB_TBL_DALOBILLINGPLANS'].
" ON ".
"(".$configValues['CONFIG_DB_TBL_DALOBILLINGPLANS'].".planname = ".
$configValues['CONFIG_DB_TBL_DALOUSERBILLINFO'].".planname) ".
" LEFT JOIN ".$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].
" ON ".
"(".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".hotspot_id = ".
$configValues['CONFIG_DB_TBL_DALOHOTSPOTS'].".id) ".
" GROUP by ".$configValues['CONFIG_DB_TBL_DALOBATCHHISTORY'].".batch_name ".
" ORDER BY $orderBy $orderType ".
" LIMIT $offset, $rowsPerPage;";
$res = $dbSocket->query($sql);
$logDebugSQL .= $sql . "\n";
/* START - Related to pages_numbering.php */
$maxPage = ceil($numrows/$rowsPerPage);
/* END */
echo "<form name='listbatches' method='get' action='mng-del.php' >";
echo "<table border='0' class='table1'>\n";
echo "
<thead>
<tr>
<th colspan='10' align='left'>
Select:
<a class=\"table\" href=\"javascript:SetChecked(1,'batch_id[]','listbatches')\">All</a>
<a class=\"table\" href=\"javascript:SetChecked(0,'batch_id[]','listbatches')\">None</a>
<br/>
<input class='button' type='button' value='Delete' onClick='javascript:removeCheckbox(\"listbatches\",\"mng-batch-del.php\")' />
<br/>
<input class='button' type='button' value='CSV Export'
onClick=\"javascript:window.location.href='include/management/fileExport.php?reportFormat=csv'\"
/>
<br/><br/>
";
/* drawing the number links */
if ($configValues['CONFIG_IFACE_TABLES_LISTING_NUM'] == "yes")
setupNumbering($numrows, $rowsPerPage, $pageNum, $orderBy, $orderType);
echo "
</th>
</tr>
</thead>
";
$curOrderType = $orderType;
if ($orderType == "asc") {
$orderType = "desc";
} else if ($orderType == "desc") {
$orderType = "asc";
}
echo "<thread> <tr>
<th scope='col'>
<a title='Sort' class='novisit' href=\"" . $_SERVER['PHP_SELF'] . "?orderBy=id&orderType=$orderType\">
".$l['all']['BatchName']."</a>
</th>
<th scope='col'>
".$l['all']['HotSpot']."
</th>
<th scope='col'>
".$l['all']['BatchStatus']."
</th>
<th scope='col'>
".$l['all']['TotalUsers']."
</th>
<th scope='col'>
".$l['all']['PlanName']."
</th>
<th scope='col'>
".$l['all']['PlanCost']."
</th>
<th scope='col'>
".$l['all']['BatchCost']."
</th>
<th scope='col'>
<a title='Sort' class='novisit' href=\"" . $_SERVER['PHP_SELF'] . "?orderBy=creationdate&orderType=$orderType\">
".$l['all']['CreationDate']."</a>
</th>
<th scope='col'>
<a title='Sort' class='novisit' href=\"" . $_SERVER['PHP_SELF'] . "?orderBy=creationby&orderType=$orderType\">
".$l['all']['CreationBy']."</a>
</th>
</tr> </thread>";
$active_users_per = 0;
$total_users = 0;
$active_users = 0;
$batch_cost = 0;
while($row = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
$hotspot_name = $row['HotspotName'];
$batch_status = $row['batch_status'];
$plancost = $row['plancost'];
$total_users = $row['total_users'];
$batch_cost = ($active_users * $plancost);
$plan_currency = $row['plancurrency'];
printqn("
<tr>
<td>
<input type='checkbox' name='batch_id[]' value='{$row['id']}'>
<a class='tablenovisit' href='javascript:return;'
onClick='javascript:__displayTooltip();'
tooltipText='
<a class=\"toolTip\" href=\"rep-batch-details.php?batch_name={$row['batch_name']}\">
{$l['Tooltip']['BatchDetails']}</a>
<br/><br/>
<div id=\"divContainerUserInfo\">
<b>{$l['all']['batchDescription']}</b>:<br/><br/>
{$row['batch_description']}
</div>
<br/>
'
>{$row['batch_name']}</a>
</td>
");
echo "
<td>".$hotspot_name."
</td>
<td>".$batch_status."
</td>
<td>".$total_users."
</td>
<td>".
$row['planname']."
</td>
<td>".$plancost."
</td>
<td>".$batch_cost."
</td>
<td>".
$row['creationdate']."
</td>
<td>".
$row['creationby']."
</td>
</tr>
";
/*
printqn("
<td> <input type='checkbox' name='username[]' value='$row[0]'>$row[2]</td>
<td>
");
*/
}
echo "
<tfoot>
<tr>
<th colspan='10' align='left'>
";
setupLinks($pageNum, $maxPage, $orderBy, $curOrderType);
echo " </th>
</tr>
</tfoot>
";
echo "</table>";
echo "</form>";
include 'library/closedb.php';
?>
<?php
include('include/config/logging.php');
?>
</div>
<div id="footer">
<?php
include 'page-footer.php';
?>
</div>
</div>
</div>
<script type="text/javascript">
var tooltipObj = new DHTMLgoodies_formTooltip();
tooltipObj.setTooltipPosition('right');
tooltipObj.setPageBgColor('#EEEEEE');
tooltipObj.setTooltipCornerSize(15);
tooltipObj.initFormFieldTooltip();
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。