Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
28109 tejbeer 1
<style>
2
.table-striped>tbody>tr:nth-child(odd)>td {
3
	background: white;
4
	background-color: white;
5
}
6
 
7
.table-striped>tbody>tr:nth-child(even)>td {
8
	background: white;
9
	background-color: white;
10
}
11
 
12
.table-striped>tbody>tr:hover>td, .table-striped>tbody>tr:hover {
13
	background-color: #e98c8f;
14
	color: white;
15
}
16
 
17
.btn:hover {
18
	color: grey;
19
	text-decoration: none;
20
}
21
 
22
.btn-primary:hover {
23
	color: grey;
24
	text-decoration: none;
25
}
26
 
27
.add-to-bag {
28
	cursor: pointer;
29
}
30
 
31
modal-dialog.modal-lg {
32
	left: 10%;
33
	right: auto;
34
	width: 80%;
35
}
36
 
37
.modal-content {
38
	background: white;
39
}
40
 
41
.modelHeaderCustom {
42
	font-size: 14px;
43
	font-weight: bold;
44
}
45
 
46
hr {
47
	background-color: #007aff;
48
	border: none;
49
	height: 1px;
50
	background: #007aff;
51
}
52
 
53
tr.selected {
54
	background-color: #B0BED9
55
}
56
</style>
57
 
58
<script>
59
 
60
</script>
61
<section class="wrapper">
62
	<div class="row">
63
		<div class="col-lg-12">
64
			<h3 class="page-header">
65
				<i class="icon_genius"></i>PAYMENT PENDING ORDER
66
			</h3>
67
			<ol class="breadcrumb">
68
				<li><i class="fa fa-home"></i><a
69
					href="${rc.contextPath}/dashboard">Home</a></li>
70
				<li><i class="icon_genius"></i>Payment Pending Order</li>
71
			</ol>
72
		</div>
73
	</div>
74
 
75
 
76
	<div class="row">
77
 
78
		<div class="col-lg-12" id="catalog-container">
79
			<table class="table table-border table-condensed table-bordered"
80
				id="pending-payment-order-table">
81
				<thead>
82
					<tr>
83
						<th>Item Id</th>
84
						<th>OrderId</th>
85
						<th>Description</th>
86
						<th>Transaction Id</th>
87
						<th>Customer Name</th>
88
						<th>Mobile</th>
89
						<th>Amount</th>
90
						<th>Quantity</th>
91
						<th>Created Timestamp</th>
92
 
93
					</tr>
94
 
95
				</thead>
96
				<tbody>
97
 
98
					#if(!$pendingPaymentorder.isEmpty()) #foreach($pendingorderDetail
99
					in $pendingPaymentorder )
100
					#if(!($pendingorderDetail.getRefundTimestamp()) &&
101
					$pendingorderDetail.getWalletAmount()>0)
102
					<tr>
103
 
104
						<td>$pendingorderDetail.getLineItem().getItemId()</td>
105
						<td>$pendingorderDetail.getId()</td>
106
						<td>$pendingorderDetail.getLineItem().getItem().getItemDescription()</td>
107
						<td>$pendingorderDetail.getTransactionId()</td>
108
						<td>$pendingorderDetail.getRetailerName()</td>
109
						<td>$pendingorderDetail.getRetailerMobileNumber()</td>
110
						<td>$pendingorderDetail.getTotalAmount()</td>
111
						<td>$pendingorderDetail.getLineItem().getQuantity()</td>
112
						<td>$pendingorderDetail.getCreateTimestamp().format($dateTimeFormatter)</td>
113
 
114
 
115
 
116
					</tr>
117
					#end #end #end
118
				</tbody>
119
			</table>
120
		</div>
121
	</div>
122
 
123
 
124
</section>
125
 
126
<script type="text/javascript">
127
	var editor;
128
 
129
	$(document).ready(function() {
130
 
131
		$('#pending-payment-order-table').DataTable({
132
			"bPaginate" : true,
133
			"bLengthChange" : true,
134
			"bFilter" : true,
135
			"bInfo" : false,
136
			"bAutoWidth" : false
137
		});
138
	});
139
</script>
140
 
141