Subversion Repositories SmartDukaan

Rev

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

Rev 28415 Rev 32766
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>Fofo Billed Order
31
				<i class="icon_document_alt"></i>#springMessage("onlineorderbilled.fofobilledorder")
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">#springMessage("onlineorderbilled.home")</a></li>
36
				<li><i class="icon_document_alt"></i>Billed Order</li>
36
				<li><i class="icon_document_alt"></i>#springMessage("onlineorderbilled.billedorder")</li>
37
			</ol>
37
			</ol>
38
		</div>
38
		</div>
39
	</div>
39
	</div>
40
 
40
 
41
	<div class="col-lg-12">
41
	<div class="col-lg-12">
42
 
42
 
43
		<table class="table table-border table-condensed table-bordered"
43
		<table class="table table-border table-condensed table-bordered"
44
			id="pending-order-item">
44
			id="pending-order-item">
45
			<thead>
45
			<thead>
46
				<tr>
46
				<tr>
47
					<th>OrderId</th>
47
					<th>#springMessage("onlineorderbilled.orderid")</th>
48
					<th>First Name</th>
48
					<th>#springMessage("onlineorderbilled.firstname")</th>
49
					<th>Last Name</th>
49
					<th>#springMessage("onlineorderbilled.lastname")</th>
50
					<th>Mobile</th>
50
					<th>#springMessage("onlineorderbilled.mobile")</th>
51
					<th>Order Status</th>
51
					<th>#springMessage("onlineorderbilled.orderstatus")</th>
52
					<th>Pay Method</th>
52
					<th>#springMessage("onlineorderbilled.paymethod")</th>
53
					<th>Pay Mode</th>
53
					<th>#springMessage("onlineorderbilled.paymode")</th>
54
					<th>Order Item Id</th>
54
					<th>#springMessage("onlineorderbilled.orderitemid")</th>
55
					<th>Item Id</th>
55
					<th>#springMessage("onlineorderbilled.itemid")</th>
56
					<th>Item Details</th>
56
					<th>#springMessage("onlineorderbilled.itemdetails")</th>
57
					<th>Selling Price</th>
57
					<th>#springMessage("onlineorderbilled.sellingprice")</th>
58
					<th>Order Item Status</th>
58
					<th>#springMessage("onlineorderbilled.orderitemstatus")</th>
59
					<th>Created on</th>
59
					<th>#springMessage("onlineorderbilled.createdon")</th>
60
					<th>Billed on</th>
60
					<th>#springMessage("onlineorderbilled.billedon")</th>
61
					<th>Actions</th>
61
					<th>#springMessage("onlineorderbilled.actions")</th>
62
				</tr>
62
				</tr>
63
			</thead>
63
			</thead>
64
			<tbody>
64
			<tbody>
65
				#if(!$pendingOrderItem.isEmpty()) #foreach( $request in
65
				#if(!$pendingOrderItem.isEmpty()) #foreach( $request in
66
				$pendingOrderItem)
66
				$pendingOrderItem)
Line 107... Line 107...
107
						});
107
						});
108
					});
108
					});
109
				</script>
109
				</script>
110
				#else
110
				#else
111
				<tr>
111
				<tr>
112
					<td colspan="12" style="text-align: center;">NO MATCHING DATA
112
					<td colspan="12" style="text-align: center;">#springMessage("onlineorderbilled.nodataavailableintable")</td>
113
						FOUND FOR CRITERIA</td>
-
 
114
				</tr>
113
				</tr>
115
				#end
114
				#end
116
			</tbody>
115
			</tbody>
117
		</table>
116
		</table>
118
	</div>
117
	</div>