+ Bug fixed when reporting credits requests v2
This commit is contained in:
parent
80116d0bc3
commit
396d5b9f6c
|
@ -30,8 +30,9 @@ class Hyperviseur_dash extends CI_Controller
|
|||
|
||||
redirect('index.php', $data);
|
||||
} else {
|
||||
$count_d_traite = $this->user_model->getCountDemandeByStatut($this->session->userdata('member_code'), 1);
|
||||
$count_d_no_traite = $this->user_model->getCountDemandeByStatut($this->session->userdata('member_code'), 0);
|
||||
$count_d_traite = $this->user_model->getCountDemandeByStatut($this->session->userdata('member_code'), '1');
|
||||
$count_d_no_traite = $this->user_model->getCountDemandeByStatut($this->session->userdata('member_code'), '0');
|
||||
$count_d_no_canceled = $this->user_model->getCountDemandeByStatut($this->session->userdata('member_code'), '2');
|
||||
$count_d = $this->user_model->getCountDemande($this->session->userdata('member_code'));
|
||||
|
||||
$data['active'] = "dash";
|
||||
|
@ -54,6 +55,7 @@ class Hyperviseur_dash extends CI_Controller
|
|||
$data['count_sup'] = $this->user_model->countUser("super", 'all', $this->session->userdata('member_code'));
|
||||
$data['count_d_traite'] = $count_d_traite;
|
||||
$data['count_d_no_traite'] = $count_d_no_traite;
|
||||
$data['count_d_no_canceled'] = $count_d_no_canceled;
|
||||
$data['count_d_users'] = $count_d;
|
||||
$data['networks'] = $this->user_model->getNetworkByHyp($this->session->userdata('member_code'));
|
||||
$data['hasWallet'] = $this->wallet_model->getConfigWallet($this->session->userdata('network_id'));
|
||||
|
|
|
@ -30,8 +30,9 @@ class Superviseur_dash extends CI_Controller
|
|||
|
||||
$count_g = $this->User_model->geolocatedCountByParrain($this->session->userdata('member_code'));
|
||||
$count_d = $this->User_model->getCountDemande($this->session->userdata('member_code'));
|
||||
$count_d_traite = $this->User_model->getCountDemandeByStatut($this->session->userdata('member_code'), 1);
|
||||
$count_d_no_traite = $this->User_model->getCountDemandeByStatut($this->session->userdata('member_code'), 0);
|
||||
$count_d_traite = $this->User_model->getCountDemandeByStatut($this->session->userdata('member_code'), '1');
|
||||
$count_d_no_traite = $this->User_model->getCountDemandeByStatut($this->session->userdata('member_code'), '0');
|
||||
$count_d_no_canceled = $this->user_model->getCountDemandeByStatut($this->session->userdata('member_code'), '2');
|
||||
|
||||
$data['list_geolocated_users'] = $this->user_model->getUsersGeolocatedForSup($this->session->userdata('member_code'));
|
||||
|
||||
|
@ -52,6 +53,7 @@ class Superviseur_dash extends CI_Controller
|
|||
$data['count_d_users'] = $count_d;
|
||||
$data['count_d_traite'] = $count_d_traite;
|
||||
$data['count_d_no_traite'] = $count_d_no_traite;
|
||||
$data['count_d_no_canceled'] = $count_d_no_canceled;
|
||||
$data['hasWallet'] = $this->wallet_model->getConfigWallet($this->session->userdata('network_id'));
|
||||
$this->load->view('header_sup', $data);
|
||||
$this->load->view('superviseur_dash');
|
||||
|
|
|
@ -553,4 +553,6 @@ $lang['modify_operator'] = "Modify operator";
|
|||
$lang['assign_operator_to_country'] = "Assign an operator to a country";
|
||||
$lang['operator_type'] = "Operator type";
|
||||
$lang['no_type'] = "No type";
|
||||
$lang['accepted_demands'] = "Requests accepted";
|
||||
$lang['canceled_demands'] = "Canceled requests";
|
||||
?>
|
||||
|
|
|
@ -565,4 +565,6 @@ $lang['modify_operator'] = "Modifier l'opérateur";
|
|||
$lang['assign_operator_to_country'] = "Assigner un opérateur à un pays";
|
||||
$lang['operator_type'] = "Type d'opérateur";
|
||||
$lang['no_type'] = "Aucun type";
|
||||
$lang['accepted_demands'] = "Demandes acceptées";
|
||||
$lang['canceled_demands'] = "Demandes annulées";
|
||||
?>
|
||||
|
|
|
@ -65,6 +65,17 @@
|
|||
}
|
||||
}
|
||||
|
||||
function getDelayOfTreatmentInSeconds($time, $dateAjout){
|
||||
if ($time == null) {
|
||||
$now = time();
|
||||
$date2 = strtotime($dateAjout);
|
||||
return abs($now - $date2);
|
||||
}else{
|
||||
return $time ;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// function toLocateDate($date , $timezone){
|
||||
// if($date){
|
||||
// $carbon = Carbon::createFromFormat('Y-m-d H:i:s', $date, 'UTC');
|
||||
|
@ -213,6 +224,7 @@
|
|||
<th>" . $this->lang->line('Date de traitement') . "</th>
|
||||
<th>" . $this->lang->line('Statut') . "</th>
|
||||
<th>" . $this->lang->line('Délai de traitement') . "</th>
|
||||
<th>" . $this->lang->line('Délai de traitement')."(en minutes)" . "</th>
|
||||
</tr>";
|
||||
|
||||
?>
|
||||
|
@ -250,7 +262,7 @@
|
|||
<td > " . $row->dateModif . "</td>
|
||||
<td>$etat</td>
|
||||
<td>" . traitementTemps($row->temps, $row->dateAjout) . "</td>
|
||||
|
||||
<td>" . getDelayOfTreatmentInSeconds($row->temps, $row->dateAjout)/60 . "</td>
|
||||
</tr>";
|
||||
|
||||
}
|
||||
|
@ -304,6 +316,7 @@
|
|||
<th>" . $this->lang->line('Date de traitement') . "</th>
|
||||
<th>" . $this->lang->line('Statut') . "</th>
|
||||
<th>" . $this->lang->line('Délai de traitement') . "</th>
|
||||
<th>" . $this->lang->line('Délai de traitement')."(en minutes)" . "</th>
|
||||
</tr>";
|
||||
|
||||
?>
|
||||
|
@ -339,6 +352,7 @@
|
|||
<td > " . $row->dateModif . "</td>
|
||||
<td>$etat</td>
|
||||
<td>" . traitementTemps($row->temps, $row->dateAjout) . "</td>
|
||||
<td>" . getDelayOfTreatmentInSeconds($row->temps, $row->dateAjout)/60 . "</td>
|
||||
|
||||
</tr>";
|
||||
|
||||
|
@ -725,6 +739,7 @@
|
|||
<th>" . $this->lang->line('Date de traitement') . "</th>
|
||||
<th>" . $this->lang->line('Statut') . "</th>
|
||||
<th>" . $this->lang->line('Délai de traitement') . "</th>
|
||||
<th>" . $this->lang->line('Délai de traitement')."(en minutes)" . "</th>
|
||||
</tr>";
|
||||
?>
|
||||
</thead>
|
||||
|
@ -763,6 +778,7 @@
|
|||
<td> " . $row->dateModif . "</td>
|
||||
<td>$etat</td>
|
||||
<td>" . traitementTemps($row->temps, $row->dateAjout) . "</td>
|
||||
<td>" . getDelayOfTreatmentInSeconds($row->temps, $row->dateAjout)/60 . "</td>
|
||||
</tr>";
|
||||
|
||||
}
|
||||
|
@ -994,7 +1010,12 @@
|
|||
"columnDefs": [{
|
||||
targets: [5, 6],
|
||||
render: $.fn.dataTable.render.moment('YYYY-MM-DD HH:mm:ss', 'D MMMM YYYY HH:mm:ss', format),
|
||||
}],
|
||||
},
|
||||
{
|
||||
"targets": [ 9 ],
|
||||
"visible": false
|
||||
}
|
||||
],
|
||||
dom: 'Bfrtip',
|
||||
"buttons": [
|
||||
'pageLength',
|
||||
|
@ -1020,7 +1041,12 @@
|
|||
"columnDefs": [{
|
||||
targets: [3, 4],
|
||||
render: $.fn.dataTable.render.moment('YYYY-MM-DD HH:mm:ss', 'D MMMM YYYY HH:mm:ss', format),
|
||||
}],
|
||||
},
|
||||
{
|
||||
"targets": [ 7 ],
|
||||
"visible": false
|
||||
}
|
||||
],
|
||||
dom: 'Bfrtip',
|
||||
"buttons": [
|
||||
'pageLength',
|
||||
|
@ -1045,7 +1071,12 @@
|
|||
"columnDefs": [{
|
||||
targets: [1, 2],
|
||||
render: $.fn.dataTable.render.moment('YYYY-MM-DD HH:mm:ss', 'D MMMM YYYY HH:mm:ss', format)
|
||||
}],
|
||||
},
|
||||
{
|
||||
"targets": [ 5 ],
|
||||
"visible": false
|
||||
}
|
||||
],
|
||||
dom: 'Bfrtip',
|
||||
"buttons": [
|
||||
'pageLength',
|
||||
|
|
|
@ -182,7 +182,7 @@ if($users_geolocated_query!=false){
|
|||
<p><?php echo $this->lang->line('Utilisateurs géolocalisés'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class=""></i>
|
||||
<i class="ion ion-location"></i>
|
||||
</div>
|
||||
<a href="#" data-toggle="modal" data-target="#modal-default" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
|
@ -197,7 +197,7 @@ if($users_geolocated_query!=false){
|
|||
<p><?php echo $this->lang->line('Superviseur'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class=""></i>
|
||||
<i class="ion ion-ios-people"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Hyperviseur_dash/getAllSupervisor') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
|
@ -211,7 +211,7 @@ if($users_geolocated_query!=false){
|
|||
<p><?php echo $this->lang->line('Demandes de crédits'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class=""></i>
|
||||
<i class="ion ion-cash"></i>
|
||||
</div>
|
||||
<a href="#" data-toggle="modal" data-target="#modal-default2" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
|
@ -222,28 +222,42 @@ if($users_geolocated_query!=false){
|
|||
<div class="inner">
|
||||
<h3><?php echo $count_d_traite;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line("Demandes traitées"); ?></p>
|
||||
<p><?php echo $this->lang->line("accepted_demands"); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class=""></i>
|
||||
<i class="ion ion-checkmark-circled"></i>
|
||||
</div>
|
||||
<a href="#" data-toggle="modal" data-target="#modal-default2" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-4 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-red">
|
||||
<div class="small-box bg-orange">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_no_traite;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line("Demandes non traitées"); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class=""></i>
|
||||
<i class="ion ion-alert-circled"></i>
|
||||
</div>
|
||||
<a href="#" data-toggle="modal" data-target="#modal-default2" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-4 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-red">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_no_canceled;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line("canceled_demands"); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-close-circled"></i>
|
||||
</div>
|
||||
<a href="#" data-toggle="modal" data-target="#modal-default2" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.col -->
|
||||
</div>
|
||||
<div class="row">
|
||||
|
|
|
@ -1,408 +1,422 @@
|
|||
|
||||
<!-- jvectormap -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('bower_components/jvectormap/jquery-jvectormap.css') ?>">
|
||||
<!-- Date Picker -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css') ?>">
|
||||
<!-- Daterange picker -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('bower_components/bootstrap-daterangepicker/daterangepicker.css') ?>">
|
||||
<!-- bootstrap wysihtml5 - text editor -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css') ?>">
|
||||
<!-- ChartJS -->
|
||||
<script src="<?php echo base_url('bower_components/Chart.js/Chart.js') ?>"></script>
|
||||
|
||||
<?php
|
||||
|
||||
function convertDate($date){
|
||||
$month = null;
|
||||
switch ($date) {
|
||||
case "Jan":
|
||||
$month = 1;
|
||||
break;
|
||||
case "Feb":
|
||||
$month = 2;
|
||||
break;
|
||||
case "Mar":
|
||||
$month = 3;
|
||||
break;
|
||||
case "Apr":
|
||||
$month = 4;
|
||||
break;
|
||||
case "May":
|
||||
$month = 5;
|
||||
break;
|
||||
case "Jun":
|
||||
$month = 6;
|
||||
break;
|
||||
case "Jul":
|
||||
$month = 7;
|
||||
break;
|
||||
case "Aug":
|
||||
$month = 8;
|
||||
break;
|
||||
case "Sep":
|
||||
$month = 9;
|
||||
break;
|
||||
case "Oct":
|
||||
$month = 10;
|
||||
break;
|
||||
case "Nov":
|
||||
$month = 11;
|
||||
break;
|
||||
case "Dec":
|
||||
$month = 12;
|
||||
break;
|
||||
}
|
||||
return $month;
|
||||
}
|
||||
|
||||
$month = time();
|
||||
$months[]=convertDate(date("M"));
|
||||
$label_months [] = date("M")." ".date("Y");
|
||||
$years[]= date("Y");
|
||||
for ($i = 1; $i <= 11; $i++) {
|
||||
$month = strtotime('last month', $month);
|
||||
$months [] = convertDate(date("M", $month));
|
||||
$years[] = date("Y", $month);
|
||||
$label_months [] = date("M", $month)." ".date("Y", $month);
|
||||
}
|
||||
/**
|
||||
** Simple User Treatment
|
||||
**/
|
||||
|
||||
$date = date("Y");
|
||||
|
||||
$demandes_data[] = '';
|
||||
$demandes_data =array();
|
||||
for ($i = 1; $i <= 12; $i++) {
|
||||
$demandes_query_mounth = $this->db->query("SELECT demande_id FROM info_demandeCredits
|
||||
WHERE MONTH(dateAjout) = '".$months[$i-1]."' AND YEAR(dateAjout) = ".$years[$i-1]."
|
||||
AND codeParrain='".$this->session->userdata('member_code')."'"
|
||||
);
|
||||
$demandes_data[] = $demandes_query_mounth->num_rows();
|
||||
}
|
||||
|
||||
$demandes_query = $listdem;
|
||||
|
||||
if($demandes_query!=false){
|
||||
$demandes=$demandes_query->num_rows();
|
||||
// Count networks for simple users
|
||||
$array_simple = array();
|
||||
$num = 0;
|
||||
if ($demandes > 0) {
|
||||
foreach($demandes_query->result() as $row) {
|
||||
$num++;
|
||||
$array_simple[] = $row->codeMembre;
|
||||
}
|
||||
|
||||
$vals_simple = array_count_values($array_simple);
|
||||
//echo 'No. of NON Duplicate Items: '.count($vals_simple).'<br><br>';
|
||||
//print_r($vals_simple);
|
||||
$pieChart2 = array();
|
||||
foreach(array_keys($vals_simple) as $paramName2) {
|
||||
$color2 = dechex(rand(0x000000, 0xFFFFFF));
|
||||
$trash2 = array("value" => $vals_simple[$paramName2],
|
||||
"color" => "#".$color2,
|
||||
"highlight" => "#".$color2,
|
||||
"label" => $paramName2);
|
||||
|
||||
$pieChart2[]= $trash2;
|
||||
|
||||
}
|
||||
}
|
||||
}else{
|
||||
$pieChart2 = array();
|
||||
}
|
||||
|
||||
/**
|
||||
** Geolocated User Treatment
|
||||
**/
|
||||
$users_geolocated_query = $list_geolocated_users;
|
||||
// Geolocated Users by month replace 2016 by NOW()
|
||||
$users_geolocated_data[] = '';
|
||||
$users_geolocated_data =array();
|
||||
for ($i = 1; $i <= 12; $i++) {
|
||||
$users_geolocated_query_january = $this->db->query("SELECT agent_id FROM super_infos
|
||||
WHERE MONTH(date_created) = '".$months[$i-1]."' AND YEAR(date_created) = ".$years[$i-1]."
|
||||
AND category='geolocated' AND code_parrain='".$this->session->userdata('member_code')."'");
|
||||
$users_geolocated_data[] = $users_geolocated_query_january->num_rows();
|
||||
}
|
||||
|
||||
if($users_geolocated_query!=false){
|
||||
|
||||
$users_geolocated=$users_geolocated_query->num_rows();
|
||||
//$users_geolocated_query = json_encode($users_geolocated_query->result());
|
||||
// Counts network for geolocated users
|
||||
$array_geolocated = array();
|
||||
$num = 0;
|
||||
if ($users_geolocated > 0) {
|
||||
foreach($users_geolocated_query->result() as $row) {
|
||||
$num++;
|
||||
$array_geolocated[] = date("M", strtotime($row->date_created));
|
||||
}
|
||||
$vals_geolocated = array_count_values($array_geolocated);
|
||||
//echo 'No. of NON Duplicate Items: '.count($vals_geolocated).'<br><br>';
|
||||
//print_r($vals_geolocated);
|
||||
$pieChart = array();
|
||||
foreach(array_keys($vals_geolocated) as $paramName) {
|
||||
$color = dechex(rand(0x000000, 0xFFFFFF));
|
||||
$trash = array("value" => $vals_geolocated[$paramName],
|
||||
"color" => "#".$color,
|
||||
"highlight" => "#".$color,
|
||||
"label" => $paramName);
|
||||
|
||||
$pieChart[]= $trash;
|
||||
}
|
||||
}
|
||||
}else{
|
||||
$pieChart = array();
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="content-wrapper">
|
||||
|
||||
<!-- Content Header (Page header) -->
|
||||
<section class="content-header">
|
||||
<h1>
|
||||
<?php echo $this->lang->line('Superviseur'); ?>
|
||||
<small><?php echo $this->lang->line('Tableau de bord'); ?></small>
|
||||
</h1>
|
||||
</section>
|
||||
|
||||
<section class="content">
|
||||
<!-- Small boxes (Stat box) -->
|
||||
<div class="row">
|
||||
|
||||
<div class="col-lg-3 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-yellow">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_g_users;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Utilisateurs géolocalisés'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-person-add"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getAllUser_g') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?><i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-aqua">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_users;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Demandes de crédits'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-cash"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getDemandes') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?><i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-green">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_traite;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Demandes traitées'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-checkmark-circled"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getDemandes') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?><i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-red">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_no_traite;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Demandes non traitées'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-close-circled"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getDemandes') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-12">
|
||||
<!-- BAR CHART -->
|
||||
<div class="box box-success">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo $this->lang->line('Adhésions'); ?></h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
<div class="chart">
|
||||
<canvas id="barChart" style="height:230px"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
<!-- /.box -->
|
||||
</div>
|
||||
<!-- /.col -->
|
||||
<div class="col-xs-6">
|
||||
<!-- DONUT CHART -->
|
||||
<div class="box box-danger">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo $this->lang->line('Adhésions par mois sur une année'); ?></h3>
|
||||
</div>
|
||||
<div class="box-body" id="chartAd">
|
||||
<canvas id="pieChart" style="height:250px"></canvas>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
<!-- /.box -->
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<!-- DONUT CHART -->
|
||||
<div class="box box-danger">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo $this->lang->line('Demande de crédits par utilisateurs'); ?></h3>
|
||||
</div>
|
||||
<div class="box-body" id="chartDem">
|
||||
<canvas id="pieChart2" style="height:250px"></canvas>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
<!-- /.box -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.row -->
|
||||
</section>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- jQuery 3 -->
|
||||
<script src="<?php echo base_url('bower_components/jquery/dist/jquery.min.js') ?>"></script>
|
||||
<!-- jQuery UI 1.11.4 -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-ui/jquery-ui.min.js') ?>"></script>
|
||||
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
|
||||
<script>
|
||||
$.widget.bridge('uibutton', $.ui.button);
|
||||
</script>
|
||||
<!-- Bootstrap 3.3.7 -->
|
||||
<script src="<?php echo base_url('bower_components/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
|
||||
<!-- Morris.js charts -->
|
||||
<script src="<?php echo base_url('bower_components/raphael/raphael.min.js') ?>"></script>
|
||||
<!-- Sparkline -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-sparkline/dist/jquery.sparkline.min.js') ?>"></script>
|
||||
<!-- jvectormap -->
|
||||
<script src="<?php echo base_url('plugins/jvectormap/jquery-jvectormap-1.2.2.min.js') ?>"></script>
|
||||
<script src="<?php echo base_url('plugins/jvectormap/jquery-jvectormap-world-mill-en.js') ?>"></script>
|
||||
<!-- jQuery Knob Chart -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-knob/dist/jquery.knob.min.js') ?>"></script>
|
||||
<!-- daterangepicker -->
|
||||
<script src="<?php echo base_url('bower_components/moment/min/moment.min.js') ?>"></script>
|
||||
<script src="<?php echo base_url('bower_components/bootstrap-daterangepicker/daterangepicker.js') ?>"></script>
|
||||
<!-- datepicker -->
|
||||
<script src="<?php echo base_url('bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js') ?>"></script>
|
||||
<!-- Bootstrap WYSIHTML5 -->
|
||||
<script src="<?php echo base_url('plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js') ?>"></script>
|
||||
<!-- Slimscroll -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-slimscroll/jquery.slimscroll.min.js') ?>"></script>
|
||||
<!-- FastClick -->
|
||||
<script src="<?php echo base_url('bower_components/fastclick/lib/fastclick.js') ?>"></script>
|
||||
<!-- AdminLTE App -->
|
||||
<script src="<?php echo base_url('dist/js/adminlte.min.js') ?>"></script>
|
||||
<!-- AdminLTE for demo purposes -->
|
||||
<script src="<?php echo base_url('dist/js/demo.js') ?>"></script>
|
||||
|
||||
<!-- ChartJS -->
|
||||
<script src="<?php echo base_url('bower_components/chart.js/Chart.js') ?>"></script>
|
||||
|
||||
<script >
|
||||
/*
|
||||
|
||||
var cities = [];
|
||||
var cities_simple = [];
|
||||
|
||||
//console.log(geocodeposition(52.5487429714954,-1.81602098644987));
|
||||
|
||||
|
||||
for(var i = 0 ; i < 1 ; i++ ) {
|
||||
var cit;
|
||||
var latit = Number(users[i]['latitude']);
|
||||
var longi = Number(users[i]['longitude']);
|
||||
|
||||
|
||||
//cit = geocodeposition(latit, longi);
|
||||
cities[i] = {};
|
||||
cities[i] = cit;
|
||||
}
|
||||
*/
|
||||
//console.log(cities);
|
||||
|
||||
var Pie = '<?php echo json_encode($pieChart) ?>';
|
||||
if(Pie==='[]'){
|
||||
var select = document.getElementById('chartAd');
|
||||
$(select.children).hide();
|
||||
$(select).append("<p><?php echo $this->lang->line('Aucune adhesion'); ?></p>");
|
||||
}else{
|
||||
Pie = JSON.parse(Pie);
|
||||
}
|
||||
|
||||
var Pie2 = '<?php echo json_encode($pieChart2) ?>';
|
||||
if(Pie2==='[]') {
|
||||
var select = document.getElementById('chartDem');
|
||||
$(select.children).hide();
|
||||
$(select).append("<p><?php echo $this->lang->line('Aucune demande'); ?></p>");
|
||||
}else{
|
||||
Pie2 = JSON.parse(Pie2);
|
||||
}
|
||||
|
||||
|
||||
|
||||
var areaChartData = {
|
||||
labels : <?php echo json_encode($label_months) ?>,
|
||||
datasets: [
|
||||
{
|
||||
label : 'Electronics',
|
||||
fillColor : 'rgba(255, 162, 0, 1)',
|
||||
strokeColor : 'rgba(255, 162, 0, 1)',
|
||||
pointColor : 'rgba(255, 162, 0, 1)',
|
||||
pointStrokeColor : '#ffa200',
|
||||
pointHighlightFill : '#fff',
|
||||
pointHighlightStroke: 'rgba(220,220,220,1)',
|
||||
data: <?php echo json_encode($users_geolocated_data) ?>
|
||||
},
|
||||
{
|
||||
label : 'Digital Goods',
|
||||
fillColor : 'rgba(0, 187, 255, 1)',
|
||||
strokeColor : 'rgba(0, 187, 255, 1)',
|
||||
pointColor : '#00bbff',
|
||||
pointStrokeColor : 'rgba(0, 187, 255, 1)',
|
||||
pointHighlightFill : '#fff',
|
||||
pointHighlightStroke: 'rgba(0, 187, 255, 1)',
|
||||
data : <?php echo json_encode($demandes_data) ?>
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
var ctx = document.getElementById('barChart').getContext('2d');
|
||||
var chart = new Chart(ctx, {
|
||||
// The type of chart we want to create
|
||||
type: 'line',
|
||||
|
||||
// The data for our dataset
|
||||
data: {
|
||||
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July','August','September','October','November','December'],
|
||||
datasets: [{
|
||||
label: "My First dataset",
|
||||
backgroundColor: 'rgb(255, 99, 132)',
|
||||
borderColor: 'rgb(255, 99, 132)',
|
||||
data: [0, 10, 5, 2, 20, 30, 45]
|
||||
}]
|
||||
},
|
||||
|
||||
// Configuration options go here
|
||||
options: {}
|
||||
});
|
||||
</script>
|
||||
<!-- Page script -->
|
||||
<script src="<?php echo base_url('dist/js/custom.js') ?>"></script>
|
||||
|
||||
<!-- jvectormap -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('bower_components/jvectormap/jquery-jvectormap.css') ?>">
|
||||
<!-- Date Picker -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css') ?>">
|
||||
<!-- Daterange picker -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('bower_components/bootstrap-daterangepicker/daterangepicker.css') ?>">
|
||||
<!-- bootstrap wysihtml5 - text editor -->
|
||||
<link rel="stylesheet" href="<?php echo base_url('plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css') ?>">
|
||||
<!-- ChartJS -->
|
||||
<script src="<?php echo base_url('bower_components/Chart.js/Chart.js') ?>"></script>
|
||||
|
||||
<?php
|
||||
|
||||
function convertDate($date){
|
||||
$month = null;
|
||||
switch ($date) {
|
||||
case "Jan":
|
||||
$month = 1;
|
||||
break;
|
||||
case "Feb":
|
||||
$month = 2;
|
||||
break;
|
||||
case "Mar":
|
||||
$month = 3;
|
||||
break;
|
||||
case "Apr":
|
||||
$month = 4;
|
||||
break;
|
||||
case "May":
|
||||
$month = 5;
|
||||
break;
|
||||
case "Jun":
|
||||
$month = 6;
|
||||
break;
|
||||
case "Jul":
|
||||
$month = 7;
|
||||
break;
|
||||
case "Aug":
|
||||
$month = 8;
|
||||
break;
|
||||
case "Sep":
|
||||
$month = 9;
|
||||
break;
|
||||
case "Oct":
|
||||
$month = 10;
|
||||
break;
|
||||
case "Nov":
|
||||
$month = 11;
|
||||
break;
|
||||
case "Dec":
|
||||
$month = 12;
|
||||
break;
|
||||
}
|
||||
return $month;
|
||||
}
|
||||
|
||||
$month = time();
|
||||
$months[]=convertDate(date("M"));
|
||||
$label_months [] = date("M")." ".date("Y");
|
||||
$years[]= date("Y");
|
||||
for ($i = 1; $i <= 11; $i++) {
|
||||
$month = strtotime('last month', $month);
|
||||
$months [] = convertDate(date("M", $month));
|
||||
$years[] = date("Y", $month);
|
||||
$label_months [] = date("M", $month)." ".date("Y", $month);
|
||||
}
|
||||
/**
|
||||
** Simple User Treatment
|
||||
**/
|
||||
|
||||
$date = date("Y");
|
||||
|
||||
$demandes_data[] = '';
|
||||
$demandes_data =array();
|
||||
for ($i = 1; $i <= 12; $i++) {
|
||||
$demandes_query_mounth = $this->db->query("SELECT demande_id FROM info_demandeCredits
|
||||
WHERE MONTH(dateAjout) = '".$months[$i-1]."' AND YEAR(dateAjout) = ".$years[$i-1]."
|
||||
AND codeParrain='".$this->session->userdata('member_code')."'"
|
||||
);
|
||||
$demandes_data[] = $demandes_query_mounth->num_rows();
|
||||
}
|
||||
|
||||
$demandes_query = $listdem;
|
||||
|
||||
if($demandes_query!=false){
|
||||
$demandes=$demandes_query->num_rows();
|
||||
// Count networks for simple users
|
||||
$array_simple = array();
|
||||
$num = 0;
|
||||
if ($demandes > 0) {
|
||||
foreach($demandes_query->result() as $row) {
|
||||
$num++;
|
||||
$array_simple[] = $row->codeMembre;
|
||||
}
|
||||
|
||||
$vals_simple = array_count_values($array_simple);
|
||||
//echo 'No. of NON Duplicate Items: '.count($vals_simple).'<br><br>';
|
||||
//print_r($vals_simple);
|
||||
$pieChart2 = array();
|
||||
foreach(array_keys($vals_simple) as $paramName2) {
|
||||
$color2 = dechex(rand(0x000000, 0xFFFFFF));
|
||||
$trash2 = array("value" => $vals_simple[$paramName2],
|
||||
"color" => "#".$color2,
|
||||
"highlight" => "#".$color2,
|
||||
"label" => $paramName2);
|
||||
|
||||
$pieChart2[]= $trash2;
|
||||
|
||||
}
|
||||
}
|
||||
}else{
|
||||
$pieChart2 = array();
|
||||
}
|
||||
|
||||
/**
|
||||
** Geolocated User Treatment
|
||||
**/
|
||||
$users_geolocated_query = $list_geolocated_users;
|
||||
// Geolocated Users by month replace 2016 by NOW()
|
||||
$users_geolocated_data[] = '';
|
||||
$users_geolocated_data =array();
|
||||
for ($i = 1; $i <= 12; $i++) {
|
||||
$users_geolocated_query_january = $this->db->query("SELECT agent_id FROM super_infos
|
||||
WHERE MONTH(date_created) = '".$months[$i-1]."' AND YEAR(date_created) = ".$years[$i-1]."
|
||||
AND category='geolocated' AND code_parrain='".$this->session->userdata('member_code')."'");
|
||||
$users_geolocated_data[] = $users_geolocated_query_january->num_rows();
|
||||
}
|
||||
|
||||
if($users_geolocated_query!=false){
|
||||
|
||||
$users_geolocated=$users_geolocated_query->num_rows();
|
||||
//$users_geolocated_query = json_encode($users_geolocated_query->result());
|
||||
// Counts network for geolocated users
|
||||
$array_geolocated = array();
|
||||
$num = 0;
|
||||
if ($users_geolocated > 0) {
|
||||
foreach($users_geolocated_query->result() as $row) {
|
||||
$num++;
|
||||
$array_geolocated[] = date("M", strtotime($row->date_created));
|
||||
}
|
||||
$vals_geolocated = array_count_values($array_geolocated);
|
||||
//echo 'No. of NON Duplicate Items: '.count($vals_geolocated).'<br><br>';
|
||||
//print_r($vals_geolocated);
|
||||
$pieChart = array();
|
||||
foreach(array_keys($vals_geolocated) as $paramName) {
|
||||
$color = dechex(rand(0x000000, 0xFFFFFF));
|
||||
$trash = array("value" => $vals_geolocated[$paramName],
|
||||
"color" => "#".$color,
|
||||
"highlight" => "#".$color,
|
||||
"label" => $paramName);
|
||||
|
||||
$pieChart[]= $trash;
|
||||
}
|
||||
}
|
||||
}else{
|
||||
$pieChart = array();
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="content-wrapper">
|
||||
|
||||
<!-- Content Header (Page header) -->
|
||||
<section class="content-header">
|
||||
<h1>
|
||||
<?php echo $this->lang->line('Superviseur'); ?>
|
||||
<small><?php echo $this->lang->line('Tableau de bord'); ?></small>
|
||||
</h1>
|
||||
</section>
|
||||
|
||||
<section class="content">
|
||||
<!-- Small boxes (Stat box) -->
|
||||
<div class="row">
|
||||
|
||||
<div class="col-lg-2 col-md-4 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-yellow">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_g_users;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Utilisateurs géolocalisés'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-location"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getAllUser_g') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?><i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-4 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-aqua">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_users;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Demandes de crédits'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-cash"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getDemandes') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?><i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-4 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-green">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_traite;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Demandes traitées'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-checkmark-circled"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getDemandes') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?><i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-4 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-orange">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_no_traite;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line('Demandes non traitées'); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-alert-circled"></i>
|
||||
</div>
|
||||
<a href="<?php echo base_url('index.php/Superviseur_dash/getDemandes') ?>" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-md-4 col-xs-6">
|
||||
<!-- small box -->
|
||||
<div class="small-box bg-red">
|
||||
<div class="inner">
|
||||
<h3><?php echo $count_d_no_canceled;?></h3>
|
||||
|
||||
<p><?php echo $this->lang->line("canceled_demands"); ?></p>
|
||||
</div>
|
||||
<div class="icon">
|
||||
<i class="ion ion-close-circled"></i>
|
||||
</div>
|
||||
<a href="#" data-toggle="modal" data-target="#modal-default2" class="small-box-footer"><?php echo $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-12">
|
||||
<!-- BAR CHART -->
|
||||
<div class="box box-success">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo $this->lang->line('Adhésions'); ?></h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
<div class="chart">
|
||||
<canvas id="barChart" style="height:230px"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
<!-- /.box -->
|
||||
</div>
|
||||
<!-- /.col -->
|
||||
<div class="col-xs-6">
|
||||
<!-- DONUT CHART -->
|
||||
<div class="box box-danger">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo $this->lang->line('Adhésions par mois sur une année'); ?></h3>
|
||||
</div>
|
||||
<div class="box-body" id="chartAd">
|
||||
<canvas id="pieChart" style="height:250px"></canvas>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
<!-- /.box -->
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<!-- DONUT CHART -->
|
||||
<div class="box box-danger">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"><?php echo $this->lang->line('Demande de crédits par utilisateurs'); ?></h3>
|
||||
</div>
|
||||
<div class="box-body" id="chartDem">
|
||||
<canvas id="pieChart2" style="height:250px"></canvas>
|
||||
</div>
|
||||
<!-- /.box-body -->
|
||||
</div>
|
||||
<!-- /.box -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.row -->
|
||||
</section>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- jQuery 3 -->
|
||||
<script src="<?php echo base_url('bower_components/jquery/dist/jquery.min.js') ?>"></script>
|
||||
<!-- jQuery UI 1.11.4 -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-ui/jquery-ui.min.js') ?>"></script>
|
||||
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
|
||||
<script>
|
||||
$.widget.bridge('uibutton', $.ui.button);
|
||||
</script>
|
||||
<!-- Bootstrap 3.3.7 -->
|
||||
<script src="<?php echo base_url('bower_components/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
|
||||
<!-- Morris.js charts -->
|
||||
<script src="<?php echo base_url('bower_components/raphael/raphael.min.js') ?>"></script>
|
||||
<!-- Sparkline -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-sparkline/dist/jquery.sparkline.min.js') ?>"></script>
|
||||
<!-- jvectormap -->
|
||||
<script src="<?php echo base_url('plugins/jvectormap/jquery-jvectormap-1.2.2.min.js') ?>"></script>
|
||||
<script src="<?php echo base_url('plugins/jvectormap/jquery-jvectormap-world-mill-en.js') ?>"></script>
|
||||
<!-- jQuery Knob Chart -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-knob/dist/jquery.knob.min.js') ?>"></script>
|
||||
<!-- daterangepicker -->
|
||||
<script src="<?php echo base_url('bower_components/moment/min/moment.min.js') ?>"></script>
|
||||
<script src="<?php echo base_url('bower_components/bootstrap-daterangepicker/daterangepicker.js') ?>"></script>
|
||||
<!-- datepicker -->
|
||||
<script src="<?php echo base_url('bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js') ?>"></script>
|
||||
<!-- Bootstrap WYSIHTML5 -->
|
||||
<script src="<?php echo base_url('plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js') ?>"></script>
|
||||
<!-- Slimscroll -->
|
||||
<script src="<?php echo base_url('bower_components/jquery-slimscroll/jquery.slimscroll.min.js') ?>"></script>
|
||||
<!-- FastClick -->
|
||||
<script src="<?php echo base_url('bower_components/fastclick/lib/fastclick.js') ?>"></script>
|
||||
<!-- AdminLTE App -->
|
||||
<script src="<?php echo base_url('dist/js/adminlte.min.js') ?>"></script>
|
||||
<!-- AdminLTE for demo purposes -->
|
||||
<script src="<?php echo base_url('dist/js/demo.js') ?>"></script>
|
||||
|
||||
<!-- ChartJS -->
|
||||
<script src="<?php echo base_url('bower_components/chart.js/Chart.js') ?>"></script>
|
||||
|
||||
<script >
|
||||
/*
|
||||
|
||||
var cities = [];
|
||||
var cities_simple = [];
|
||||
|
||||
//console.log(geocodeposition(52.5487429714954,-1.81602098644987));
|
||||
|
||||
|
||||
for(var i = 0 ; i < 1 ; i++ ) {
|
||||
var cit;
|
||||
var latit = Number(users[i]['latitude']);
|
||||
var longi = Number(users[i]['longitude']);
|
||||
|
||||
|
||||
//cit = geocodeposition(latit, longi);
|
||||
cities[i] = {};
|
||||
cities[i] = cit;
|
||||
}
|
||||
*/
|
||||
//console.log(cities);
|
||||
|
||||
var Pie = '<?php echo json_encode($pieChart) ?>';
|
||||
if(Pie==='[]'){
|
||||
var select = document.getElementById('chartAd');
|
||||
$(select.children).hide();
|
||||
$(select).append("<p><?php echo $this->lang->line('Aucune adhesion'); ?></p>");
|
||||
}else{
|
||||
Pie = JSON.parse(Pie);
|
||||
}
|
||||
|
||||
var Pie2 = '<?php echo json_encode($pieChart2) ?>';
|
||||
if(Pie2==='[]') {
|
||||
var select = document.getElementById('chartDem');
|
||||
$(select.children).hide();
|
||||
$(select).append("<p><?php echo $this->lang->line('Aucune demande'); ?></p>");
|
||||
}else{
|
||||
Pie2 = JSON.parse(Pie2);
|
||||
}
|
||||
|
||||
|
||||
|
||||
var areaChartData = {
|
||||
labels : <?php echo json_encode($label_months) ?>,
|
||||
datasets: [
|
||||
{
|
||||
label : 'Electronics',
|
||||
fillColor : 'rgba(255, 162, 0, 1)',
|
||||
strokeColor : 'rgba(255, 162, 0, 1)',
|
||||
pointColor : 'rgba(255, 162, 0, 1)',
|
||||
pointStrokeColor : '#ffa200',
|
||||
pointHighlightFill : '#fff',
|
||||
pointHighlightStroke: 'rgba(220,220,220,1)',
|
||||
data: <?php echo json_encode($users_geolocated_data) ?>
|
||||
},
|
||||
{
|
||||
label : 'Digital Goods',
|
||||
fillColor : 'rgba(0, 187, 255, 1)',
|
||||
strokeColor : 'rgba(0, 187, 255, 1)',
|
||||
pointColor : '#00bbff',
|
||||
pointStrokeColor : 'rgba(0, 187, 255, 1)',
|
||||
pointHighlightFill : '#fff',
|
||||
pointHighlightStroke: 'rgba(0, 187, 255, 1)',
|
||||
data : <?php echo json_encode($demandes_data) ?>
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
var ctx = document.getElementById('barChart').getContext('2d');
|
||||
var chart = new Chart(ctx, {
|
||||
// The type of chart we want to create
|
||||
type: 'line',
|
||||
|
||||
// The data for our dataset
|
||||
data: {
|
||||
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July','August','September','October','November','December'],
|
||||
datasets: [{
|
||||
label: "My First dataset",
|
||||
backgroundColor: 'rgb(255, 99, 132)',
|
||||
borderColor: 'rgb(255, 99, 132)',
|
||||
data: [0, 10, 5, 2, 20, 30, 45]
|
||||
}]
|
||||
},
|
||||
|
||||
// Configuration options go here
|
||||
options: {}
|
||||
});
|
||||
</script>
|
||||
<!-- Page script -->
|
||||
<script src="<?php echo base_url('dist/js/custom.js') ?>"></script>
|
||||
|
|
Loading…
Reference in New Issue