-
Notifications
You must be signed in to change notification settings - Fork 1
/
prescriptionorderdetail.php
245 lines (235 loc) · 6.55 KB
/
prescriptionorderdetail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?php
include("header.php");
include("dbconnection.php");
if(isset($_GET['delid']))
{
$sql ="DELETE FROM prescription_records WHERE prescription_record_id='$_GET[delid]'";
$qsql=mysqli_query($con,$sql);
if(mysqli_affected_rows($con) == 1)
{
echo "<script>alert('prescription deleted successfully..');</script>";
}
}
if(isset($_POST['submit']))
{
if(isset($_GET['editid']))
{
$sql ="UPDATE prescription_records SET prescription_id='$_POST[prescriptionid]',medicine_name='$_POST[medicine]',cost='$_POST[cost]',unit='$_POST[unit]',dosage='$_POST[select2]',status=' $_POST[select]' WHERE prescription_record_id='$_GET[editid]'";
if($qsql = mysqli_query($con,$sql))
{
echo "<script>alert('prescription record updated successfully...');</script>";
}
else
{
echo mysqli_error($con);
}
}
else
{
$sql ="INSERT INTO prescription_records(prescription_id,medicine_name,cost,unit,dosage,status) values('$_POST[prescriptionid]','$_POST[medicine]','$_POST[cost]','$_POST[unit]','$_POST[select2]','$_POST[select]')";
if($qsql = mysqli_query($con,$sql))
{
$billtype = "Prescription update";
$prescriptionid= $_POST['prescriptionid'];
echo "<script>alert('prescription record inserted successfully...');</script>";
}
else
{
echo mysqli_error($con);
}
}
}
if(isset($_GET['editid']))
{
$sql="SELECT * FROM prescription_records WHERE prescription_record_id='$_GET[editid]' ";
$qsql = mysqli_query($con,$sql);
$rsedit = mysqli_fetch_array($qsql);
}
?>
<div class="wrapper col2">
<div id="breadcrumb">
<ul>
<li class="first">Add New Prescription Record</li></ul>
</div>
</div>
<div class="wrapper col4">
<div id="container">
<table width="200" border="3">
<tbody>
<tr>
<td><strong>Doctor</strong></td>
<td><strong>Patient</strong></td>
<td><strong>Prescription Date</strong></td>
<td><strong>Status</strong></td>
</tr>
<?php
$sql ="SELECT * FROM prescription WHERE prescriptionid='$_GET[prescriptionid]'";
$qsql = mysqli_query($con,$sql);
while($rs = mysqli_fetch_array($qsql))
{
$sqlpatient = "SELECT * FROM patient WHERE patientid='$rs[patientid]'";
$qsqlpatient = mysqli_query($con,$sqlpatient);
$rspatient = mysqli_fetch_array($qsqlpatient);
$sqldoctor = "SELECT * FROM doctor WHERE doctorid='$rs[doctorid]'";
$qsqldoctor = mysqli_query($con,$sqldoctor);
$rsdoctor = mysqli_fetch_array($qsqldoctor);
echo "<tr>
<td> $rsdoctor[doctorname]</td>
<td> $rspatient[patientname]</td>
<td> $rs[prescriptiondate]</td>
<td> $rs[status]</td>
</tr>";
}
?>
</tbody>
</table>
<h1>View Prescription record</h1>
<table width="200" border="3">
<tbody>
<tr>
<td><strong>Medicine</strong></td>
<td><strong>Cost</strong></td>
<td><strong>Unit</strong></td>
<td><strong>Dosage</strong></td>
<?php
if(!isset($_SESSION['patientid']))
{
?>
<td><strong>Action</strong></td>
<?php
}
?>
</tr>
<?php
$sql ="SELECT * FROM prescription_records WHERE prescription_id='$_GET[prescriptionid]'";
$qsql = mysqli_query($con,$sql);
while($rs = mysqli_fetch_array($qsql))
{
echo "<tr>
<td> $rs[medicine_name]</td>
<td> Rs. $rs[cost]</td>
<td> $rs[unit]</td>
<td> $rs[dosage]</td>";
if(!isset($_SESSION['patientid']))
{
echo " <td> <a href='prescriptionrecord.php?delid=$rs[prescription_record_id]&prescriptionid=$_GET[prescriptionid]'>Delete</a> </td>";
}
echo "</tr>";
}
?>
<tr>
<td colspan="6"><div align="center">
<input type="submit" name="print" id="print" value="Print" onclick="myFunction()"/>
</div></td>
</tr>
</tbody>
</table>
<script>
function myFunction() {
window.print();
}
</script>
<?php
if(!isset($_SESSION['patientid']))
{
?>
<form method="post" action="" name="frmpresrecord" onSubmit="return validateform()">
<input type="hidden" name="prescriptionid" value="<?php echo $_GET['prescriptionid']; ?>" />
<table width="200" border="3">
<tbody>
<tr>
<td width="34%">Medicine</td>
<td width="66%"><input type="text" name="medicine" id="medicine" value="<?php echo $rsedit['medicine_name']; ?>" /></td>
</tr>
<tr>
<td>Cost</td>
<td><input type="text" name="cost" id="cost" value="<?php echo $rsedit['cost']; ?>"/></td>
</tr>
<tr>
<td>Unit</td>
<td><input type="number" min="1" name="unit" id="unit" value="<?php echo $rsedit['unit']; ?>" /></td>
</tr>
<tr>
<td>Dosage</td>
<td><select name="select2" id="select2">
<option value="">Select</option>
<?php
$arr = array("1-0-1","1-1-1","1-1-0","0-1-1","0-1-0","0-0-1","1-0-0");
foreach($arr as $val)
{
if($val == $rsedit['dosage'])
{
echo "<option value='$val' selected>$val</option>";
}
else
{
echo "<option value='$val'>$val</option>";
}
}
?>
</select></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="submit" id="submit" value="Submit" /> </td>
</tr>
</tbody>
</table>
</form>
<?php
}
?>
<p> </p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<?php
include("footer.php");
?>
<script type="application/javascript">
function validateform()
{
if(document.frmpresrecord.prescriptionid.value == "")
{
alert("Prescription id should not be empty..");
document.frmpresrecord.prescriptionid.focus();
return false;
}
else if(document.frmpresrecord.medicine.value == "")
{
alert("Medicine field should not be empty..");
document.frmpresrecord.medicine.focus();
return false;
}
else if(document.frmpresrecord.cost.value == "")
{
alert("Cost should not be empty..");
document.frmpresrecord.cost.focus();
return false;
}
else if(document.frmpresrecord.unit.value == "")
{
alert("Unit should not be empty..");
document.frmpresrecord.unit.focus();
return false;
}
else if(document.frmpresrecord.select2.value == "")
{
alert("Dosage should not be empty..");
document.frmpresrecord.select2.focus();
return false;
}
else if(document.frmpresrecord.select.value == "" )
{
alert("Kindly select the status..");
document.frmpresrecord.select.focus();
return false;
}
else
{
return true;
}
}
</script>