|
@@ -24,15 +24,37 @@ class Report extends CatchController
|
|
|
*/
|
|
|
public function homePageCountData(Request $request)
|
|
|
{
|
|
|
- // 基站数据
|
|
|
- // $station_data = $this->reportModel->getStationCountData() ?: [];
|
|
|
- $station_data =[];
|
|
|
- // 部门数据
|
|
|
- // $department_data = $this->reportModel->getDepartmentCountData() ?: [];
|
|
|
- // 用户数据
|
|
|
- $user_data = $this->reportModel->getDeviceUserCountData() ?: [];
|
|
|
+ $start_time = date('Y-m-d 00:00:00',time());
|
|
|
+ $end_time = date('Y-m-d 23:59:59',time());
|
|
|
|
|
|
- $data = array_merge($station_data, $user_data);
|
|
|
+
|
|
|
+ $host= Env::get('oracle.hostname', '127.0.0.1');
|
|
|
+ $port= Env::get('oracle.hostport', '1521');
|
|
|
+ $instance_name= Env::get('oracle.instance', 'ORCL');
|
|
|
+ $username= Env::get('oracle.username', 'root');
|
|
|
+ $password= Env::get('oracle.password', 'root');
|
|
|
+ $conn = oci_connect($username, $password, $host.':'.$port.'/'.$instance_name,'AL32UTF8');
|
|
|
+
|
|
|
+ if (!$conn) {
|
|
|
+ $e = oci_error();
|
|
|
+ trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
|
|
|
+ }
|
|
|
+
|
|
|
+ $sql='SELECT count(*) as TOTAL FROM DSSC2.W_DW_RF_RECORD WHERE RF_DATE >= to_date(\''. $start_time.'\', \'yyyy-mm-dd hh24:mi:ss\') AND RF_DATE <= to_date(\''.$end_time.'\', \'yyyy-mm-dd hh24:mi:ss\') ORDER BY RF_DATE DESC';
|
|
|
+ // 查询并渲染
|
|
|
+
|
|
|
+ $stid = oci_parse($conn, $sql);
|
|
|
+ oci_define_by_name($stid, 'TOTAL', $passCount);
|
|
|
+ oci_execute($stid);
|
|
|
+ oci_fetch($stid);
|
|
|
+
|
|
|
+ oci_free_statement($stid);
|
|
|
+ oci_close($conn);
|
|
|
+ $alarmCount=Db::table('control_alarm')->whereBetweenTime('created_at', $start_time,$end_time)->count();
|
|
|
+ $data = array(
|
|
|
+ 'passCount'=>(string)$passCount,
|
|
|
+ 'alarmCount'=>(string)$alarmCount,
|
|
|
+ );
|
|
|
return CatchResponse::success($data);
|
|
|
}
|
|
|
|