-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmedicine.php
164 lines (154 loc) · 5.59 KB
/
medicine.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
<?php include 'server/server.php' ?>
<?php
$query = "SELECT * FROM tbl_medicine ORDER BY id DESC";
$result = $conn->query($query);
$medicine = array();
while($row = $result->fetch_assoc()){
$medicine[] = $row;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'templates/header.php' ?>
<title>Medicine - Masili Health Service System</title>
</head>
<body>
<div class="wrapper">
<?php include 'templates/main-header.php' ?>
<?php include 'templates/sidebar.php' ?>
<div class="main-panel">
<div class="content">
<div class="page-inner">
<div class="row mt--2">
<div class="col-md-12">
<!-- action alert -->
<?php if(isset($_SESSION['message'])): ?>
<div class="alert alert-<?= $_SESSION['success']; ?> <?= $_SESSION['success']=='danger' ? 'bg-danger text-light' : null ?>" role="alert">
<?php echo $_SESSION['message']; ?>
</div>
<?php unset($_SESSION['message']); ?>
<?php endif ?>
<!-- end of action alert -->
<?php include 'templates/loading_screen.php' ?>
<div class="card">
<div class="card-header">
<div class="card-head-row">
<div class="card-title text-primary">
<h1>MEDICINE RECORD</h1>
</div>
<?php if(isset($_SESSION['username']) && $_SESSION['role']!='resident'): ?>
<div class="card-tools">
<a href="medicine_add_form.php" class="btn btn-primary mr-1">
<i class="fa fa-plus mr-2"></i>
Medicine
</a>
<button onclick="Export()" class="btn btn-default btn-default">
<i class="fa fa-download mr-2"></i>
Export to CSV
</button>
</div>
<?php endif?>
</div>
</div>
<div class="card-body">
<!-- medicine table -->
<div class="table-responsive">
<table id="blottertable" class="display table">
<thead>
<tr class="text-primary">
<th scope="col">Generic Name</th>
<th scope="col">Description</th>
<th scope="col">Category</th>
<th scope="col">Quantity</th>
<th scope="col">Dosage</th>
<th scope="col">Unit</th>
<th scope="col">Status</th>
<?php if(isset($_SESSION['username']) && $_SESSION['role']!='resident'): ?>
<th scope="col">Action</th>
<?php endif ?>
</tr>
</thead>
<tbody>
<?php foreach($medicine as $row): ?>
<tr>
<td><?= ucwords($row['generic_name']) ?></td>
<td><?= ucwords($row['description']) ?></td>
<td><?= ucwords($row['category']) ?></td>
<td><?= ucwords($row['quantity']) ?></td>
<td><?= ucwords($row['dosage']) ?></td>
<td><?= ucwords($row['unit']) ?></td>
<td class="text-center">
<span style="width:90px;" class="badge rounded-pill <?= $row['quantity']>0?'bg-success':'bg-danger' ?> text-white"><?= ucwords($row['quantity']>0?"Available":"Out of Stock") ?></span></td>
</td>
<?php if(isset($_SESSION['username']) && $_SESSION['role']!='resident'): ?>
<td>
<a href="medicine_update_form.php?id=<?= $row['id'] ?>" class="btn btn-link" data-toggle="tooltip" data-placement="top" title="Update">
<i class="fa fa-edit mr-2"></i>
</a>
<a href="remove_item.php?id=<?= $row['id'] ?>&tbl=tbl_medicine&page=medicine" class="btn btn-link btn-danger" onclick="return confirm('Are you sure you want to delete this item?');" data-toggle="tooltip" data-placement="top" title="Remove">
<i class="fa fa-trash"></i>
</a>
</td>
<?php endif ?>
</tr>
<?php endforeach ?>
</tbody>
</table>
</div>
</div>
<!-- end of medicine table -->
</div>
</div>
</div>
</div>
</div>
<!-- Main Footer -->
<?php include 'templates/main-footer.php' ?>
<!-- End Main Footer -->
</div>
</div>
<?php include 'templates/footer.php' ?>
<script src="assets/js/plugin/datatables/datatables.min.js"></script>
<script>
$(document).ready(function() {
var oTable = $('#blottertable').DataTable({
"order": [[ 4, "asc" ]]
});
$("#activeCase").click(function(){
var textSelected = 'Active';
oTable.columns(4).search(textSelected).draw();
});
$("#settledCase").click(function(){
var textSelected = 'Settled';
oTable.columns(4).search(textSelected).draw();
});
$("#scheduledCase").click(function(){
var textSelected = 'Scheduled';
oTable.columns(4).search(textSelected).draw();
});
});
function Export(){
var conf = confirm("Export medicine to CSV?");
var stmt = "SELECT *, IF(quantity > 0,'available', 'out of stock') AS STATUS FROM tbl_medicine";
var tblHeader = 'No,Generic Name,Description,Category,Quantity,Dosage, Unit, Status';
var fileName = "medicine";
if(conf){
window.open(`export.php?query=${stmt}&tblHeader=${tblHeader}&fileName=${fileName}`, '_blank');
}
}
</script>
<style>
.text-primary, .text-primary a{
color: #1c9790 !important;
}
.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:disabled{
background: #1c9790 !important;
border-color: #1c9790 !important;
}
.text-primary:hover, .text-primary a:hover{
color: #1c9790 !important;
}
</style>
</body>
</html>