Subversion Repositories SmartDukaan

Rev

Rev 26663 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26647 tejbeer 1
<style>
2
.row{
3
	margin:0 auto;
4
}
5
.modal-content{
6
		background : white;
7
	}
8
	.modelHeaderCustom{
9
		font-size:14px;
10
		font-weight:bold;
11
	}
12
	.border-highlight{
13
		border : 3px solid red;
14
	}
15
	hr{
16
		background-color:#007aff;
17
		border:none;
18
		height:1px;
19
		background:#007aff;
20
	}
21
 
22
	.table-striped > tbody > tr:nth-child(odd) > td{
23
  		background: #f2f2f2;
24
  		background-color: #f2f2f2;
25
	}
26
	.table-striped > tbody > tr:nth-child(even) > td{
27
  		background:  #f2f2f2;
28
  		background-color: #f2f2f2;
29
	}
30
	.control-label {
31
		margin-top: 0;
32
    	margin-bottom: 0;
33
    	padding-top: 7px;
34
    	font-weight:bold;
35
    	font-size:14px;
36
	}
37
	.form-group{
38
		border-bottom: 1px solid #eff2f7;
39
    	padding-bottom: 15px;
40
    	margin-bottom: 15px;
41
	}
42
	.right{
43
		float:right;
44
	}
45
	.form-control{
46
		color:black;
47
		text-transform:uppercase;
48
	}
49
.table-align-center{
50
	text-align:center;
51
}
52
 
53
</style>
54
 
55
<section class="wrapper">
56
	<div class="row">
57
		<div class="col-lg-12">
58
			<h3 class="page-header"><i class="icon_document_alt"></i>FOfo Pending Order</h3>
59
			<ol class="breadcrumb">
60
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
61
				<li><i class="icon_document_alt"></i>Pending Order</li>						  	
62
			</ol>
63
		</div>
64
	</div>	
65
 
66
 
67
 
68
	<div id="pending-order-table">
69
		<div class="row">
70
	    	<div class="col-lg-4">
71
	    		<table class="table table-striped table-advance table-hover">
72
	    			<tbody>
73
	    				<tr>
74
	    					<th>Id</th>
75
	    					<th>First Name</th>
76
	    					<th>Last Name</th>
77
	    					<th>Mobile</th>
78
	    					<th>Status</th>
79
	    					#if($customRetailersMap)
80
	    					<th>Partner</th>
81
	    					#end
82
	    					<th>created on </th>
83
	    					<th>Action</th>
84
	    				</tr>
85
	    					#if(!$pendingOrder.isEmpty())
86
			    			#foreach( $request in $pendingOrder )
87
			    				<tr class="pendingOrder" data="$request.getId()">
88
			    					<td>$request.getId()</td>
89
			    					<td>$request.getCustomerFirstName()</td>
90
			    					<td>$request.getCustomerLastName()</td>
91
			    					<td>$request.getMobileNumber()</td>
92
			    					<td>$request.getStatus()</td>
93
			    					#if($customRetailersMap)
94
			    					<td>$customRetailersMap.get($request.getFofoId()).getBusinessName()</td>
95
			    					#end
96
			    				    <td>$request.getCreateTimestamp().format($dateTimeFormatter)</td>
97
			    				    <td><button class="btn btn-primary pendingOrderDetail"  data-orderid="$request.getId()"  data-gst="$request.getCustomerGstNumber()"  data-emailid="$request.getEmailId()" data-line1="$request.getLine1()"  
98
			    				    data-line2="$request.getLine2()"  data-city="$request.getCity()" data-state="$request.getState()"
99
			    				    data-pincode="$request.getPinCode()"
100
			    				     type="button" style="width:100%; border-radius:0px;">Action</button>
101
								     </td>
102
 
103
			    	   #end
104
		    			#else
105
		    				<tr>
106
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
107
		    				</tr>
108
		    			#end
109
	    			</tbody>
110
	    		</table>
111
	    	</div>
112
 
113
	    	<div class="col-lg-6"  style="float:right";>
114
	    	  <div class="pending-order-container">
115
 
116
              </div>
117
	    	</div>
118
	    </div>
119
    </div>
120
    </section>