<?php include('includes/config/config.php'); include('includes/auth/auth.php'); include('includes/functions.php');include('access.php'); include('log_entry.php'); //error_reporting(E_ERROR | E_PARSE); ?> <?php $emp_id = $_REQUEST['emp_id']; //echo $emp_id; // Connect to mysqli database $page = 1; // The current page $sortname = 'appointment_date'; // Sort column $sortorder = 'desc'; // Sort order $qtype = ''; // Search column $query = ''; // Search string // Get posted data if (isset($_POST['page'])) { $page = mysqli_real_escape_string($conn,$_POST['page']); } if (isset($_POST['sortname'])) { $sortname = mysqli_real_escape_string($conn,$_POST['sortname']); } if (isset($_POST['sortorder'])) { $sortorder = mysqli_real_escape_string($conn,$_POST['sortorder']); } if (isset($_POST['qtype'])) { $qtype = mysqli_real_escape_string($conn,$_POST['qtype']); } if (isset($_POST['query'])) { $query = mysqli_real_escape_string($conn,$_POST['query']); } if (isset($_POST['rp'])) { $rp = mysqli_real_escape_string($conn,$_POST['rp']); } // Setup sort and search SQL using posted data $sortSql = "order by $sortname $sortorder"; $searchSql = ($qtype != '' && $query != '') ? " and upper($qtype) like upper('%$query%')" : ''; if ($searchSql != '') { if ($qtype == 'appointment_date') { $searchSql = " and date_format(date(appointment_date),'%Y-%m-%d')=str_to_date('$query','%d/%m/%Y') "; } } // Get total count of records //echo 'shu'.$p; $sql = "select count(*)from visitors_employee_appointment ep inner join visitor_patient_master e on e.id=ep.emp_id where ((doctor_attended_flag='N' and attended_status='DRP') or (doctor_attended_flag='Y' and attended_status='MDP')) and ep.ohc_type_id='".$_SESSION['current_ohcttype']."' $searchSql"; //echo $sql; //error_log($sql); error_log("query 101: ".$sql); $result = mysqli_query($conn,$sql); $row = mysqli_fetch_array($result); $total = $row[0]; // Setup paging if(!isSet($rp)){ $rp=10; } $pageStart = ($page-1)*$rp; $limitSql = "limit $pageStart, $rp"; // Return JSON data $data = array(); $data['page'] = $page; $data['total'] = $total; $data['rows'] = array(); $sql_employee_appointment = "select patient_name,emp_code ,e.id,appointment_id,ticket_no,token_no, appointment_date,bp_sbp,bp_dbp,blood_sugar_fbs,blood_sugar_rbs,blood_sugar_ppbs,temperature,spo2_percent,remarks_rece ,complaints,examination_remarks,ailment_ids,hospital_treatment, referral,followup,remarks,IsEmergency ,appointment_type,injury_types from visitors_employee_appointment ep inner join visitor_patient_master e on e.id=ep.emp_id where ((doctor_attended_flag='N' and attended_status='DRP') or (doctor_attended_flag='Y' and attended_status='MDP')) and ep.ohc_type_id='".$_SESSION['current_ohcttype']."' "; // echo $sql_employee_appointment; $sql_export = $sql_employee_appointment; $sql_employee_appointment.=" $searchSql $sortSql $limitSql "; $sql_export.=" $searchSql $sortSql "; $results_employee_appointment = mysqli_query($conn,$sql_employee_appointment); //echo $sql_employee_appointment; $count=($page-1)*$rp+1; //echo $sql_ailment; //echo $access_level; while ($row_employee_appointment = mysqli_fetch_assoc($results_employee_appointment)) { extract($row_employee_appointment); $diagnosis =$row_employee_appointment['appointment_type']; $appointment_type =$row_employee_appointment['appointment_type']; $employee_appointment=$row_employee_appointment['appointment_id']; $emp_id=$row_employee_appointment['id']; //echo $ailment_id; $view_link=""; $edit_link=""; $links=""; //$delete_link="<a href=\"#\" class=\"blue\" onclick=\"delete_employee_appointment_history('".$appointment_id."');\"><i class=\"ace-icon fa fa-trash-o bigger-130\"></i></a>"; $space=" "; $isEmergency =""; $isInjury=""; if ($appointment_type == 'VO') { $isInjury = "<span class='red'>Yes</i></span>"; $edit_link="<a href=\"visitor_edit_opd.php?appointmentId=".$appointment_id."&flex_opd_id=".$emp_id."&returnPage=pending_patient_list.php?view=edit\" class=\"blue\" ><i class=\"menu-icon fa fa-pencil-square-o\"></i></a>"; $view_link="<a href=\"view_visitor_opd.php?appointmentId=".$appointment_id."&flex_opd_id=".$emp_id."&returnPage=pending_patient_list.php?view=view\" class=\"green\" ><i class=\"ace-icon fa fa-search-plus bigger-130\"></i></a>"; }else{ $isInjury = "<span class='green'>No</i></span>"; $edit_link="<a href=\"visitor_edit_opd.php?appointmentId=".$appointment_id."&flex_opd_id=".$emp_id."&returnPage=pending_patient_list.php?view=edit\" class=\"blue\" ><i class=\"menu-icon fa fa-pencil-square-o\"></i></a>"; $view_link="<a href=\"view_opd.php?appointmentId=".$appointment_id."&flex_opd_id=".$emp_id."&returnPage=pending_patient_list.php?view=view\" class=\"green\" ><i class=\"ace-icon fa fa-search-plus bigger-130\"></i></a>"; } if ($row_employee_appointment['IsEmergency'] == 1) { $isEmergency = "<span class=' lighter red'>Yes</i></span>"; }else{ $isEmergency = "<span class='green'>No</i></span>"; } if(!isAccessible($_SESSION['RoleId'],$menu_key,'R')){ $view_link=""; } if(!isAccessible($_SESSION['RoleId'],$menu_key,'W')){ $edit_link=""; } $check_results = "SBP:".$row_employee_appointment['bp_sbp'].", DBP:".$row_employee_appointment['bp_dbp'].", FBS:".$row_employee_appointment['blood_sugar_fbs'].", RBS:".$row_employee_appointment['blood_sugar_rbs'].", PPBS:".$row_employee_appointment['blood_sugar_ppbs'].", TEMP:".$row_employee_appointment['temperature'].", SpO2:".$row_employee_appointment['spo2_percent']; $links = $view_link.$space.$edit_link; //echo $row_employee_appointment['bp_sbp']; $data['rows'][] = array( 'id' => $row_employee_appointment['appointment_id'], 'cell' => array($count++,$links, date_format(date_create($row_employee_appointment['appointment_date']),"d-M-Y H:i A"), $row_employee_appointment['ticket_no'],$row_employee_appointment['token_no'], $row_employee_appointment['emp_code'],$row_employee_appointment['patient_name'], $row_employee_appointment['complaints'],$isEmergency, $isInjury,$check_results, $row_employee_appointment['remarks_rece']) ); } $data['rows'][] = array( 'id' => $row['filterkey'], 'cell' => array('', "<input type=hidden name='filterkey' id='filterkey' value=\"".base64_encode($sql_export)."\">", "<input type=hidden name=paramlist id=paramlist value=\"".base64_encode($paramlist)."\">", '', '','', '', '', '', '', '', '', '','', '', '','', '', '','') ); echo json_encode($data); ?>