-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintbill.php
253 lines (231 loc) · 10.5 KB
/
printbill.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
<!DOCTYPE html>
<html>
<?php
session_start();
require 'connection.php';
$conn = Connect();
?>
<head>
<link rel="shortcut icon" type="image/png" href="P.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/w3css/w3.css">
<link rel="stylesheet" type="text/css" href="assets/css/customerlogin.css">
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/clientpage.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/bookingconfirm.css" />
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation" style="color: black">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="index.php">
PATNA CAR RENTAL </a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<?php
if(isset($_SESSION['login_client'])){
?>
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="#"><span class="glyphicon glyphicon-user"></span> Welcome <?php echo $_SESSION['login_client']; ?></a>
</li>
<li>
<ul class="nav navbar-nav navbar-right">
<li><a href="#" class="dropdown-toggle active" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span class="glyphicon glyphicon-user"></span> Control Panel <span class="caret"></span> </a>
<ul class="dropdown-menu">
<li> <a href="entercar.php">Add Car</a></li>
<li> <a href="enterdriver.php"> Add Driver</a></li>
<li> <a href="clientview.php">View</a></li>
</ul>
</li>
</ul>
</li>
<li>
<a href="logout.php"><span class="glyphicon glyphicon-log-out"></span> Logout</a>
</li>
</ul>
</div>
<?php
}
else if (isset($_SESSION['login_customer'])){
?>
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="#"><span class="glyphicon glyphicon-user"></span> Welcome <?php echo $_SESSION['login_customer']; ?></a>
</li>
<ul class="nav navbar-nav">
<li><a href="#" class="dropdown-toggle active" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> Garagge <span class="caret"></span> </a>
<ul class="dropdown-menu">
<li> <a href="prereturncar.php">Return Now</a></li>
<li> <a href="mybookings.php"> My Bookings</a></li>
</ul>
</li>
</ul>
<li>
<a href="logout.php"><span class="glyphicon glyphicon-log-out"></span> Logout</a>
</li>
</ul>
</div>
<?php
}
else {
?>
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="clientlogin.php">Client</a>
</li>
<li>
<a href="customerlogin.php">Customer</a>
</li>
<li>
<a href="#"> FAQ </a>
</li>
</ul>
</div>
<?php }
?>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<body>
<?php
$id = $_GET["id"];
$distance = NULL;
$distance_or_days = $conn->real_escape_string($_POST['distance_or_days']);
$fare = $conn->real_escape_string($_POST['hid_fare']);
$total_amount = $distance_or_days * $fare;
$car_return_date = date('Y-m-d');
$return_status = "R";
$login_customer = $_SESSION['login_customer'];
$sql0 = "SELECT rc.id, rc.rent_end_date, rc.charge_type, rc.rent_start_date, c.car_name, c.car_nameplate FROM rentedcars rc, cars c WHERE id = '$id' AND c.car_id = rc.car_id";
$result0 = $conn->query($sql0);
if(mysqli_num_rows($result0) > 0) {
while($row0 = mysqli_fetch_assoc($result0)){
$rent_end_date = $row0["rent_end_date"];
$rent_start_date = $row0["rent_start_date"];
$car_name = $row0["car_name"];
$car_nameplate = $row0["car_nameplate"];
$charge_type = $row0["charge_type"];
}
}
function dateDiff($start, $end) {
$start_ts = strtotime($start);
$end_ts = strtotime($end);
$diff = $end_ts - $start_ts;
return round($diff / 86400);
}
$extra_days = dateDiff("$rent_end_date", "$car_return_date");
$total_fine = $extra_days*200;
$duration = dateDiff("$rent_start_date","$rent_end_date");
if($extra_days>0) {
$total_amount = $total_amount + $total_fine;
}
if($charge_type == "days"){
$no_of_days = $distance_or_days;
$sql1 = "UPDATE rentedcars SET car_return_date='$car_return_date', no_of_days='$no_of_days', total_amount='$total_amount', return_status='$return_status' WHERE id = '$id' ";
} else {
$distance = $distance_or_days;
$sql1 = "UPDATE rentedcars SET car_return_date='$car_return_date', distance='$distance', no_of_days='$duration', total_amount='$total_amount', return_status='$return_status' WHERE id = '$id' ";
}
$result1 = $conn->query($sql1);
if ($result1){
$sql2 = "UPDATE cars c, driver d, rentedcars rc SET c.car_availability='yes', d.driver_availability='yes'
WHERE rc.car_id=c.car_id AND rc.driver_id=d.driver_id AND rc.customer_username = '$login_customer' AND rc.id = '$id'";
$result2 = $conn->query($sql2);
}
else {
echo $conn->error;
}
?>
<div class="container">
<div class="jumbotron">
<h1 class="text-center" style="color: green;"><span class="glyphicon glyphicon-ok-circle"></span> Car Returned</h1>
</div>
</div>
<br>
<h2 class="text-center"> Thank you for visiting Patna Car Rental! We wish you have a safe ride. </h2>
<h3 class="text-center"> <strong>Your Order Number:</strong> <span style="color: blue;"><?php echo "$id"; ?></span> </h3>
<div class="container">
<h5 class="text-center">Please read the following information about your order.</h5>
<div class="box">
<div class="col-md-10" style="float: none; margin: 0 auto; text-align: center;">
<h3 style="color: orange;">Your booking has been received and placed into out order processing system.</h3>
<br>
<h4>Please make a note of your <strong>order number</strong> now and keep in the event you need to communicate with us about your order.</h4>
<br>
<h3 style="color: orange;">Invoice</h3>
<br>
</div>
<div class="col-md-10" style="float: none; margin: 0 auto; ">
<h4> <strong>Vehicle Name: </strong> <?php echo $car_name;?></h4>
<br>
<h4> <strong>Vehicle Number:</strong> <?php echo $car_nameplate; ?></h4>
<br>
<h4> <strong>Fare: </strong> ₹<?php
if($charge_type == "days"){
echo ($fare . "/day");
} else {
echo ($fare . "/km");
}
?></h4>
<br>
<h4> <strong>Booking Date: </strong> <?php echo date("Y-m-d"); ?> </h4>
<br>
<h4> <strong>Start Date: </strong> <?php echo $rent_start_date; ?></h4>
<br>
<h4> <strong>Rent End Date: </strong> <?php echo $rent_end_date; ?></h4>
<br>
<h4> <strong>Car Return Date: </strong> <?php echo $car_return_date; ?> </h4>
<br>
<?php if($charge_type == "days"){?>
<h4> <strong>Number of days:</strong> <?php echo $distance_or_days; ?>day(s)</h4>
<?php } else { ?>
<h4> <strong>Distance Travelled:</strong> <?php echo $distance_or_days; ?>km(s)</h4>
<?php } ?>
<br>
<?php
if($extra_days > 0){
?>
<h4> <strong>Total Fine:</strong> <label class="text-danger"> ₹<?php echo $total_fine; ?>/- </label> for <?php echo $extra_days;?> extra days.</h4>
<br>
<?php } ?>
<h4> <strong>Total Amount: </strong> ₹<?php echo $total_amount; ?>/- </h4>
<br>
</div>
</div>
<div class="col-md-12" style="float: none; margin: 0 auto; text-align: center;">
<h6>Warning! <strong>Do not reload this page</strong> or the above display will be lost. If you want a hardcopy of this page, please print it now.</h6>
</div>
</div>
</body>
<footer class="site-footer">
<div class="container">
<hr>
<div class="row">
<div class="col-sm-6">
<h5>© 2018 Patna Car Rental</h5>
</div>
</div>
</div>
</footer>
</html>