-
Notifications
You must be signed in to change notification settings - Fork 0
/
Report_borrowed.php
376 lines (339 loc) · 17.4 KB
/
Report_borrowed.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<?php
session_start(); // Make sure to start the session
include('DBconnect.php');
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$librarianID = $_SESSION['user_id'];
$row = mysqli_fetch_assoc(mysqli_query($connect, "Select * from librarians where librarian_id = '$librarianID'"));
?>
<!DOCTYPE html>
<html>
<head>
<title>Report Borrowers</title>
<link rel="stylesheet" href="BOOTSTRAP/css/bootstrap.min.css">
<link rel="stylesheet" href="Font/css/all.css">
<link href='boxicons/css/boxicons.min.css' rel='stylesheet'>
<script src="js/bootstrap.min.js"></script>
<script src="JS/popper.min.js"></script>
<link rel="stylesheet" href="Design/datatables.css">
<script src="DataTables/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="DataTables/dataTables.bootrap5.min.css">
<!-- Add the DataTables plugin script and its dependencies -->
<script defer src="DataTables/jquery.dataTables.min.js"></script>
<script defer src="DataTables/dataTables.bootstrap5.min.js"></script>
<link rel="stylesheet" href="Design/datatables.css">
<link rel="stylesheet" href="Design/side.css">
<!-- Include the DataTables CSS file -->
</head>
<body>
<?php include "sidebar.php" ?>
<section class="home-section">
<div class="home-content header">
<i class='bx bx-menu'></i>
<span class="text text-white m-0">LIBRARY MANAGEMENT SYSTEM</span>
</div>
<hr class=" text-white">
<div class="col-md-9 col-lg-11 bg-light mt-3 rounded-start-4 bg-transparent" class="container-fuid px-4" role="main" id="main-content" style=" margin:auto; overflow:auto;">
<main>
<div class="card border-0 bg-transparent text-white rounded-1 mt-lg-5 rounded-4 p-4">
<div class="card-header bg-transparent py-4">
<h2 class="mb-5 pb-2 d-grid row card-title px-4">Report Borrows</h2>
<div id="message" class="mt-2"></div>
<div class="filter-container justify-content-between gap-3 w-100 d-flex my-3">
<div class="justify-content-between gap-3 w-25 d-flex">
<div class="d-flex w-auto gap-2">
<label for="month" class="py-1">Month:</label>
<select id="month" name="month" class="filter-select py-1 filter-input rounded-3 px-2">
<option value="1">January</option>
<option value="2">February</option>
<option value="3">March</option>
<option value="4">April</option>
<option value="5">May</option>
<option value="6">June</option>
<option value="7">July</option>
<option value="8">August</option>
<option value="9">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</div>
<div class="d-flex w-auto gap-2">
<label for="year" class="py-1">Year:</label>
<input type="number" id="year" name="year" min="1900" max="2099" step="1" class="filter-input py-1 rounded-3 px-2">
</div>
<div class="d-flex w-auto gap-2">
<label for="category" class="py-1">Category:</label>
<select id="category" name="category" class="filter-select py-1 filter-input rounded-3 px-2">
<option value="0">Select Category</option>
<?php
include 'DBconnect.php';
$result = mysqli_query($connect, "SELECT * FROM category");
while ($row = mysqli_fetch_array($result)) {
?>
<option value="<?php echo $row['category_id'] ?>"><?php echo $row['category_name'] ?></option>
<?php
}
?>
</select>
</div>
<div class="d-flex w-auto gap-2">
<label for="author" class="py-1">Author:</label>
<select id="author" name="author" class="filter-select py-1 filter-input rounded-3 px-2">
<option value="0">Select Author</option>
<?php
include 'DBconnect.php';
$result = mysqli_query($connect, "SELECT * FROM author");
while ($row = mysqli_fetch_array($result)) {
?>
<option value="<?php echo $row['author_id'] ?>"><?php echo $row['name'] ?></option>
<?php
}
?>
</select>
</div>
<div class="d-flex w-auto gap-2">
<label for="status" class="py-1">Status: </label>
<select id="status" name="status" class="filter-select py-1 filter-input rounded-3 px-2">
<option value="0">Select status</option>
<option value="1">Returned</option>
<option value="2">Not Returned</option>
</select>
</div>
</div>
<div class="d-flex gap-2">
<label for="year" class="py-1">Search:</label>
<input type="text" id="search" placeholder="Search" name="search" class="filter-input py-1 rounded-3 px-2">
</div>
</div>
</div>
<div class="card-body">
<table class="table table-bordered table-hover bg-light border-0" id="BooksTable">
<thead class="border-black table-success">
<tr class="rounded-top-4">
<th scope="col">
<div class="py-1">#</div>
</th>
<th scope="col">
<div class="py-1">User Name</div>
</th>
<th scope="col">
<div class="py-1">Course Year</div>
</th>
<th scope="col">
<div class="py-1">Borrowed Book</div>
</th>
<th scope="col">
<div class="py-1">Borrowed Date</div>
</th>
<th scope="col">
<div class="py-1">Due Date</div>
</th>
<th scope="col" class="text-center">
<div class="py-1">Status</div>
</th>
<th scope="col" class="text-center">
<div class="py-1">Status 2</div>
</th>
</tr>
</thead>
<tbody class="table-light border-success" id="tableBody">
<!-- Table rows will be dynamically populated here -->
</tbody>
</table>
<button id="pslip" class="btn btn-primary">Print</button>
</div>
</div>
</main>
</div>
</section>
<div id="printTable1" class="d-none">
<style>
.container {
max-width: 500px;
margin: 0 auto;
padding: 10px;
}
.table1 {
width: 98%;
border-collapse: collapse;
}
th,
td {
padding: 8px;
border: 1px solid #000;
}
th {
background-color: #f2f2f2;
}
</style>
<div class=" w-100 text-center">
<h2 class="py-3">Borrowed Books as of <span id="mT"></span></h2>
</div>
<table class="table table1" id="BooksTable">
<thead class="border-black">
<tr class="rounded-top-4">
<th scope="col">
<div class="py-1">#</div>
</th>
<th scope="col">
<div class="py-1">User Name</div>
</th>
<th scope="col">
<div class="py-1">Course Year</div>
</th>
<th scope="col">
<div class="py-1">Borrowed Book</div>
</th>
<th scope="col">
<div class="py-1">Borrowed Date</div>
</th>
<th scope="col">
<div class="py-1">Due Date</div>
</th>
<th scope="col" class="text-center">
<div class="py-1">Status</div>
</th>
<th scope="col" class="text-center">
<div class="py-1">Status 2</div>
</th>
</tr>
</thead>
<tbody id="tableBody1">
<!-- Table rows will be dynamically populated here -->
</tbody>
</table>
</div>
<!-- User Information Modal -->
<div class="modal fade modal-sm" id="userInfoModal" tabindex="-1" role="dialog" aria-labelledby="userInfoModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content bg-dark text-white">
<div class="modal-header">
<h5 class="modal-title" id="userInfoModalLabel">User Information</h5>
<button type="button" class="btn-close text-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="text-center mb-4">
<i class="fa fa-user display-1"></i>
</div>
<div class="text-center mb-3">
<h4 id="userName"></h4>
</div>
<div class="text-center mb-3">
<p id="courseYear"></p>
</div>
<div class="text-center mb-3">
<p id="email"></p>
</div>
<div class="text-center mb-3">
<h5>Borrowed Book</h5>
<div id="borrowedBooks"></div>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).on('click', '#pslip', function() {
var printContents = document.getElementById('printTable1').innerHTML;
var originalContents = document.body.innerHTML;
document.body.innerHTML = printContents;
window.print();
window.location.reload();
document.body.innerHTML = originalContents;
});
// Get the current year
var currentYear = new Date().getFullYear();
// Set the default value of the year input field
document.getElementById('year').value = currentYear;
// Get the month select element
var monthSelect = document.getElementById('month');
// Get the current month (zero-based index)
var currentMonth = new Date().getMonth();
// Set the default option by setting the 'selected' attribute
monthSelect.options[currentMonth].selected = true;
// Add event listener to the month select element
monthSelect.addEventListener('change', filterTable);
var yearInput = document.getElementById('year');
var searchInput = document.getElementById('search');
var authorInput = document.getElementById('author');
var categoryInput = document.getElementById('category');
var statusInput = document.getElementById('status');
var monthInput = document.getElementById('month');
var mTDiv = document.getElementById('mT');
yearInput.addEventListener('change', filterTable);
searchInput.addEventListener('change', filterTable);
authorInput.addEventListener('change', filterTable);
categoryInput.addEventListener('change', filterTable);
statusInput.addEventListener('change', filterTable);
monthInput.addEventListener('change', filterTable);
// Function to filter the table based on the selected month and year
// Function to filter the table based on the selected month and year
function filterTable() {
var selectedYear = yearInput.value;
var selectedSearch = searchInput.value;
var selectedAuthor = authorInput.value;
var selectedCategory = categoryInput.value;
var selectedStatus = statusInput.value;
var selectedMonth = monthInput.value;
$('#mT').html(monthSelect.options[monthSelect.selectedIndex].text);
// Make an AJAX request to fetch the filtered data
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
// Update the table with the fetched data
$('#BooksTable').DataTable().destroy(); // Destroy the existing DataTable instance
$('#tableBody').html(xhr.responseText); // Insert the fetched data into the table body
$('#BooksTable').DataTable({
"searching": false,
"lengthChange": false,
"pageLength": 5,
"language": {
"zeroRecords": "No matching records found",
"info": "Showing _START_ to _END_ of _TOTAL_ entries",
"infoEmpty": "Showing 0 to 0 of 0 entries",
"infoFiltered": "(filtered from _MAX_ total entries)"
}
}); // Reinitialize the DataTable
$('#tableBody1').html(xhr.responseText); // Insert the fetched data into the table body
}
};
xhr.open('GET', 'filter_Borrows.php?year=' + selectedYear + '&month=' + selectedMonth + '&search=' + selectedSearch + '&author=' + selectedAuthor + '&category=' + selectedCategory + '&status=' + selectedStatus, true);
xhr.send();
}
$(document).ready(function() {
// Event delegation for the clickable rows
$(document).on('click', '.clickable-row', function() {
var userName = $(this).data('user-name');
var courseYear = $(this).data('course-year');
var email = $(this).data('email');
var borrowedBooks = $(this).data('borrowed-books').split(',');
// Set the modal content with the retrieved data
$('#userName').text(userName);
$('#courseYear').text(courseYear);
$('#email').text(email);
// Clear the previous borrowed books list
$('#borrowedBooks').empty();
// Add each borrowed book to the list
for (var i = 0; i < borrowedBooks.length; i++) {
$('#borrowedBooks').append(borrowedBooks[i].trim());
}
// Show the modal
$('#userInfoModal').modal('show');
});
// Trigger the filtering function when the page loads
filterTable();
});
</script>
<script src="js/side.js"></script>
<script>
$(document).ready(function() {
$(".Ret").addClass('active');
$(".reports-li").addClass('nav-link');
}); // Get the menu parent element
</script>
<script src="DataTables/jquery-3.6.0.min.js"></script>
</body>
</html>