273 lines
11 KiB
PHP
Executable File
273 lines
11 KiB
PHP
Executable File
<!-- Date Picker -->
|
|
<link rel="stylesheet" href="<?= base_url('bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css') ?>">
|
|
<!-- Daterange picker -->
|
|
<link rel="stylesheet" href="<?= base_url('bower_components/bootstrap-daterangepicker/daterangepicker.css') ?>">
|
|
<!-- ChartJS -->
|
|
<script src="<?= base_url('bower_components/Chart.js/Chart.js') ?>"></script>
|
|
|
|
<?php
|
|
$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);
|
|
}
|
|
|
|
/**
|
|
** Liste des souscriptions
|
|
**/
|
|
$date = date("Y");
|
|
$insuranceSubcriptions =array();
|
|
for ($i = 1; $i <= 12; $i++) {
|
|
$monthQuery = $this->db->query("SELECT id FROM nh_insurances_subscriptions
|
|
WHERE MONTH(created_at) = '".$months[$i-1]."' AND YEAR(created_at) = '".$years[$i-1]."'
|
|
AND network_id ='".$this->session->userdata('network_id')."'");
|
|
array_push($insuranceSubcriptions, $monthQuery->num_rows());
|
|
}
|
|
|
|
$careRequests = [];
|
|
|
|
// $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>
|
|
<?= $this->lang->line('validating_agent'); ?>
|
|
<small><?= $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-md-4 col-xs-6">
|
|
<!-- small box -->
|
|
<div class="small-box bg-green">
|
|
<div class="inner">
|
|
<h3><?= $acceptedRequests ?? 0;?></h3>
|
|
|
|
<p><?= $this->lang->line('accepted_subscription_requests'); ?></p>
|
|
</div>
|
|
<div class="icon">
|
|
<i class="ion ion-checkmark-circled"></i>
|
|
</div>
|
|
<a href="<?= base_url('ValidatingAgent/requests?history=insurance-subscriptions') ?>" class="small-box-footer"><?= $this->lang->line("Plus d'informations"); ?><i class="fa fa-arrow-circle-right"></i></a>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-3 col-md-4 col-xs-6">
|
|
<!-- small box -->
|
|
<div class="small-box bg-orange">
|
|
<div class="inner">
|
|
<h3><?= $untreatedRequests ?? 0;?></h3>
|
|
|
|
<p><?= $this->lang->line('not_treated_subscription_requests'); ?></p>
|
|
</div>
|
|
<div class="icon">
|
|
<i class="ion ion-alert-circled"></i>
|
|
</div>
|
|
<a href="<?= base_url('ValidatingAgent/requests?history=insurance-subscriptions') ?>" class="small-box-footer"><?= $this->lang->line("Plus d'informations"); ?> <i class="fa fa-arrow-circle-right"></i></a>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-3 col-md-4 col-xs-6">
|
|
<!-- small box -->
|
|
<div class="small-box bg-red">
|
|
<div class="inner">
|
|
<h3><?= $rejectedRequests ?? 0;?></h3>
|
|
|
|
<p><?= $this->lang->line("rejected_subscription_requests"); ?></p>
|
|
</div>
|
|
<div class="icon">
|
|
<i class="ion ion-close-circled"></i>
|
|
</div>
|
|
<a href="<?= base_url('ValidatingAgent/requests?history=insurance-subscriptions') ?>" data-toggle="modal" data-target="#modal-default2" class="small-box-footer"><?= $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"><?= $this->lang->line('subscription_requests'); ?></h3>
|
|
</div>
|
|
<div class="box-body">
|
|
<div class="chart">
|
|
<canvas id="barChart" style="height:230px"></canvas>
|
|
</div>
|
|
</div>
|
|
<!-- /.box-body -->
|
|
</div>
|
|
<!-- /.box -->
|
|
</div>
|
|
|
|
<!-- <div class="col-xs-6">-->
|
|
|
|
<!-- <div class="box box-danger">-->
|
|
<!-- <div class="box-header with-border">-->
|
|
<!-- <h3 class="box-title">--><?php //echo $this->lang->line('subscription_requests'); ?><!--</h3>-->
|
|
<!-- </div>-->
|
|
<!-- <div class="box-body" id="chartAd">-->
|
|
<!-- <canvas id="pieChart" style="height:250px"></canvas>-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
<!-- </div>-->
|
|
|
|
</div>
|
|
<!-- /.row -->
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
|
<!-- jQuery 3 -->
|
|
<script src="<?= base_url('bower_components/jquery/dist/jquery.min.js') ?>"></script>
|
|
<!-- jQuery UI 1.11.4 -->
|
|
<script src="<?= 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="<?= base_url('bower_components/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
|
|
<!-- Morris.js charts -->
|
|
<script src="<?= base_url('bower_components/raphael/raphael.min.js') ?>"></script>
|
|
<!-- Sparkline -->
|
|
<script src="<?= base_url('bower_components/jquery-sparkline/dist/jquery.sparkline.min.js') ?>"></script>
|
|
<!-- jvectormap -->
|
|
<script src="<?= base_url('plugins/jvectormap/jquery-jvectormap-1.2.2.min.js') ?>"></script>
|
|
<script src="<?= base_url('plugins/jvectormap/jquery-jvectormap-world-mill-en.js') ?>"></script>
|
|
<!-- jQuery Knob Chart -->
|
|
<script src="<?= base_url('bower_components/jquery-knob/dist/jquery.knob.min.js') ?>"></script>
|
|
<!-- daterangepicker -->
|
|
<script src="<?= base_url('bower_components/moment/min/moment.min.js') ?>"></script>
|
|
<script src="<?= base_url('bower_components/bootstrap-daterangepicker/daterangepicker.js') ?>"></script>
|
|
<!-- datepicker -->
|
|
<script src="<?= base_url('bower_components/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js') ?>"></script>
|
|
<!-- Bootstrap WYSIHTML5 -->
|
|
<script src="<?= base_url('plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js') ?>"></script>
|
|
<!-- Slimscroll -->
|
|
<script src="<?= base_url('bower_components/jquery-slimscroll/jquery.slimscroll.min.js') ?>"></script>
|
|
<!-- FastClick -->
|
|
<script src="<?= base_url('bower_components/fastclick/lib/fastclick.js') ?>"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="<?= base_url('dist/js/adminlte.min.js') ?>"></script>
|
|
<!-- AdminLTE for demo purposes -->
|
|
<script src="<?= base_url('dist/js/demo.js') ?>"></script>
|
|
|
|
<!-- ChartJS -->
|
|
<script src="<?= base_url('bower_components/chart.js/Chart.js') ?>"></script>
|
|
|
|
<script >
|
|
|
|
|
|
var areaChartData = {
|
|
labels : <?= json_encode($label_months) ?>,
|
|
datasets: [
|
|
{
|
|
label : "<?= $this->lang->line('subscriptions') ?>",
|
|
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: <?= json_encode($insuranceSubcriptions) ?>
|
|
}
|
|
]
|
|
};
|
|
</script>
|
|
<!-- Page script -->
|
|
<script src="<?= base_url('dist/js/custom.js') ?>"></script>
|