-
Notifications
You must be signed in to change notification settings - Fork 13
/
beneficiary.php
269 lines (174 loc) · 7.1 KB
/
beneficiary.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
<?php
if(!isset($_SESSION)) {
session_start();
}
include "validate_customer.php";
include "connect.php";
include "header.php";
include "customer_navbar.php";
include "customer_sidebar.php";
include "verify_beneficiary.php";
include "session_timeout.php";
if (isset($_SESSION['loggedIn_cust_id'])) {
$sql0 = "SELECT * FROM beneficiary".$_SESSION['loggedIn_cust_id'];
}
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="manage_customers_style.css">
</head>
<body>
<div class="search-bar-wrapper">
<div class="search-bar" id="the-search-bar">
<div class="flex-item-search-bar" id="fi-search-bar">
<a class="add-button" href="add_beneficiary.php">Add</a>
<form class="search_form" action="" method="post">
<div class="flex-item-search">
<input name="search" size="30" type="text" placeholder="Search Beneficiaries..." />
</div>
<div class="flex-item-search-button">
<button type="submit" name="submit" id="search"></button>
</div>
<div class="flex-item-by">
<label for="by">By :</label>
</div>
<div class="flex-item-search-by">
<select name="by" id="by">
<option value="name">Name</option>
<option value="acno">Ac/No</option>
</select>
</div>
</form>
</div>
</div>
</div>
<div class="flex-container">
<p id="info">Send to, Add/Delete Beneficiaries.</p>
<?php
$result = $conn->query($sql0);
$isBenefPresent = 0;
$back_button = FALSE;
if ($result->num_rows > 0) {
// output data of each row
$i = 0;
while($row = $result->fetch_assoc()) {
$i++;
if (isset($_POST['submit'])) {
$back_button = TRUE;
$search = $_POST['search'];
$by = $_POST['by'];
if ($by == "name") {
$sql1 = "SELECT cust_id,
first_name, last_name, account_no FROM customer
WHERE cust_id=".$row["benef_cust_id"]." AND (first_name LIKE '%$search%'
OR last_name LIKE '%$search%' OR CONCAT(first_name, ' ', last_name) LIKE '%$search%')";
}
else
{ $sql1 = "SELECT cust_id, first_name, last_name, account_no FROM customer
WHERE cust_id=".$row["benef_cust_id"]."
AND account_no LIKE '$search'";
}
}
else {
$sql1 = "SELECT cust_id, first_name, last_name, account_no
FROM customer WHERE cust_id=".$row["benef_cust_id"];
}
$result1 = $conn->query($sql1);
if ($result1->num_rows > 0) {
$isBenefPresent = 1;
$row1 = $result1->fetch_assoc();
?>
<div class="flex-item">
<div class="flex-item-1">
<p id="id"><?php echo $i . "."; ?></p>
</div>
<div class="flex-item-2">
<p id="name"><?php echo $row1["first_name"] . " " . $row1["last_name"]; ?></p>
<p id="acno"><?php echo "Ac/No : " . $row1["account_no"]; ?></p>
</div>
<div class="flex-item-1">
<div class="dropdown">
<button onclick="dropdown_func(<?php echo $i ?>)" class="dropbtn"></button>
<div id="dropdown<?php echo $i ?>" class="dropdown-content">
<a href="send_funds.php?cust_id=<?php echo $row1["cust_id"] ?>">Send</a>
<a href="delete_beneficiary.php?cust_id=<?php echo $row1["cust_id"] ?>"
onclick="return confirm('Are you sure?')">Delete</a>
</div>
</div>
</div>
</div>
<?php }}}
if ($isBenefPresent == 0) { ?>
<p id="none"> No beneficiaries found :(</p>
<?php }
if ($back_button) { ?>
<div class="flex-container-bb">
<div class="back_button">
<a href="beneficiary.php" class="button">Go Back</a>
</div>
</div>
<?php }
$conn->close(); ?>
</div>
<script>
function dropdown_func(i) {
var doc_id = "dropdown".concat(i.toString());
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
document.getElementById(doc_id).classList.toggle("show");
return false;
}
window.onclick = function(event) {
if (!event.target.matches('.dropbtn'))
{
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
$(document).ready(function() {
var curr_scroll;
$(window).scroll(function () {
curr_scroll = $(window).scrollTop();
if ($(window).scrollTop() > 120) {
$("#the-search-bar").addClass('search-bar-fixed');
if ($(window).width() > 855) {
$("#fi-search-bar").addClass('fi-search-bar-fixed');
}
}
if ($(window).scrollTop() < 121) {
$("#the-search-bar").removeClass('search-bar-fixed');
if ($(window).width() > 855) {
$("#fi-search-bar").removeClass('fi-search-bar-fixed');
}
}
});
$(window).resize(function ()
{
var class_name = $("#fi-search-bar").attr('class');
if ((class_name == "flex-item-search-bar fi-search-bar-fixed") && ($(window).width() < 856))
{
$("#fi-search-bar").removeClass('fi-search-bar-fixed');
}
if ((class_name == "flex-item-search-bar") && ($(window).width() > 855) && (curr_scroll > 120))
{
$("#fi-search-bar").addClass('fi-search-bar-fixed');
}
});
});
</script>
</body>
</html>