-
Notifications
You must be signed in to change notification settings - Fork 0
/
order_detail.php
99 lines (90 loc) · 2.95 KB
/
order_detail.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
<?php
include ("header.php");
if(!isset($_SESSION['FOOD_USER_ID'])){
redirect(FRONT_SITE_PATH.'shop');
}
if(isset($_GET['id']) && $_GET['id']>0){
$id=get_safe_value($_GET['id']);
$getOrderById=getOrderById($id);
if($getOrderById[0]['user_id']!=$_SESSION['FOOD_USER_ID']){
redirect(FRONT_SITE_PATH.'shop');
}
}else{
redirect(FRONT_SITE_PATH.'shop');
}
$uid=$_SESSION['FOOD_USER_ID'];
?>
<div class="cart-main-area pt-95 pb-100">
<div class="container">
<h3 class="page-title">Order Detail</h3>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-12">
<form method="post">
<div class="table-content table-responsive">
<table style="border:1px solid #e9e8ef;">
<tr>
<th width="30%">Dish</th>
<th width="20%">Attribute</th>
<th width="15%">Unit Price</th>
<th width="5%">Qty</th>
<th width="15%">Total Price</th>
<th width="15%"></th>
</tr>
<?php
$getOrderDetails=getOrderDetails($id);
$pp=0;
//prx($getOrderDetails);
foreach($getOrderDetails as $list){
$pp=$pp+($list['qty']*$list['price']);
?>
<tr>
<td><?php echo $list['dish']?></td>
<td><?php echo $list['attribute']?></td>
<td><?php echo $list['price']?></td>
<td><?php echo $list['qty']?></td>
<td><?php echo $list['qty']*$list['price']?></td>
<td id="rating<?php echo $list['dish_details_id']?>">
<?php
if($getOrderById[0]['order_status']==4){
echo getRating($list['dish_details_id'],$id);
}
?>
</td>
</tr>
<?php
}
?>
<tr>
<td colspan="3"></td>
<td><strong>Total</strong></td>
<td><strong><?php echo $pp?></strong></td>
<td></td>
</tr>
<?php
if($getOrderById[0]['coupon_code']!=''){
?>
<tr>
<td colspan="3"></td>
<td><strong>Coupon Code</strong></td>
<td><strong><?php echo $getOrderById[0]['coupon_code']?></strong></td>
<td></td>
</tr>
<tr>
<td colspan="3"></td>
<td><strong>Final Total</strong></td>
<td><strong><?php echo $getOrderById[0]['final_price']?></strong></td>
<td></td>
</tr>
<?php
}
?>
</table>
</div>
</form>
</div>
</div>
</div>
</div>
<?php
include("footer.php");
?>