-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathallrides.php
170 lines (148 loc) · 5.29 KB
/
allrides.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
<?php
include('adhead.php');
if(!isset($_SESSION['userdata']))
{
header('Location: index.php');
}
if($_SESSION['userdata']['is_admin']==1){
include('adsidebar.php');
$id=$_SESSION['userdata']['user_id'];
if(isset($_GET['action']))
{
$id=$_GET['id'];
if($_GET['action']=='blk')
{
$ap=2;
$adm = new adminwrk();
$admc = new dbcon();
$sho = $adm->rideup($ap,$id,$admc->conn);
}
if($_GET['action']=='app')
{
$ap=1;
$adm = new adminwrk();
$admc = new dbcon();
$sho = $adm->rideup($ap,$id,$admc->conn);
}
elseif($_GET['action']=='no')
{
$ap=0;
$adm = new adminwrk();
$admc = new dbcon();
$sho = $adm->rideup($ap,$id,$admc->conn);
}
}
?>
<nav class="nav nav-pills nav-justified col-sm-10">
<button class="nav-link btn btn-light " id="allrid">All Rides</button>
<a class="nav-link btn btn-light " href="apenride.php" >Pending Rides</a>
<a class="nav-link btn btn-light " href="acanride.php" >Cancelled Rides</a>
<a class="nav-link btn btn-light " href="acomride.php">Completed Rides</a>
<button class="nav-link btn btn-light " id="ernrid">Total Earning</button>
</nav>
<div id="drp" class="row">
<div class="mr-2" id="srt">
<label for="filter">FILTER BY</label>
<select name="sort" id="sort">
<option value="" selected hidden disabled>FILTER BY</option>
<option value="none">None</option>
<option value="week">Week</option>
<option value="month">Month</option>
</select>
</div>
<div class="mr-2" id="cstats">
<label for="stat">Booking Status</label>
<select name="cstat" id="cstat">
<option value="" selected>All</option>
<option value="Pending">Pending</option>
<option value="Canceled">Canceled</option>
<option value="Completed">Completed</option>
</select>
</div>
<div class="mr-2" id="cfilt">
<label for="filter">FILTER BY CAB</label>
<select name="cfil" id="cfil">
<option value="" selected>NONE</option>
<option value="CedMini">CedMini</option>
<option value="CedMicro">CedMicro</option>
<option value="CedRoyal">CedRoyal</option>
<option value="CedSUV">CedSUV</option>
</select>
</div>
</div>
<div id="allr">
<h3 class="text-center">All Rides</h3>
<table id='tbl' class="container-fluid col-lg-10 mr-lg-2 table table-responsive table-hover table-bordered table-striped">
<thead>
<th>Ride id</th>
<th onclick="sortTable(1,tbl)">Ride Date ⇩</th>
<th>Pickup Point</th>
<th>Drop Point</th>
<th>Cab Type</th>
<th onclick="sortTablen(5,tbl)">Distance ⇩</th>
<th>Luggage</th>
<th onclick="sortTablen(7,tbl)">Ride Fare ⇩</th>
<th>Status</th>
<th>User id</th>
<th>Cancel</th>
<th>Approve</th>
<th>Invoice</th>
<th>Delete</th>
</thead>
<tbody id="tblc">
<?php
$adm = new adminwrk();
$admc = new dbcon();
$show = $adm->allride($admc->conn);
foreach($show as $key=>$val)
{
echo "<tr><td>".$val['ride_id']."</td><td>".$val['ride_date']."</td><td>".$val['from_distance']."</td><td>".$val['to_distance']."</td><td>".$val['cab_type']."</td><td>".$val['total_distance']." Km</td><td>".$val['luggage']." Kg</td><td>".$val['total_fare']." Rs</td><td>";
if($val['status']==1)
{
echo "Pending</td>";
}
if($val['status']==0)
{
echo "Canceled</td>";
}
if($val['status']==2)
{
echo "Completed</td>";
}
echo "<td>".$val['customer_user_id']."</td>";
if($val['status']==1)
{
echo "<td><a class='btn btn-warning' href='allrides.php?action=blk&id=".$val['ride_id']."'>Cancel</a></td>";
echo "<td><a class='btn btn-success' href='allrides.php?action=app&id=".$val['ride_id']."'>Approve</a></td>";
}
else{
echo "<td><a class='btn btn-warning disabled' >Cancel</a></td>";
echo "<td><a class='btn btn-success disabled' >Approve</a></td>";
}
if($val['status']==2)
{
echo "<td><a class='btn btn-info' href='invoice.php?id=".$val['ride_id']."'>Invoice</a></td>";
}
else{
echo "<td><a class='btn btn-info disabled'>Invoice</a></td>";
}
echo "<td><a class='btn btn-danger' onClick=\"javascript: return confirm('Please confirm deletion');\" href='allrides.php?action=no&id=".$val['ride_id']."'>Delete</a></td></tr></tr>";
}
?>
</tbody>
</table>
</div>
<div id="ernr">
<h3 class="text-center">Total Earnings</h3>
<?php
$adm = new adminwrk();
$admc = new dbcon();
$en = $adm->earn($admc->conn);
?>
<h1 class="text-center font-weight-bold text-dark">₹<?php echo $en; ?></h1>
</div>
<?php }
else{
echo '<h1 class="text-center text-weight-bold text-dark">You Are not Authorised</h1>';
}
include('adfoot.php'); ?>