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

127 lines
2.8 KiB
PHP

<?php //include('pdf_header.php');
include('includes/config/config.php');
include('includes/functions.php');
//include('pop_up_top.php');
header('Content-Type: application/force-download');
header('Content-disposition: attachment; filename=vaccination_temp.xls');
$emp_id = $_POST['empName'];
$pro_schedule_id = $_POST['pro_id'];
error_log("emp id " . $emp_id . " program schedule id " . $pro_schedule_id);
?>
<html>
<head>
<style>
* {
font-weight: lighter;
}
</style>
</head>
<body>
<table border="1">
<tr>
<th>Sr No.</th>
<th>Date</th>
<th>Patient Name</th>
<th>
ECODE
</th>
<th>
Aadhar No.
</th>
<th>
Vaccine Name
</th>
<th>
Dose
</th>
<th>
Vaccine Center
</th>
<th>
Remarks
</th>
</tr>
<tr>
<th>1</th>
<th>22-07-2022</th>
<th>Naaz Baktyar SAYYED</th>
<th>25735</th>
<th></th>
<th>COVISHEILD</th>
<th>2</th>
<th>Central dispensary</th>
<th>save with only ECODE</th>
</tr>
<tr>
<th>2</th>
<th>14-07-2023</th>
<th>ROHIT CHAUDHARI</th>
<th></th>
<th>878787878787</th>
<th>TETANUS TOXOID</th>
<th>3</th>
<th></th>
<th>save with only Aadhar no</th>
</tr>
<tr>
<th>3</th>
<th>14-09-2022 </th>
<th>RAM PANCHAL</th>
<th>761931</th>
<th>999999999999</th>
<th>TETANUS TOXOID</th>
<th>2</th>
<th>Outer dispensary</th>
<th>save with ECODE and Aadhar</th>
</tr>
<tr>
<th>4</th>
<th>20-04-2000</th>
<th>RAM PANCHAL</th>
<th>1111111</th>
<th></th>
<th>COVISHEILD</th>
<th>1</th>
<th>Govr. Hospital</th>
<th>if wrong Aadhar / ECODE THEN NOT save data</th>
</tr>
<tr>
<th>5</th>
<th>10-05-2022</th>
<th>Priti Antaram Mankar</th>
<th></th>
<th></th>
<th>COVISHEILD</th>
<th>3</th>
<th>Central dispensary</th>
<th>if both Aadhar and ECODE not enter THEN NOT save data</th>
</tr>
<tr>
<th>6</th>
<th>10-05-2022</th>
<th>Priti Antaram Mankar</th>
<th>24809</th>
<th></th>
<th></th>
<th>2</th>
<th></th>
<th>new save</th>
</tr>
</table>
</body>
</html>