forked from Harshil0512/Blockchain-Based-Tracking-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PvtToPvt.php
201 lines (195 loc) · 8.93 KB
/
PvtToPvt.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transfer Pvt To Pvt</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="Assets/css/Main.css">
</head>
<body>
<?php
if(!isset($_SESSION))
{
session_start();
}
if(!isset($_SESSION['AccountId']))
{
echo "<script>window.location.href='login.php';</script>";
}
require_once "dbconnection.php";
?>
<?php require_once 'navigation.php'; ?>
<header class="text-center py-4 m-0 bg-dark text-light d-flex align-items-center">
<button class="btn btn-primary navbar-toggler bg-dark text-light navbar-dark col-1" type="button" data-bs-toggle="offcanvas" data-bs-target="#navigation">
<span class="navbar-toggler-icon text-secondary"></span>
</button>
<h1 class="col-10">Transfer Pvt To Pvt</h1>
</header>
<section>
<h4 class="text-center display-6 py-4 m-0 heading mb-4 text-light">Welcome <?php echo $_SESSION['Name'];?></h1>
</section>
<section class="d-flex my-4 flex-wrap">
<div class="col-md-6 col-sm-12 col-12 text-center">
<h3 class="mb-4">Available Amount</h3>
<div class="mx-4">
<table class="table table-responsive text-center">
<thead>
<tr>
<th scope="col">Sr No.</th>
<th scope="col">Partition Type</th>
<th scope="col">Amount Available</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Govt</td>
<?php
$sql = "SELECT * FROM account WHERE accountId = '{$_SESSION['AccountId']}'";
$result = mysqli_query($con,$sql);
$row = mysqli_fetch_assoc($result);
$BalanceGovt = $row['BalanceGovt'];
$BalancePvt = $row['BalancePvt'];
?>
<td><?php echo $BalanceGovt; ?> Rs.</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Private</td>
<td><?php echo $BalancePvt; ?> Rs.</td>
</tr>
<tr>
<th scope="row">3</th>
<th colspan="1">Total Amount</th>
<th><?php echo $BalanceGovt+$BalancePvt ?>Rs.</th>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-md-6 col-sm-12 col-12 text-center m-0 d-flex align-items-center flex-wrap">
<h3 class="col-12">Amount To Transfer</h3>
<div class="my-2 col-12">
<form action="#" method="post" class="w-75 mx-auto" id="PvtToPvt">
<div class="form-floating m-2 d-flex align-items-center h-100">
<input type="text" name="account" id="account" min="0" placeholder="Enter Account No." class="form-control mx-auto" required>
<label for="amt">Enter Account No.</label>
</div>
<div class="form-floating m-2 d-flex align-items-center h-100">
<input type="number" name="amt" id="amt" min="0" placeholder="Enter The Amount" class="form-control mx-auto" required>
<label for="amt">Enter The Amount</label>
</div>
<button type="submit" class="btn btn-success" >Transfer</button>
</form>
</div>
</div>
</section>
<section>
<h4 class="text-center display-6 py-4 m-0 heading text-light">Transfer History</h1>
<table class="table table-responsive table-light text-center">
<thead>
<tr>
<th scope="col">Sr No.</th>
<th scope="col">Date</th>
<th scope="col">Amount</th>
<th scope="col">To (Account)</th>
<th scope="col">To (Type) </th>
</tr>
</thead>
<tbody>
<?php
$sql = "SELECT * FROM transactionHistory WHERE (FromAccId='{$_SESSION['AccountId']}' OR ToAccId='{$_SESSION['AccountId']}') AND Mode = '3'";
$result = mysqli_query($con,$sql);
$i = 1;
while($row = mysqli_fetch_assoc($result))
{
?>
<tr>
<th scope="row"><?php echo $i++; ?></th>
<td><?php echo $row['Date']; ?></td>
<td><?php echo $row['Amount']; ?></td>
<td><?php echo $row['ToAccId']; ?></td>
<?php
$sql = "SELECT * FROM mode WHERE modeId={$row['Mode']}";
$result1 = mysqli_query($con,$sql);
$row = mysqli_fetch_assoc($result1);
?>
<td><?php echo $row['Mode']; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</section>
<div class="modal fade" id="confirm">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header heading">
<h5 class="modal-title text-light" id="staticBackdropLabel">Confirm Transaction</h5>
<button type="button" class="btn-close btn-light bg-light" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body fw-bold" id="confirmText">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" id="cancel">Cancel</button>
<form action="PvtToPvt.php" method="POST" id="confirmForm">
<button type="submit" class="btn heading text-light" name="confirm">Confirm</button>
</form>
</div>
</div>
</div>
</div>
<button type="button" class="btn btn-primary d-none" data-bs-toggle="modal" id="confirmBtn" data-bs-target="#confirm"></button>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script>
$(document).ready(function () {
$(document).on("click","#cancel", (e)=>{
window.location.href="PvtToPvt.php";
});
$(document).on("submit","#PvtToPvt", (e)=>{
e.preventDefault();
let amt = $("#PvtToPvt #amt").val();
let account = $("#PvtToPvt #account").val();
$("#confirmText").text(`Are You Want Sure To Transfer Rs. ${amt} From Your Government Partition To Private Partition ?`);
if(amt<=100000)
{
$('#confirmBtn').click();
$(document).on("submit","#confirmForm", (e)=>{
e.preventDefault();
$.ajax({
type: "POST",
url: "PvtToPvtConfirm.php",
data: {amt : amt, account : account},
success: function (response) {
try{
response1=JSON.parse(response)
if(response1['from']!=null)
{
window.location.href=`success.php?date=${response1['date']}&from=${response1['from']}&to=${response1['to']}&amt=${response1['amt']}&fromType=${response1['fromType']}&toType=${response1['toType']}`;
}
}
catch
{
window.location.href="error.php?response="+response;
}
},
error: function(response)
{
window.location.href="error.php?response="+response;
}
});
});
}
else
{
alert("You Don't Have Sufficient Balance To Transfer");
}
});
});
</script>
</html>