Subversion Repositories SmartDukaan

Rev

Rev 28339 | Rev 28377 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28339 Rev 28344
Line 26... Line 26...
26
 
26
 
27
<section class="wrapper">
27
<section class="wrapper">
28
	<div class="row">
28
	<div class="row">
29
		<div class="col-lg-12">
29
		<div class="col-lg-12">
30
			<h3 class="page-header">
30
			<h3 class="page-header">
31
				<i class="icon_document_alt"></i>CLAIMED ORDER
31
				<i class="icon_document_alt"></i>Pending Claim
32
			</h3>
32
			</h3>
33
			<ol class="breadcrumb">
33
			<ol class="breadcrumb">
34
				<li><i class="fa fa-home"></i><a
34
				<li><i class="fa fa-home"></i><a
35
					href="${rc.contextPath}/dashboard">Home</a></li>
35
					href="${rc.contextPath}/dashboard">Home</a></li>
36
				<li><i class="icon_document_alt"></i>CLAIMED ORDER</li>
36
				<li><i class="icon_document_alt"></i>Pending Claim</li>
37
			</ol>
37
			</ol>
38
		</div>
38
		</div>
39
	</div>
39
	</div>
40
 
40
 
41
 
41
 
Line 52... Line 52...
52
					<th>Order Status</th> #if($customRetailersMap)
52
					<th>Order Status</th> #if($customRetailersMap)
53
					<th>Partner</th> #end
53
					<th>Partner</th> #end
54
					<th>Pay Mode</th>
54
					<th>Pay Mode</th>
55
					<th>Pay Method</th>
55
					<th>Pay Method</th>
56
 
56
 
57
					<th>Order ItemId</th>
57
					<th>Order Item Id</th>
58
					<th>Item Id</th>
58
					<th>Item Id</th>
59
					<th>item details</th>
59
					<th>Item Details</th>
60
					<th>Selling Price</th>
60
					<th>Selling Price</th>
61
					<th>Order Item Status</th>
61
					<th>Order Item Status</th>
62
					<th>Created on</th>
62
					<th>Created on</th>
-
 
63
					<th>Billed on</th>
-
 
64
					<th>Delivered on</th>
-
 
65
					<th>Claimed on</th>
63
				</tr>
66
				</tr>
64
			</thead>
67
			</thead>
65
			<tbody>
68
			<tbody>
66
				#if(!$pendingOrder.isEmpty()) #foreach( $request in
69
				#if(!$pendingOrder.isEmpty()) #foreach( $request in
67
				$pendingOrderItem)
70
				$pendingOrderItem)
Line 75... Line 78...
75
					#if($customRetailersMap.get($request.getPendingOrder().getFofoId()))
78
					#if($customRetailersMap.get($request.getPendingOrder().getFofoId()))
76
					<td>$customRetailersMap.get($request.getPendingOrder().getFofoId()).getBusinessName()</td>
79
					<td>$customRetailersMap.get($request.getPendingOrder().getFofoId()).getBusinessName()</td>
77
					#else
80
					#else
78
					<td></td> #end #end
81
					<td></td> #end #end
79
 
82
 
80
					<td>$request.getPendingOrder().getPayMethod()</td>
83
					<td>$request.getPendingOrder().getPayMethodDescription()</td>
81
					#if($request.getPendingOrder().getTotalAmount() ==
84
					#if($request.getPendingOrder().getTotalAmount() ==
82
					$request.getPendingOrder().getPaidAmount())
85
					$request.getPendingOrder().getPaidAmount())
83
					<td>ONLINE</td> #else
86
					<td>ONLINE</td> #else
84
					<td>OFFLINE</td> #end
87
					<td>OFFLINE</td> #end
85
					<td>$request.getId()</td>
88
					<td>$request.getId()</td>
86
					<td>$request.getItemId()</td>
89
					<td>$request.getItemId()</td>
87
					<td>$request.getItemName()</td>
90
					<td>$request.getItemName()</td>
88
					<td>$request.getSellingPrice()</td>
91
					<td>$request.getSellingPrice()</td>
89
					<td>$request.getStatus()</td>
92
					<td>$request.getStatus()</td>
90
					<td>$request.getCreateTimestamp().format($dateTimeFormatter)</td>
93
					<td>$request.getCreateTimestamp().format($dateTimeFormatter)</td>
-
 
94
					<td>$request.getBilledTimestamp().format($dateTimeFormatter)</td>
-
 
95
					<td>$request.getDeliveredTimestamp().format($dateTimeFormatter)</td>
-
 
96
					<td>$request.getClaimedTimestamp().format($dateTimeFormatter)</td>
91
 
97
 
92
				</tr>
98
				</tr>
93
				#end
99
				#end
94
				<script type="text/javascript">
100
				<script type="text/javascript">
95
					$(document).ready(function() {
101
					$(document).ready(function() {