| 30164 |
manish |
1 |
<section class="wrapper">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-12">
|
|
|
4 |
<h3 class="page-header"><i class="icon_document_alt"></i>ORDER STATUS SUMMARY REPORT</h3>
|
|
|
5 |
<ol class="breadcrumb">
|
|
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
7 |
<li><i class="icon_document_alt"></i>Order Status Summary Report</li>
|
|
|
8 |
</ol>
|
|
|
9 |
</div>
|
|
|
10 |
</div>
|
|
|
11 |
<div class="row col-lg-12" style="float: right;">
|
|
|
12 |
|
|
|
13 |
<button type="submit" class="download-pending-indent-report">Download Report </button>
|
|
|
14 |
</div>
|
|
|
15 |
|
|
|
16 |
<div class="col-lg-12">
|
|
|
17 |
<table class="table table-border table-condensed table-bordered" id="pendingIndentReport" style="width:100%">
|
|
|
18 |
|
|
|
19 |
<thead class="row htable" style="background:#F5F5F5;">
|
|
|
20 |
|
|
|
21 |
<tr style="color:black;">
|
|
|
22 |
<th>Transaction Id</th>
|
|
|
23 |
<th> Order Id</th>
|
|
|
24 |
<th>Created_At</th>
|
|
|
25 |
<th>Item_Id</th>
|
|
|
26 |
<th> Brand</th>
|
|
|
27 |
<th> Model Name</th>
|
|
|
28 |
<th>Model Number</th>
|
|
|
29 |
<th>Color</th>
|
|
|
30 |
<th> Quantity</th>
|
|
|
31 |
<th>Unit Price</th>
|
|
|
32 |
<th> Wallet Deduction</th>
|
|
|
33 |
<th>Status </th>
|
|
|
34 |
<th>Invoice Number</th>
|
|
|
35 |
<th>Billing Timestamp</th>
|
|
|
36 |
</tr>
|
|
|
37 |
</thead>
|
|
|
38 |
<tbody>
|
|
|
39 |
#foreach($pendingIndentReport in $pendingIndentReports )
|
|
|
40 |
<tr>
|
|
|
41 |
<td>$pendingIndentReport.getTransactionId()</td>
|
|
|
42 |
<td>$pendingIndentReport.getOrderId()</td>
|
|
|
43 |
|
|
|
44 |
#if($pendingIndentReport.getCreatTimestamp())
|
|
|
45 |
<td>$pendingIndentReport.getCreatTimestamp()</td>
|
|
|
46 |
#else
|
|
|
47 |
<td>--</td>
|
|
|
48 |
#end
|
|
|
49 |
|
|
|
50 |
<td>$pendingIndentReport.getItemId()</td>
|
|
|
51 |
<td>$pendingIndentReport.getBrand()</td>
|
|
|
52 |
#if($pendingIndentReport.getModelName())
|
|
|
53 |
<td>$pendingIndentReport.getModelName()</td>
|
|
|
54 |
#else
|
|
|
55 |
<td>-- </td>
|
|
|
56 |
#end
|
|
|
57 |
<td>$pendingIndentReport.getModelNumber()</td>
|
|
|
58 |
<td>$pendingIndentReport.getColor()</td>
|
|
|
59 |
|
|
|
60 |
<td>$pendingIndentReport.getQuantity()</td>
|
|
|
61 |
<td>$pendingIndentReport.getUnitPrice()</td>
|
|
|
62 |
<td>$pendingIndentReport.getWalletAmount()</td>
|
|
|
63 |
<td>$pendingIndentReport.getStatus()</td>
|
|
|
64 |
|
|
|
65 |
#if($pendingIndentReport.getInvoiceNumber())
|
|
|
66 |
<td>$pendingIndentReport.getInvoiceNumber()</td>
|
|
|
67 |
#else
|
|
|
68 |
<td>-- </td>
|
|
|
69 |
#end
|
|
|
70 |
#if($pendingIndentReport.getBillingTimestamp())
|
|
|
71 |
<td>$pendingIndentReport.getBillingTimestamp()</td>
|
|
|
72 |
#else
|
|
|
73 |
<td>-- </td>
|
|
|
74 |
#end
|
|
|
75 |
|
|
|
76 |
</tr>
|
|
|
77 |
#end
|
|
|
78 |
|
|
|
79 |
</tbody>
|
|
|
80 |
|
|
|
81 |
</table>
|
|
|
82 |
</div>
|
|
|
83 |
|
|
|
84 |
</section>
|
|
|
85 |
|
|
|
86 |
|
|
|
87 |
|
|
|
88 |
<script>
|
|
|
89 |
|
|
|
90 |
var dtable = $('#pendingIndentReport').DataTable(
|
|
|
91 |
{
|
|
|
92 |
"scrollX": true,
|
|
|
93 |
"bPaginate": true,
|
|
|
94 |
"bLengthChange": true,
|
|
|
95 |
"bFilter": true,
|
|
|
96 |
"bInfo": false,
|
|
|
97 |
"bAutoWidth": false,
|
|
|
98 |
|
|
|
99 |
|
|
|
100 |
});
|
|
|
101 |
|
|
|
102 |
|
|
|
103 |
|
|
|
104 |
</script>
|
|
|
105 |
|