| Line 29... |
Line 29... |
| 29 |
<div class="row orderdetails">
|
29 |
<div class="row orderdetails">
|
| 30 |
<div class="col-xs-6 cashback">Cashback : <span class="rupee"></span><span class="product_price"><?php echo $suborder['cashBackAmount'];?></span>
|
30 |
<div class="col-xs-6 cashback">Cashback : <span class="rupee"></span><span class="product_price"><?php echo $suborder['cashBackAmount'];?></span>
|
| 31 |
</div>
|
31 |
</div>
|
| 32 |
<div class="col-xs-6">(<?php echo $suborder['cashBackStatus'];?>)</div>
|
32 |
<div class="col-xs-6">(<?php echo $suborder['cashBackStatus'];?>)</div>
|
| 33 |
</div>
|
33 |
</div>
|
| 34 |
<?php endif;?>
|
- |
|
| 35 |
<?php if(!empty($suborder['estimatedShippingDate'])):?>
|
- |
|
| 36 |
<div class="row orderdetails">
|
- |
|
| 37 |
<div class="col-xs-6">Delivery by</div>
|
- |
|
| 38 |
<div class="col-xs-6"><?php echo formatOrderDate($suborder['estimatedShippingDate'],$suborder['storeId'],'edd');?></div>
|
- |
|
| 39 |
</div>
|
- |
|
| 40 |
<?php elseif(!empty($suborder['estimatedDeliveryDate'])):?>
|
- |
|
| 41 |
<div class="row orderdetails">
|
- |
|
| 42 |
<div class="col-xs-6">Delivery by</div>
|
- |
|
| 43 |
<div class="col-xs-6"><?php echo formatOrderDate($suborder['estimatedDeliveryDate'],$suborder['storeId'],'edd');?></div>
|
- |
|
| 44 |
</div>
|
- |
|
| 45 |
<?php endif;?>
|
34 |
<?php endif;?>
|
| - |
|
35 |
<?php if($suborder['detailedStatus']!='Cancelled' && $suborder['detailedStatus']!='Delivered'):?>
|
| - |
|
36 |
<?php if(!empty($suborder['estimatedShippingDate'])):?>
|
| - |
|
37 |
<div class="row orderdetails">
|
| - |
|
38 |
<div class="col-xs-6">Delivery by</div>
|
| - |
|
39 |
<div class="col-xs-6"><?php echo formatOrderDate($suborder['estimatedShippingDate'],$suborder['storeId'],'edd');?></div>
|
| - |
|
40 |
</div>
|
| - |
|
41 |
<?php elseif(!empty($suborder['estimatedDeliveryDate'])):?>
|
| - |
|
42 |
<div class="row orderdetails">
|
| - |
|
43 |
<div class="col-xs-6">Delivery by</div>
|
| - |
|
44 |
<div class="col-xs-6"><?php echo formatOrderDate($suborder['estimatedDeliveryDate'],$suborder['storeId'],'edd');?></div>
|
| - |
|
45 |
</div>
|
| - |
|
46 |
<?php endif;?>
|
| - |
|
47 |
<?php endif;?>
|
| 46 |
<div class="row">
|
48 |
<div class="row">
|
| 47 |
<div class="col-xs-6 ordercontrols">
|
49 |
<div class="col-xs-12 ordercontrols">
|
| 48 |
<?php if(!empty($suborder['detailedStatus'])):?>
|
50 |
<?php if(!empty($suborder['detailedStatus'])):?>
|
| 49 |
<span class="label label-info"><?php echo $suborder['detailedStatus'];?></span>
|
51 |
<span class="label label-info"><?php echo $suborder['detailedStatus'];?></span>
|
| 50 |
<?php endif;?>
|
52 |
<?php endif;?>
|
| 51 |
</div>
|
53 |
</div>
|
| 52 |
<div class="col-xs-6 pull-right ordercontrols">
|
54 |
<div class="col-xs-12 ordercontrols">
|
| 53 |
<?php if(!empty($suborder['tracingkUrl'])):?>
|
55 |
<?php if(!empty($suborder['trackingUrl'])):?>
|
| 54 |
<a href="<?php echo $suborder['tracingkUrl'];?>"><button class="pull-right btn btn-sm trackingurl" type="button">Track My Order</button></a>
|
56 |
<a href="<?php echo $suborder['trackingUrl'];?>"><button class="btn btn-xs trackingurl" type="button">Track My Order</button></a>
|
| - |
|
57 |
<?php elseif(!empty($suborder['orderSuccessUrl']) && $suborder['detailedStatus']!='Cancelled'):?>
|
| - |
|
58 |
<a href="<?php echo $suborder['orderSuccessUrl'];?>"><button class="btn btn-xs trackingurl" type="button">Order Details</button></a>
|
| 55 |
<?php endif;?>
|
59 |
<?php endif;?>
|
| 56 |
</div>
|
60 |
</div>
|
| 57 |
</div>
|
61 |
</div>
|
| 58 |
</div>
|
62 |
</div>
|
| 59 |
</div>
|
63 |
</div>
|
| 60 |
|
64 |
|