%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<div class="header"> <a class="hedaer-logo" href="<?=base_url('dashboard')?>"> <img src="<?=base_url('assests/imgs')?>/logo_new.png"> </a> <div class="header-in" id="sidebarCollapse"> <a class="clogout" href="<?=base_url('dashboard/logout')?>"><i class="fa fa-power-off" aria-hidden="true"></i> Logout</a> </div> </div> <div class="home-main-div" > <!---- Success Message ----> <?php if ($this->session->flashdata('success')) { ?> <p style="color:green; font-size:18px;"><?php echo $this->session->flashdata('success'); ?></p> <?php } ?> <?php if ($this->session->flashdata('error')) { ?> <p style="color:red; font-size:18px;"><?php echo $this->session->flashdata('error'); ?></p> <?php } ?> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="login-rectangle"> <form action="" method="GET" enctype="multipart/form-data"> <div class="login-sec"> <h2>Search Your Patient</h2> <p>Please provide the patient details here.</p> <div class="row"> <div class="col-lg-3"> <span id="corporate_name"> <select name="ward_filter" id="ward_filter"> <option value="" >All Ward</option> <?php foreach($wardArray as $row) { ?> <option value="<?=$row['title']?>" <?php if($_GET['ward_filter'] ==$row['title']){ echo 'selected'; }?>><?=$row['title']?></option> <?php } ?> </select> </span> </div> <!--<div class="col-lg-2"> <select name="station_filter" id="station_filter"> <option value="" >Select Station</option> <?php foreach($idproofArray as $row) { ?> <option value="<?=$row['title']?>" <?php if($_GET['station_filter'] ==$row['title']){ echo 'selected'; }?>><?=$row['title']?></option> <?php } ?> </select> </div> --> <div class="col-lg-2"> <input type="text" name="ipno_filter" value="<?php echo $_GET['ipno_filter']?>" id="ipno_filter" autocomplete=OFF maxlength=120 placeholder="Patient IP Number"> </div> <div class="col-lg-2"> <input type="text" name="uhid_filter" value="<?php echo $_GET['uhid_filter']?>" id="uhid_filter" autocomplete=OFF maxlength=120 placeholder="Patient UHID"> </div> <div class="col-lg-3"> <input type="text" name="patient_name" id="patient_name" value="<?php echo $_GET['patient_name']?>" maxlength=245 placeholder="Patient Name" /> </div> <div class="col-lg-2"> <input type="submit" class="btn btn-primary login-btn" value="Get Details" /> </div> </div> </div> </form> <div class="login-pin"></div> </div> <div class="login-rectangle" style="overflow: hidden;"> <h4><i class="fa fa-list-alt" aria-hidden="true"></i> IP Details</h4> <div class="table-detail-in " style="overflow-x: scroll;"> <table class="overflow:scroll;"> <tr> <th>#</th> <th>Action</th> <th>IP Number</th> <th>Patient Details</th> <th>UHID</th> <th>Bill Date</th> <th>Doctor Name</th> <th>Ward Detail</th> <th>NOF</th> </tr> <?php if(count($recordsArray)>0) { ?> <?php $k=1; foreach($recordsArray as $row) { ?> <tr> <td><?=$k?></td> <td> <a href="<?=base_url('ipfeedback/'.base64_encode($row['slag_id']))?>" title="View Details" target="_blank"> <i class="fa fa-eye" aria-hidden="true"></i>Submit Feedback</a> </td> <td><?=$row['ip_number']?></td> <td><?=$row['patient_name']?></td> <td><a href="<?=base_url('ipfeedback/'.base64_encode($row['slag_id']))?>" title="View Details" target="_blank"><?=$row['UHID']?></a></td> <td><?php if(strtotime($row['billed_date'])>0) { echo $row['billed_date']; } ?></td> <td><?=$row['doctor_name']?>[<?=$row['department']?>]</td> <td><?=$row['ward_detail']?><br/>Bed No:<?=$row['bed_number']?><br/>S:<?=$row['station']?></td> <td><?=$row['feedback_count']?></td> </tr> <?php $k++; } } else { ?> <tr> <td colspan="7"> No record found</td> </tr> <?php } ?> </table> </div> </div> </div> </div> </div> </div>