first commit - report data
This commit is contained in:
@@ -0,0 +1,136 @@
|
||||
<section class="content-header">
|
||||
<div class="container-fluid">
|
||||
<div class="row mb-2">
|
||||
<div class="col-sm-6">
|
||||
<h1>
|
||||
</h1>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<ol class="breadcrumb float-sm-right">
|
||||
<li class="breadcrumb-item"><a href="<?php echo base_url();?>">Dashboard</a></li>
|
||||
<li class="breadcrumb-item"><?php echo $parent;?></li>
|
||||
<li class="breadcrumb-item active"><?php echo $title;?></li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Main content -->
|
||||
<section class="content">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="card card-default">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><?php
|
||||
echo $title;
|
||||
$tglawal = $awal;
|
||||
$tglakhir= $akhir;
|
||||
$tglgabung = date("m/d/Y", strtotime($awal))." - ".date("m/d/Y", strtotime($akhir));
|
||||
?></h3>
|
||||
</div>
|
||||
<form action="<?php echo(base_url()); ?>index.php/lp_ppi/cuci_tangan" method="post" autocomplete="off">
|
||||
<div class="card-body">
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-1 col-form-label">Tanggal :</label>
|
||||
<div class="col-sm-4">
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">
|
||||
<i class="far fa-calendar-alt"></i>
|
||||
</span>
|
||||
</div>
|
||||
<input type="text" name="tanggalmonitoring" class="form-control float-right" id="reservation" value="<?php echo $tglgabung;?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<button type="submit" class="btn btn-outline-info">Search </button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="card-body">
|
||||
<?php if($this->session->flashdata('message')){?>
|
||||
<div id="alert" class="alert alert-success alert-dismissable">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<i class="icon fa fa-check"></i> Alert!
|
||||
<?php echo $this->session->flashdata('message');?>
|
||||
</div>
|
||||
<?php }?>
|
||||
<script>
|
||||
setTimeout(function() {
|
||||
$('#alert').hide('fast');
|
||||
}, 3000);
|
||||
</script>
|
||||
<table id="example1" class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>Kode</th>
|
||||
<th>Ruangan</th>
|
||||
<th>Kelas</th>
|
||||
<th>OPP PR</th>
|
||||
<th>CC PR</th>
|
||||
<th>OPP DK</th>
|
||||
<th>CC DK</th>
|
||||
<th>OPP MH</th>
|
||||
<th>CC MH</th>
|
||||
<th>OPP PKL</th>
|
||||
<th>CC PKL</th>
|
||||
<th>OPP TOT</th>
|
||||
<th>CC TOT</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$no=0;
|
||||
foreach ($rua as $dat) { $opppr=0; $ccpr=0; $oppdk=0; $ccdk=0; $oppmh=0; $ccmh=0; $opppkl=0; $ccpkl=0; $opptot=0; $cctot=0;
|
||||
foreach($cc as $datcc){
|
||||
if($dat->id == $datcc->idruang){
|
||||
if($datcc->petugas_cuci_tangan=="Perawat"){
|
||||
$ccpr = $ccpr+$datcc->nilai_kepatuhan;
|
||||
$opppr++;
|
||||
}elseif($datcc->petugas_cuci_tangan=="Dokter"){
|
||||
$ccdk = $ccdk+$datcc->nilai_kepatuhan;
|
||||
$oppdk++;
|
||||
}elseif($datcc->petugas_cuci_tangan=="Mahasiswa"){
|
||||
$ccmh = $ccmh+$datcc->nilai_kepatuhan;
|
||||
$oppmh++;
|
||||
}elseif($datcc->petugas_cuci_tangan=="Petugas kesehatan lain"){
|
||||
$ccpkl = $ccpkl+$datcc->nilai_kepatuhan;
|
||||
$opppkl++;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
$opptot = $opppr+$oppdk+$oppmh+$opppkl;
|
||||
$cctot = $ccpr+$ccdk+$ccmh+$ccpkl;
|
||||
$no++;
|
||||
echo("
|
||||
<tr>
|
||||
<td>".$no."</td>
|
||||
<td>".$dat->Kode."</td>
|
||||
<td>".$dat->Nama."</td>
|
||||
<td>".$dat->Kelas."</td>
|
||||
<td>".$opppr."</td>
|
||||
<td>".$ccpr."</td>
|
||||
<td>".$oppdk."</td>
|
||||
<td>".$ccdk."</td>
|
||||
<td>".$oppmh."</td>
|
||||
<td>".$ccmh."</td>
|
||||
<td>".$opppkl."</td>
|
||||
<td>".$ccpkl."</td>
|
||||
<td>".$opptot."</td>
|
||||
<td>".$cctot."</td>
|
||||
</tr>
|
||||
");
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@@ -0,0 +1,104 @@
|
||||
<section class="content-header">
|
||||
<div class="container-fluid">
|
||||
<div class="row mb-2">
|
||||
<div class="col-sm-6">
|
||||
<h1>
|
||||
</h1>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<ol class="breadcrumb float-sm-right">
|
||||
<li class="breadcrumb-item"><a href="<?php echo base_url();?>">Dashboard</a></li>
|
||||
<li class="breadcrumb-item"><?php echo $parent;?></li>
|
||||
<li class="breadcrumb-item active"><?php echo $title;?></li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- Main content -->
|
||||
<section class="content">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="card card-default">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><?php
|
||||
echo $title;
|
||||
$tglawal = $awal;
|
||||
$tglakhir= $akhir;
|
||||
$tglgabung = date("m/d/Y", strtotime($awal))." - ".date("m/d/Y", strtotime($akhir));
|
||||
?></h3>
|
||||
</div>
|
||||
<form action="<?php echo(base_url()); ?>index.php/lp_ppi/detail_cuci_tangan" method="post" autocomplete="off">
|
||||
<div class="card-body">
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-1 col-form-label">Tanggal :</label>
|
||||
<div class="col-sm-4">
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">
|
||||
<i class="far fa-calendar-alt"></i>
|
||||
</span>
|
||||
</div>
|
||||
<input type="text" name="tanggalmonitoring" class="form-control float-right" id="reservation" value="<?php echo $tglgabung;?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
<button type="submit" class="btn btn-outline-info">Search </button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="card-body">
|
||||
<?php if($this->session->flashdata('message')){?>
|
||||
<div id="alert" class="alert alert-success alert-dismissable">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||
<i class="icon fa fa-check"></i> Alert!
|
||||
<?php echo $this->session->flashdata('message');?>
|
||||
</div>
|
||||
<?php }?>
|
||||
<script>
|
||||
setTimeout(function() {
|
||||
$('#alert').hide('fast');
|
||||
}, 3000);
|
||||
</script>
|
||||
<table id="example1" class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>Kode</th>
|
||||
<th>Ruangan</th>
|
||||
<th>Kelas</th>
|
||||
<th>Firstname</th>
|
||||
<th>Datecreate</th>
|
||||
<th>Petugas</th>
|
||||
<th>Nilai Kepatuhan</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$no=0;
|
||||
foreach ($cc as $dat) {
|
||||
$no++;
|
||||
echo("
|
||||
<tr>
|
||||
<td>".$no."</td>
|
||||
<td>".$dat->koderuang."</td>
|
||||
<td>".$dat->namaruang."</td>
|
||||
<td>".$dat->kelasruang."</td>
|
||||
<td>".$dat->first_name."</td>
|
||||
<td>".$dat->date_created."</td>
|
||||
<td>".$dat->petugas_cuci_tangan."</td>
|
||||
<td>".$dat->nilai_kepatuhan."</td>
|
||||
</tr>
|
||||
");
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user