-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
new_received_orders.php
347 lines (253 loc) · 9.59 KB
/
new_received_orders.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
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<?php
session_start();
if(isset($_SESSION['alogin'])){
$mail=$_SESSION['alogin'];
//$x=$_SESSION['rid'];
if (isset($_GET['pageno'])) {
$pageno = $_GET['pageno'];
} else {
$pageno = 1;
}
$no_of_records_per_page = 10;
$offset = ($pageno-1) * $no_of_records_per_page;
$con=mysqli_connect("localhost","root","","organic_shop_db")or die ("Couldnt connect");
$reg="Select rid from tbl_registration WHERE email='$mail'";
$regid=mysqli_query($con,$reg);
$rid_row1=mysqli_fetch_array($regid);
$rid=$rid_row1['rid'];
$viewbrand="Select * from tbl_product where rid='$rid'";
$d_seller_brand=mysqli_query($con,$viewbrand);
$viewprod="SELECT * FROM tbl_customer_order,tbl_customer_delv_address,tbl_product,tbl_registration WHERE tbl_customer_order.delv_adres_id=tbl_customer_delv_address.delv_adres_id and tbl_customer_order.stock_product_id=tbl_product.pid and tbl_product.rid='$rid' and tbl_customer_order.status='order placed'and tbl_customer_order.email=tbl_registration.email LIMIT $offset, $no_of_records_per_page ";
$d_seller_prod=mysqli_query($con,$viewprod);
$disp="SELECT tbl_login.user_type_id, tbl_registration.email,tbl_registration.fname,tbl_registration.lname,tbl_registration.phone_no FROM tbl_login INNER JOIN tbl_registration ON tbl_registration.email=tbl_registration.email WHERE tbl_registration.email=$mail'";
$disp_result=mysqli_query($con,$disp);
?>
<!DOCTYPE html>
<html>
<head>
<title>Customer|Home</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<!--theme-style-->
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<!--//theme-style-->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!--fonts-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<!--//fonts-->
<script src="js/jquery.min.js"></script>
<style>
input[type=text], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type=submit] {
width: 100%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
.div1 {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.inputbx
{
width: 90%;
padding: 12px 20px;
margin: 8px 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.space
{
margin: 8px 8px 0;
}
ul.pagination {
display: inline-block;
padding: 0;
margin: 0;
}
ul.pagination li {display: inline;}
ul.pagination li a {
color: black;
float: left;
padding: 8px 16px;
text-decoration: none;
}
</style>
</head>
<body>
<!--header-->
<div class="header">
<div class="bottom-header" style="background-color:palegreen;">
<div class="container">
<div class="header-bottom-left">
<div class="logo">
<font size="4"><strong><i> <b><p style="color:red;">ORGANICSHOPPING </p> </b></i></strong></font>
</div>
<div class="clearfix"> </div>
</div>
<div class="header-bottom-right">
<div class="account"><a href="seller_profile.php"><span> </span><?php echo $mail?></a></div>
<ul class="login">
<li><a href="logout.php" <span> </span>LOGOUT</a></li>
</ul>
<div class="cart"><a href="cart_view.php"><span> </span>CART </a></div>
<div class="clearfix"> </div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<div class="container">
<div class="account_grid">
<div class=" login-right">
<h3>Welcome to organic world<br><br>
</div>
<div class=" login-left">
</div>
<div class="clearfix"> </div>
</div>
<div class="sub-cate">
<div class=" top-nav rsidebar span_1_of_left">
<h3 class="cate">MENU</h3>
<ul class="menu">
<ul class="kid-menu ">
<li><a href="seller_home.php"> Home</a></li>
</ul>
<li class="item2"><a href="#">Profile<img class="arrow-img " src="images/arrow1.png" alt=""/></a>
<ul class="cute">
<li class="subitem1"><a href="seller_profile.php">View Profile </a></li>
<!--<li class="subitem1"><a href="seller_update_profile.php">Update profile</a></li>-->
<li class="subitem1"><a href="seller_update.php">Change Password</a></li>
</ul>
</li>
<ul class="kid-menu ">
<li><a href="product.php">add product</a></li>
<li><a href="viewproduct.php">View Products</a></li>
<!--<li class="menu-kid-left"><a href="contact.html">Contact us</a></li-->
</ul>
<li class="item2"><a href="#">Orders<img class="arrow-img " src="images/arrow1.png" alt=""/></a>
<ul class="cute">
<li class="subitem1"><a href="new_received_orders.php">View new orders</a></li>
<li class="subitem1"><a href="seller_delivered_orders.php">Dispatched Orders</a></li>
<!--<li class="subitem1"><a href="seller_update_profile.php">Update profile</a></li>
<li class="subitem1"><a href="seller_update.php">Change Password</a></li>-->
</ul>
</li>
<li class="item2"><a href="#">complaints<img class="arrow-img " src="images/arrow1.png" alt=""/></a>
<ul class="cute">
<li class="subitem1"><a href="seller_complaint.php">New Complaints</a></li>
<li class="subitem1"><a href="seller_replied_complaints.php">Replied Complaints</a></li>
<!--<li class="subitem1"><a href="seller_update_profile.php">Update profile</a></li>
<li class="subitem1"><a href="seller_update.php">Change Password</a></li>-->
</ul>
</li>
</ul>
</div>
<!--initiate accordion-->
<script type="text/javascript">
$(function() {
var menu_ul = $('.menu > li > ul'),
menu_a = $('.menu > li > a');
menu_ul.hide();
menu_a.click(function(e) {
e.preventDefault();
if(!$(this).hasClass('active')) {
menu_a.removeClass('active');
menu_ul.filter(':visible').slideUp('normal');
$(this).addClass('active').next().stop(true,true).slideDown('normal');
} else {
$(this).removeClass('active');
$(this).next().stop(true,true).slideUp('normal');
}
});
});
</script>
<div class=" chain-grid menu-chain">
<img class="img-responsive chain" src="images/a.jpg" alt=" " />
<!--<div class="grid-chain-bottom chain-watch">
<span class="actual dolor-left-grid">300$</span>
<span class="reducedfrom">500$</span>
<h6>Lorem ipsum dolor</h6>
</div>-->
</div>
<!-- <a class="view-all all-product" href="product.html">VIEW ALL PRODUCTS<span> </span></a> -->
</div>
<div class="outer-w3-agile mt-3">
<h4 class="tittle-w3-agileits mb-4">New Orders</h4>
</div>
<div class="outer-w3-agile col-xl mt-3" style="overflow: auto">
<table id="recordListing" class="table table-bordered table-striped" style=" overflow: auto">
<col width="70">
<col width="190">
<?php
$count=0;
while ($prod=mysqli_fetch_array($d_seller_prod))
{
$count=$count+1;
?>
<tr id="<?php echo $prod['stock_product_id'] ?>" >
<tr><th>Sl.No</th><td><?php echo $count ?></td></tr>
<tr><th>Product Name</th><td><?php echo $prod['name'] ?></td></tr>
<tr><th>Ordered Quantity</th><td><?php echo $prod['purchase_qty'] ?></td></tr>
<tr><th>Payed Amount</th><td><?php echo $prod['purchase_price'] ?></td></tr>
<tr><th>Ordered date</th><td ><?php echo $prod['order_date'] ?></td></tr>
<tr><th>Order by</th><td><?php echo $prod[1] ?></td></tr>
<tr><th>Delivery Address</th><td><?php echo $prod['fname'] ?><br></br>
<?php echo $prod['Mobile number'] ?><br></br>
<?php echo $prod['address_line'] ?><br></br>
<?php echo $prod['landmark'] ?><br></br>
<?php echo $prod['town_city'] ?><br></br>
<?php echo $prod['pin_code'] ?><br></br>
</td> </tr>
<tr><td colspan="2" ><center><a href="seller_update.order.php?orderid=<?php echo $prod['customer_order_id'] ?>" name="update_order" id="update_order" class="btn btn-danger btn-sm " style="background-color:green;color:lack ;font-weight:bold" > Update Order status</Button></center></td>
</tr>
<?php } ?>
</table>
<ul class="pagination">
<li><a>«</a></li>
<li><a href="?pageno=1">First</a></li>
<li class="<?php if($pageno <= 1){ echo 'disabled'; } ?>">
<a href="<?php if($pageno <= 1){ echo '#'; } else { echo "?pageno=".($pageno - 1); } ?>"><<</a>
</li>
<li class="<?php if($pageno >= $total_pages){ echo 'disabled'; } ?>">
<a href="<?php if($pageno >= $total_pages){ echo '#'; } else { echo "?pageno=".($pageno + 1); } ?>">>></a>
</li>
<li><a href="?pageno=<?php echo $total_pages; ?>">Last</a></li>
<li><a>»</a></li>
</ul>
<!--// Profile -->
<!-- Browser stats -->
<!--// Browser stats -->
</div>
<div class="clearfix"> </div>
</div>
<!---->
<div class="footer">
<div class="footer-bottom">
</body>
</html>
<?php
}
else
{
header('Location:login.php');
}
?>