-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcreditor-details.php
More file actions
312 lines (257 loc) · 11.4 KB
/
creditor-details.php
File metadata and controls
312 lines (257 loc) · 11.4 KB
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
<?php
include("includes/header.php");
if(!isset($_SESSION['admin_username']))
{
echo "<script>document.location='login.php'</script>";
}
else
{
?>
<!-- Main Content-->
<div class="main-content pt-0">
<div class="container">
<div class="inner-body">
<!-- Page Header -->
<div class="page-header">
<div>
<h2 class="main-content-title tx-24 mg-b-5">Finances</h2>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Creditors</li>
</ol>
</div>
</div>
<!-- End Page Header -->
<!-- Row -->
<div class="row sidemenu-height">
<div class="col-lg-12">
<div class="card custom-card">
<div class="card-header p-3 tx-medium my-auto tx-white bg-gray-800">
Creditor Details
<a href="creditors.php">
<button class="pull-right btn btn-white">Back to menu</button>
</a>
</div>
<div class="card-body">
<form method="post" action="add-creditor.php">
<div class="row row-sm">
<div class="col-md-12 col-lg-12 col-xl-12">
<div class="">
<div class="form-group col-md-9">
<label class=""> Customer Name</label>
<input class="form-control" required="" name="cust_name" type="text">
</div>
<div class="form-group col-md-9">
<label class="">Location</label>
<input class="form-control" required="" name="cust_loc" type="text">
</div>
<div class="form-group col-md-9">
<label class="">Phone Number</label>
<input class="form-control" required="" name="cust_no" type="text">
</div>
<div class="form-group col-md-9">
<label class=""> Quantity of goods</label>
<input class="form-control" required="" name="cust_qty" type="text">
</div>
<div class="form-group col-md-9">
<label class=""> Total Amount </label>
<input class="form-control" required="" name="total_amt" type="text">
</div>
<div class="form-group col-md-9">
<label class=""> Amount Paid </label>
<input class="form-control" required="" name="amt_paid" type="text">
</div>
<div class="form-group col-md-9">
<label class="">Payment Period</label>
<select name="payment_period" class="form-control select select2" required>
<option label="year"></option>
<option value="2 weeks">2 weeks</option>
</select>
</div>
<div class="form-group col-md-9">
<button type="submit" name="btn-cred" class="btn ripple btn-main-primary">
Add Creditor
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="row sidemenu-height">
<div class="col-lg-12">
<div class="card custom-card">
<div class="card-header p-3 tx-medium my-auto tx-white bg-gray-800">
List of Creditors
</div>
<div class="card-body">
<table class="table table-bordered border-t0 key-buttons text-nowrap w-100" id="example2">
<thead>
<tr>
<th class="wd-20p">No.</th>
<th class="wd-20p">Customer Name</th>
<th class="wd-20p">Quantity of goods</th>
<th class="wd-20p">Total Amount</th>
<th class="wd-20p">Amount Paid</th>
<th class="wd-20p">Amount Left</th>
<th class="wd-20p">Credit Status</th>
<th class="wd-15p">Payment Period</th>
<th class="wd-15p">End Date</th>
<th class="wd-15p">Date taken</th>
<th class="wd-15p">Action</th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
$get_cred = "SELECT * FROM tbl_creditors";
$run_cred = mysqli_query($db, $get_cred);
while($row_cred = mysqli_fetch_array($run_cred))
{
$cred_id = $row_cred['creditor_id'];
$cust_name = $row_cred['cust_name'];
$cust_loc = $row_cred['location'];
$cust_no = $row_cred['phone_number'];
$cust_qty = $row_cred['qty'];
$total_amt = $row_cred['total_amount'];
$amt_paid = $row_cred['amount_paid'];
$pymt_period = $row_cred['payment_period'];
$date_taken = $row_cred['date_taken'];
$amount_left = $total_amt - $amt_paid;
$i++;
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $cust_name; ?></td>
<td><?php echo $cust_qty; ?></td>
<td>₵<?php echo number_format($total_amt, 2); ?></td>
<td>₵<?php echo number_format($amt_paid, 2); ?></td>
<td>₵<?php echo number_format($amount_left, 2); ?></td>
<td>
<?php
if($total_amt == $amount_left)
{
echo "<span class='badge badge-success'>Paid</span>";
}
else
{
echo "<span class='badge badge-danger'>Not-Paid</span>";
}
?></td>
<td><?php echo $pymt_period; ?></td>
<td>
<?php
if($pymt_period == '2 weeks')
{
$date = date('M d, Y',strtotime('+2 week'));
echo $date;
}
?>
</td>
<td><?php echo date("M d, Y",strtotime($date_taken)); ?></td>
<td>
<a class="btn ripple btn-primary" data-target="#update<?php echo $cred_id; ?>" data-toggle="modal" href="#update<?php echo $cred_id; ?>"><i class="fa fa-eye"></i></a>
<a class="btn ripple btn-danger" data-target="#delete<?php echo $cred_id; ?>" data-toggle="modal" href="#delete<?php echo $cred_id; ?>"><i class="fa fa-trash"></i></a>
</td>
</tr>
<!-- Large Modal -->
<div class="modal" id="update<?php echo $cred_id; ?>">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content modal-content-demo">
<div class="modal-header">
<h6 class="modal-title">Update Product Details</h6>
<button aria-label="Close" class="close" data-dismiss="modal" type="button"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form method="post" action="update-creditor.php" enctype="multipart/form-data">
<div class="row row-sm">
<div class="form-group col-md-9">
<label class=""> Customer Name</label>
<input class="form-control" required="" name="cred_id" value="<?php echo $cred_id; ?>" type="hidden">
<input class="form-control" required="" name="cust_name" value="<?php echo $cust_name; ?>" type="text">
</div>
<div class="form-group col-md-9">
<label class="">Location</label>
<input class="form-control" required="" name="cred_id" value="<?php echo $cred_id; ?>" type="hidden">
<input class="form-control" required="" value="<?php echo $cust_loc; ?>" name="cust_loc" type="text">
</div>
<div class="form-group col-md-9">
<label class="">Phone Number</label>
<input class="form-control" required="" name="cred_id" value="<?php echo $cred_id; ?>" type="hidden">
<input class="form-control" required="" value="<?php echo $cust_no; ?>" name="cust_no" type="text">
</div>
<div class="form-group col-md-9">
<label class=""> Quantity of goods</label>
<input class="form-control" required="" name="cred_id" value="<?php echo $cred_id; ?>" type="hidden">
<input class="form-control" required="" value="<?php echo $cust_qty; ?>" name="cust_qty" type="text">
</div>
<div class="form-group col-md-9">
<label class=""> Total Amount </label>
<input class="form-control" required="" name="cred_id" value="<?php echo $cred_id; ?>" type="hidden">
<input class="form-control" required="" name="total_amt" value="<?php echo $total_amt; ?>" type="text">
</div>
<div class="form-group col-md-9">
<label class=""> Amount Paid </label>
<input class="form-control" required="" name="cred_id" value="<?php echo $cred_id; ?>" type="hidden">
<input class="form-control" required="" name="amt_paid" value="<?php echo $amt_paid; ?>" type="text">
</div>
<div class="form-group col-md-9">
<label class="">Payment Period</label>
<input class="form-control" required="" name="cred_id" value="<?php echo $cred_id; ?>" type="hidden">
<select name="payment_period" class="form-control select select2" required>
<option value="<?php echo $pymt_period; ?>"><?php echo $pymt_period; ?></option>
<option value="2 weeks">2 weeks</option>
</select>
</div>
</div>
<div class="modal-footer">
<button class="btn ripple btn-primary" type="submit">Update Creditor Details</button>
<button class="btn ripple btn-secondary" data-dismiss="modal" type="button">Close</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!--End Large Modal -->
<!-- Delete Modal -->
<div class="modal" id="delete<?php echo $cred_id;?>">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content modal-content-demo">
<div class="modal-header">
<h6 class="modal-title">Delete Creditors Details</h6><button aria-label="Close" class="close" data-dismiss="modal" type="button"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form action="creditor-del.php" method="post">
<input type="hidden" class="form-control" name="cred_id" value="<?php echo $cred_id; ?>" required>
<p>Are you sure you want to <b>Delete</b> this Creditor?</p>
</div>
<div class="modal-footer">
<button class="btn ripple btn-primary" name="delete" type="submit">Yes</button>
<button class="btn ripple btn-danger" data-dismiss="modal" type="button">No</button>
</div>
</form>
</div>
</div>
</div>
<!--End Delete Modal -->
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
</div>
</div>
</div>
<!-- End Main Content-->
<?php
include("includes/footer.php");
?>
<?php } ?>