ohctech_p8/pending_chronic_medication_medicine_report_pdf.php
Dushant Mali f1e0459afa Dushant
2024-11-19 09:59:09 +05:30

226 lines
11 KiB
PHP

<?php //include('pdf_header_reverse.php');
include('includes/config/config.php');
include('includes/functions.php');
//include('pop_up_top.php');
$detention_cat = $_REQUEST['detention_cat'];
$detention_sub_cat = $_REQUEST['detention_sub_cat'];
$only_referral = $_REQUEST['only_referral'];
$chronic_illness_id = $_REQUEST['chronic_illness_pending'];
if (count($chronic_illness_id) != 1) {
foreach (array_keys($chronic_illness_id, 'ALL') as $key) {
unset($chronic_illness_id[$key]);
}
}
if (count($chronic_illness_id) == 1 && $chronic_illness_id[0] == 'ALL') {
$chronic_illness_str = "";
} else {
$chronic_illness_str = 'and diseases in (';
foreach ($chronic_illness_id as $key => $chronic) {
if ($chronic != 'ALL') {
$chronic_illness_str .= $chronic . ",";
}
}
$chronic_illness_str .= "0)";
}
error_log("chronics " . $chronic_illness_str);
$start = date('d-m-Y', strtotime($_POST['opdDate1']));
$end = date('d-m-Y', strtotime($_POST['opdDate2']));
$from_date1 = date('Y-m-d', strtotime($_POST['opdDate1']));
$from_date = date('d-m-Y', strtotime($from_date1));
$from_date2 = date('Y-m-d', strtotime($_POST['opdDate2']));
$to_date = date('d-m-Y', strtotime($from_date2));
?>
<link href="includes/css-js/admin.css" rel="stylesheet" type="text/css" />
<style>
@page {
margin: 15px;
}
table,
tr,
td {
font-size: 12px;
}
.btn {
background-color: #4CAF50;
border-radius: 5%;
/* Green */
border: none;
color: white;
padding: 5px 8px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
margin: 4px 2px;
cursor: pointer;
}
@media print {
#printPageButton {
display: none;
}
}
</style>
<body>
<?php include('pdf_ohc_header.php'); ?>
<table width="100%">
<tr>
<td style="font-size: 15px;"><strong style="margin-left: 400px">Pending Chronic Medication Medicine Report
</strong></td>
</tr>
<tr>
<td align="left" style="font-size: 12px"><strong>From Date:
<?php echo date("d-M-Y", strtotime($from_date)); ?>&nbsp;&nbsp;&nbsp;To Date:
<?php echo date("d-M-Y", strtotime($to_date)); ?>
</strong></td>
<td align="right" style="font-size: 15px"><button align="center" id="printPageButton" class="btn btn-success" onClick="window.print();">Print</button></td>
</tr>
</table>
<br>
<table border="1" width="100%" cellspacing="0">
<strong>
<tr bgcolor="#eeeeee">
<td align="left" width="2%">Sr.</td>
<td align="left" width="3%">Chronic Illness</td>
<td align="left" width="2%">Patient Name</td>
<td valign="top" align="left" width="3%">Emp. No.</td>
<td valign="top" align="left" width="8%">Diagnosis Date</td>
<td valign="top" align="left" width="2%">Age</td>
<td valign="top" align="left" width="2%">Sex</td>
<td valign="top" align="left" width="5%">Mobile No.</td>
<td valign="top" align="left" width="5%">Plant</td>
<td valign="top" align="left" width="3%">Employer</td>
<td valign="top" align="left" width="5%">Designation</td>
<td valign="top" align="left" width="3%">Division</td>
<td valign="top" align="left" width="3%">Department</td>
<td valign="top" align="left" width="3%">Section</td>
<td valign="top" align="left" width="3%">Medicine</td>
<td valign="top" align="left" width="3%">Frequency</td>
<td valign="top" align="left" width="3%">Timing</td>
<td valign="top" align="left" width="5%">Admin.Route</td>
<td valign="top" align="left" width="3%">Duration</td>
</tr>
<?php
$app_ids = array();
$count = 1;
$chronic_patient_arr = array();
$prescription_id = array();
foreach ($chronic_illness_id as $key => $chronic_illness) {
if ($chronic_illness == 'ALL') {
$query = "SELECT distinct(p.emp_id) as emp FROM `prescription_master` p left join view_patient_master v on p.emp_id=v.id where v.status='Active' and p.remission_date is null and p.medicine_name is not null and p.medicine_name!='' and p.ohc_type_id='" . $_SESSION['current_ohcttype'] . "' ";
} else {
$query = "SELECT distinct(p.emp_id) as emp FROM `prescription_master` p left join view_patient_master v on p.emp_id=v.id where v.status='Active' and p.diseases = '" . $chronic_illness . "' and p.remission_date is null and p.medicine_name is not null and p.medicine_name!='' and p.ohc_type_id='" . $_SESSION['current_ohcttype'] . "' ";
}
// echo $query;
$result_query = mysqli_query($conn, $query);
while ($row_query = mysqli_fetch_assoc($result_query)) {
if (!in_array($row_query["emp"], $chronic_patient_arr)) {
array_push($chronic_patient_arr, $row_query["emp"]);
$sql = "SELECT count(*) as apps FROM employee_appointment a JOIN patient_master b on a.emp_id=b.id WHERE a.ohc_type_id='" . $_SESSION['current_ohcttype'] . "' and a.appointment_date BETWEEN STR_TO_DATE('$from_date1','%Y-%m-%d') and STR_TO_DATE('$from_date2','%Y-%m-%d') and emp_id='" . $row_query["emp"] . "' and chronic_day >0 order by a.appointment_date ASC";
// echo($sql);
$result = mysqli_query($conn, $sql);
while ($row_app = mysqli_fetch_assoc($result)) {
if ($row_app["apps"] == 0) {
$q_pres = "SELECT * FROM `prescription_master` a left join patient_master b on a.emp_id=b.id where remission_date is null and emp_id='" . $row_query["emp"] . "' and `medicine_name` is not null and `medicine_name`!='' and a.ohc_type_id='" . $_SESSION['current_ohcttype'] . "' " . $chronic_illness_str;
// echo ($q_pres);
$result_pres = mysqli_query($conn, $q_pres);
while ($prescription = mysqli_fetch_assoc($result_pres)) {
if (!in_array($prescription["prescription_id"], $prescription_id)) {
array_push($prescription_id, $prescription["prescription_id"]);
// echo $prescription["emp_id"];
if ($prescription['diagnosis_date'] != null && $prescription['diagnosis_date'] != '' && $prescription['diagnosis_date'] != '1970-01-01' && $prescription['diagnosis_date'] != '0000-00-00') {
$date = DateTime::createFromFormat('Y-m-d', $prescription['diagnosis_date']);
// Format the date in "d/m/Y" format
$newDateFormat = $date->format('d/m/Y');
$diagnosis_date = $newDateFormat;
} else {
$diagnosis_date = "Not Present";
}
?>
<tr>
<td><?php echo $count; ?></td>
<td><?php echo getTableFieldValue('abnormality', 'abnormality_name', 'abnormality_id', $prescription['diseases']); ?></td>
<td><?php echo $prescription['patient_name']; ?></td>
<td><?php echo $prescription['emp_code']; ?></td>
<td><?php echo $diagnosis_date; ?></td>
<td><?php $from = new DateTime($prescription['dob']);
$to = new DateTime('today');
echo $from->diff($to)->y;
?></td>
<td><?php if ($prescription['gender'] == 'M') {
echo 'Male';
} else {
echo 'Female';
} ?></td>
<td><?php echo $prescription['primary_phone'] ?></td>
<td><?php echo getTableFieldValue('plant_master', 'plant_name', 'plant_id', $prescription['plant_id']) ?></td>
<td><?php echo getFieldFromTable('employer_contractor_name', 'employer_contractor', 'id', $prescription['employer_contractor_id']) ?>
</td>
<td><?php echo getTableFieldValue('designation', 'designation_name', $prescription['designation_id'], 'designation_id',) ?>
</td>
<td><?php echo getTableFieldValue('bussiness_unit', 'bu_name', $prescription['bu_id'], 'bu_id') ?></td>
<td><?php echo getTableFieldValue('department', 'dept_name', $prescription['dept_id'], 'dept_id') ?></td>
<td><?php echo getTableFieldValue('section', 'section_name', $prescription['section_id'], 'section_id') ?>
</td>
<td><?= getTableFieldValue('tbl_items', 'item_name', 'item_id', $prescription['medicine_name']) ?></td>
<td><?= getTableFieldValue('medicine_frequency', 'medicine_frequency', 'frequency_id', $prescription['medicine_frequency']); ?></td>
<td><?= getTableFieldValue('medicine_timings', 'medicine_timing', 'timing_id', $prescription['medicine_timing']) ?></td>
<td><?= getTableFieldValue('dosage_category', 'dosage_category', 'dosage_category_id', $prescription['admin_route']) ?></td>
<td><?= $prescription['duration'] ?></td>
</tr>
<?php
$count++;
}
}
}
}
}
}
}
?>
</table>
</body>
<script>
// $(document).ready(function() {
// window.print();
// });
</script>