%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 id="content-wrapper"> <div class="container-fluid"> <!-- Breadcrumbs--> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="<?php echo site_url('admin/dashboard'); ?>"><i class="fas fa-fw fa-tachometer-alt"></i> Dashboard</a> </li> <li class="breadcrumb-item active"> OP Detail</li> </ol> <!-- DataTables Example --> <div class="card mb-3 fomr-news"> <div class="card-header card-header-new"><h3> <i class="fa fa-bars"></i> OP Detail </h3><a href="<?=base_url('admin/manageop/sendSMS')?>"> <input type="button" name="button" id="button" value="SEND SMS"></a> <a style="margin-right:15px;" href="<?=base_url('admin/manageop?export=1')?>"> <input type="button" name="button" id="button" value="Export OP Report"></a></div> </div> <div class="card-body"> <div class="table-responsive"> <!---- Success Message ----> <?php if ($this->session->flashdata('success')) { ?> <p class="alert alert-success"><?php echo $this->session->flashdata('success'); ?></p> <!-- </div> --> <?php } ?> <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <tr> <th>SR No.</th> <th>Slag Id</th> <th>Bill Number</th> <th>Patient Name</th> <th>Department</th> <th>Billed Date</th> <th>Doctor Name</th> <th>UHID</th> <th>Contact Number</th> <th>Pat Type</th> <th>Date</th> <th>Status</th> </tr> </thead> <tbody> <?php if(count($recordsArray)) : $cnt=1; foreach ($recordsArray as $row) : ?> <tr> <td><?php echo htmlentities($cnt);?></td> <td><a href="<?php echo base_url('feedback/'.base64_encode($row['slag_id']))?>" target="_blank"><?php echo htmlentities($row['slag_id'])?></a></td> <td><?php echo $row['bill_number']; ?></td> <td><?php echo $row['patient_name']; ?></td> <td><?php echo $row['department']; ?></td> <td><?php echo $row['billed_date']; ?></td> <td><?php echo $row['doctor_name']; ?></td> <td><?php echo $row['UHID']; ?></td> <td><?php echo $row['contact_number']; ?></td> <td><?php echo $row['pat_type']; ?></td> <td><?php echo $row['modifiedon']!='' ? $row['modifiedon'] : htmlentities($row['createdon']); ?></td> <td><?php echo $row['status']=='1' ? 'Pending' : ($row['status']=='2' ? '<span style="color:green;">Submitted</span>' : 'Pending '); ?> <?php if(in_array($this->session->userdata('adid')->role_id, array('1'))) { ?> <a href="<?=base_url('admin/manageop/deleterecord/'.$row['id'])?>" onclick="return confirm('Are you sure you want to delete this record?');" class="fa fa-trash confirm-delete"> </a> <?php } ?> </td> </tr> <?php $cnt++; endforeach; else : ?> <tr> <td>No data available in table</td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> <div class="card-body"> <div class="main-chart"> <div class="wrapper"> <h4>Bulk Upload </h4> <form class="form1" method="POST" enctype="multipart/form-data" action="<?=base_url('admin/manageop/bulkupload')?>"> <div class="row"> <div class="col-md-6"> <div class="coarform"> <input type="file" name="program_file" id="program_file" class="form-control" required /> <small>Only .csv file allowed</small> <p><a href="<?=base_url('attachments/sample/op-items-sample-sheet.csv')?>" target="_blank">Click here</a> to download sample sheet.</p> </div> </div> <div class="col-md-2"> <div class="coarform"> <input type="submit" class="button2" name="submit" id="submit" value="Upload" /> </div> </div> </div> </form> </div> </div> </div> <!-- /.container-fluid --> <!-- Sticky Footer -->