forked from Barneszaks/MedToken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayments.php
114 lines (102 loc) · 3.01 KB
/
payments.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
<?php include 'db_connect.php' ?>
<div class="container-fluid">
<div class="col-lg-12">
<div class="card">
<div class="card-header">
<large class="card-title">
<b>Payment List</b>
<button class="btn btn-primary btn-sm btn-block col-md-2 float-right" type="button" id="new_payments"><i class="fa fa-plus"></i> New Payment</button>
</large>
</div>
<div class="card-body">
<table class="table table-bordered" id="loan-list">
<colgroup>
<col width="10%">
<col width="25%">
<col width="25%">
<col width="20%">
<col width="10%">
<col width="10%">
</colgroup>
<thead>
<tr>
<th class="text-center">#</th>
<th class="text-center">Reference No</th>
<th class="text-center">Payee</th>
<th class="text-center">Amount</th>
<th class="text-center">Miner Profit</th>
<th class="text-center">Action</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
$qry = $conn->query("SELECT p.*,l.ref_no,concat(b.lastname,', ',b.firstname,' ',b.middlename)as name, b.contact_no, b.address from payments p inner join loan_list l on l.id = p.loan_id inner join borrowers b on b.id = l.borrower_id order by p.id asc");
while($row = $qry->fetch_assoc()):
?>
<tr>
<td class="text-center"><?php echo $i++ ?></td>
<td>
<?php echo $row['ref_no'] ?>
</td>
<td>
<?php echo $row['payee'] ?>
</td>
<td>
<?php echo number_format($row['amount'],2) ?>
</td>
<td class="text-center">
<?php echo number_format($row['penalty_amount'],2) ?>
</td>
<td class="text-center">
<button class="btn btn-outline-primary btn-sm edit_payment" type="button" data-id="<?php echo $row['id'] ?>"><i class="fa fa-edit"></i></button>
<button class="btn btn-outline-danger btn-sm delete_payment" type="button" data-id="<?php echo $row['id'] ?>"><i class="fa fa-trash"></i></button>
</td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<style>
td p {
margin:unset;
}
td img {
width: 8vw;
height: 12vh;
}
td{
vertical-align: middle !important;
}
</style>
<script>
$('#loan-list').dataTable()
$('#new_payments').click(function(){
uni_modal("New Payement","manage_payment.php",'mid-large')
})
$('.edit_payment').click(function(){
uni_modal("Edit Payement","manage_payment.php?id="+$(this).attr('data-id'),'mid-large')
})
$('.delete_payment').click(function(){
_conf("Are you sure to delete this data?","delete_payment",[$(this).attr('data-id')])
})
function delete_payment($id){
start_load()
$.ajax({
url:'ajax.php?action=delete_payment',
method:'POST',
data:{id:$id},
success:function(resp){
if(resp==1){
alert_toast("Payment successfully deleted",'success')
setTimeout(function(){
location.reload()
},1500)
}
}
})
}
</script>