ESH/bio_medical_waste.php
2024-10-23 18:28:06 +05:30

192 lines
5.2 KiB
PHP

<?php
include('includes/config/config.php');
error_reporting(E_ERROR | E_PARSE);
$business_unit = $_REQUEST['business_unit'];
$sub_business_unit = $_REQUEST['sub_business_unit'];
$section_name = $_REQUEST['section_name'];
$sub_section_name = $_REQUEST['sub_section_name'];
$start_date = $_REQUEST['startDate'];
$end_date= $_REQUEST['endDate'];
$qry_bu ="";
$qry_date="";
/*if(isset($business_unit) && $business_unit!=''){
$qry_bu.=" and bu_id ='".$business_unit."' ";
}
if(isset($sub_business_unit) && $sub_business_unit!=''){
$qry_bu.=" and sbu_id ='".$sub_business_unit."' ";
}
if(isset($section_name) && $section_name!=''){
$qry_bu.=" and section_id ='".$section_name."' ";
}
if(isset($sub_section_name) && $sub_section_name!=''){
$qry_bu.=" and sub_section_id ='".$sub_section_name."' ";
}
if(isset($emplyee_category) && $emplyee_category!=''){
$qry_bu.=" and emp_cat_id ='".$emplyee_category."' ";
}
if(isset($emp_designation) && $emp_designation!=''){
if(count($emp_designation)==1)
$qry_bu.=" and designation_id in ('".$emp_designation[0]."') ";
else{
$qry_bu.=" and designation_id in (".implode(',', $emp_designation).")";
}
//echo $qry_bu;
}
if(isset($gender) && $gender!=''){
$qry_bu.=" and gender ='".$gender."' ";
}
if(isset($start_date) && $start_date!=''){
//$qry_date.=" and checkup_date >='".$start_date."' ";
$qry_date.=" and checkup_date >=str_to_date('".$start_date."','%d-%m-%Y') ";
}
if(isset($end_date) && $end_date!=''){
//$qry_date.=" and checkup_date <='".$end_date."' ";
$qry_date.=" and checkup_date <=str_to_date('".$end_date."','%d-%m-%Y') ";
}*/
$i=0;
$record =array();
$query="select count(id) as total FROM patient_master where YEAR(CURDATE())-year(doj)>=0 and YEAR(CURDATE())-year(doj)<2 $qry_bu $qry_date";
// echo $query.$qry_bu;
if (!$result = @mysqli_query($conn,$query)) {
exit(mysqli_error($conn));
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$record[$i]['key'] ='0-2';
$record[$i]['total'] =$row['total'];
$i++;
}
}
$query="select count(id) as total from patient_master where YEAR(CURDATE())-year(doj)>=2 and YEAR(CURDATE())-year(doj)<5 $qry_bu $qry_date";
if (!$result = @mysqli_query($conn,$query)) {
exit(mysqli_error($conn));
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$record[$i]['key'] ='2-5';
$record[$i]['total'] =$row['total'];
$i++;
}
}
$query="select count(id) as total FROM patient_master where YEAR(CURDATE())-year(doj)>5 and YEAR(CURDATE())-year(doj)<=10 $qry_bu $qry_date";
if (!$result = @mysqli_query($conn,$query)) {
exit(mysqli_error($conn));
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$record[$i]['key'] ='5-10';
$record[$i]['total'] =$row['total'];
$i++;
}
}
$query="select count(id) as total FROM patient_master where YEAR(CURDATE())-year(doj)>10 and YEAR(CURDATE())-year(doj)<=15 $qry_bu $qry_date";
if (!$result = @mysqli_query($conn,$query)) {
exit(mysqli_error($conn));
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$record[$i]['key'] ='10-15';
$record[$i]['total'] =$row['total'];
$i++;
}
}
$query="select count(id) as total FROM patient_master where YEAR(CURDATE())-year(doj)>15 and YEAR(CURDATE())-year(doj)<=20 $qry_bu
$qry_date";
if (!$result = @mysqli_query($conn,$query)) {
exit(mysqli_error($conn));
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$record[$i]['key'] ='15-20';
$record[$i]['total'] =$row['total'];
$i++;
}
}
$query="select count(id) as total FROM patient_master where YEAR(CURDATE())-year(doj)>20 and YEAR(CURDATE())-year(doj)<=25 $qry_bu $qry_date";
if (!$result = @mysqli_query($conn,$query)) {
exit(mysqli_error($conn));
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$record[$i]['key'] ='20-25';
$record[$i]['total'] =$row['total'];
$i++;
}
}
$query="select count(id) as total FROM patient_master where YEAR(CURDATE())-year(doj)>25 $qry_bu $qry_date";
if (!$result = @mysqli_query($conn,$query)) {
exit(mysqli_error($conn));
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$record[$i]['key'] ='>25';
$record[$i]['total'] =$row['total'];
$i++;
}
}
$qry_bu=preg_replace('/and/', 'where', $qry_bu, 1);
$query="select count(id) as total FROM patient_master $qry_bu $qry_date";
//echo $query.$qry_bu;
if (!$result = @mysqli_query($conn,$query)) {
}
if(mysqli_num_rows($result) > 0) {
if ($row = mysqli_fetch_assoc($result)) {
$data['total_count'] = $row['total'];
}
}
$data1=array('total_count'=>$data['total_count'],'data'=>$record);
echo json_encode($data1);
?>