first commit - report data
This commit is contained in:
@@ -0,0 +1,139 @@
|
||||
<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_simrs_report/icd9" 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="tanggal" 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>No MR</th>
|
||||
<th>Nama</th>
|
||||
<th>Tanggal Datang</th>
|
||||
<th>Ruang</th>
|
||||
<th>Primary ICD 9 - Verif</th>
|
||||
<th>Sekunder ICD 9 - Verif</th>
|
||||
<th>ICD 9 - Non Verif</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$no=1; $idxdaftar=1; $nomr=""; $paricdver=""; $sekicdver=""; $nonicd="";
|
||||
foreach ($icd9 as $dat) {
|
||||
if($idxdaftar==1){
|
||||
$nomr= $dat->nomr;
|
||||
$idxdaftar= $dat->idxdaftar;
|
||||
|
||||
if($dat->icdorder=="1"){
|
||||
$paricdver=$dat->icdver." - ".$dat->keticdver;
|
||||
}elseif($dat->icdorder!="1" && $dat->icdver !=null && $dat->icdnon=="None"){
|
||||
$sekicdver=$dat->icdver." - ".$dat->keticdver." | ";
|
||||
}elseif($dat->icdnon!="None"){
|
||||
$nonicd=$dat->icdnon." - ".$dat->keticdnon." | ";
|
||||
}
|
||||
|
||||
}elseif($idxdaftar==$dat->idxdaftar){
|
||||
if($dat->icdorder=="1"){
|
||||
$paricdver=$dat->icdver." - ".$dat->keticdver;
|
||||
}elseif($dat->icdorder!="1" && $dat->icdver !=null && $dat->icdnon=="None"){
|
||||
$sekicdver=$sekicdver.$dat->icdver." - ".$dat->keticdver." | ";
|
||||
}elseif($dat->icdnon!="None"){
|
||||
$nonicd=$nonicd.$dat->icdnon." - ".$dat->keticdnon." | ";
|
||||
}
|
||||
|
||||
}elseif($idxdaftar!=$dat->idxdaftar ){
|
||||
echo("
|
||||
<tr>
|
||||
<td>".$no."</td>
|
||||
<td>".$nomr."</td>
|
||||
<td>".$dat->namapasien."</td>
|
||||
<td>".$dat->tglreg."</td>
|
||||
<td>".$dat->klinik."</td>
|
||||
<td>".$paricdver."</td>
|
||||
<td>".$sekicdver."</td>
|
||||
<td>".$nonicd."</td>
|
||||
</tr>
|
||||
");
|
||||
|
||||
$nomr= $dat->nomr;
|
||||
$idxdaftar= $dat->idxdaftar;
|
||||
$paricdver=""; $sekicdver=""; $nonicd="";
|
||||
|
||||
if($dat->icdorder=="1"){
|
||||
$paricdver=$dat->icdver." - ".$dat->keticdver;
|
||||
}elseif($dat->icdorder!="1" && $dat->icdver !=null && $dat->icdnon=="None"){
|
||||
$sekicdver=$dat->icdver." - ".$dat->keticdver." | ";
|
||||
}elseif($dat->icdnon!="None"){
|
||||
$nonicd=$dat->icdnon." - ".$dat->keticdnon." | ";
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user