Subversion Repositories SmartDukaan

Rev

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

Rev 26647 Rev 26663
Line 1... Line 1...
1
<style>
1
<style>
2
.row{
-
 
3
	margin:0 auto;
2
.btn:hover,
4
}
-
 
5
.modal-content{
3
.btn:focus {
6
		background : white;
4
  	color: grey;
7
	}
-
 
8
	.modelHeaderCustom{
-
 
9
		font-size:14px;
-
 
10
		font-weight:bold;
5
  	text-decoration: none;
11
	}
6
	}
-
 
7
 
12
	.border-highlight{
8
	.modal-dialog.modal-lg{
-
 
9
		left:10%;
13
		border : 3px solid red;
10
		right:auto;
-
 
11
		width:80%;
14
	}
12
	}
15
	hr{
-
 
16
		background-color:#007aff;
-
 
17
		border:none;
13
	.modal-content{
18
		height:1px;
-
 
19
		background:#007aff;
14
		background : white;
20
	}
15
	}
21
	
16
	
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{
17
	.border-highlight{
38
		border-bottom: 1px solid #eff2f7;
18
		border : 3px solid red;
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
	}
19
	}
49
.table-align-center{
20
	td.highlight{
50
	text-align:center;
21
		background-color: yellowgreen !important;
51
}
22
	}	
52
 
-
 
53
</style>
23
</style>
54
 
24
 
-
 
25
 
55
<section class="wrapper">
26
<section class="wrapper">
56
	<div class="row">
27
	<div class="row">
57
		<div class="col-lg-12">
28
		<div class="col-lg-12">
58
			<h3 class="page-header"><i class="icon_document_alt"></i>FOfo Pending Order</h3>
29
			<h3 class="page-header"><i class="icon_document_alt"></i>FOfo Pending Order</h3>
59
			<ol class="breadcrumb">
30
			<ol class="breadcrumb">
Line 66... Line 37...
66
	
37
	
67
	
38
	
68
	<div id="pending-order-table">
39
	<div id="pending-order-table">
69
		<div class="row">
40
		<div class="row">
70
	    	<div class="col-lg-4">
41
	    	<div class="col-lg-4">
71
	    		<table class="table table-striped table-advance table-hover">
42
	    		<table class="table table-border table-condensed table-bordered" id="pending-order">
72
	    			<tbody>
43
	    		     <thead>
73
	    				<tr>
44
	    				<tr>
74
	    					<th>Id</th>
45
	    					<th>Id</th>
75
	    					<th>First Name</th>
46
	    					<th>First Name</th>
76
	    					<th>Last Name</th>
47
	    					<th>Last Name</th>
77
	    					<th>Mobile</th>
48
	    					<th>Mobile</th>
Line 80... Line 51...
80
	    					<th>Partner</th>
51
	    					<th>Partner</th>
81
	    					#end
52
	    					#end
82
	    					<th>created on </th>
53
	    					<th>created on </th>
83
	    					<th>Action</th>
54
	    					<th>Action</th>
84
	    				</tr>
55
	    				</tr>
-
 
56
	    				</thead>
-
 
57
	    					<tbody>
85
	    					#if(!$pendingOrder.isEmpty())
58
	    					#if(!$pendingOrder.isEmpty())
86
			    			#foreach( $request in $pendingOrder )
59
			    			#foreach( $request in $pendingOrder )
87
			    				<tr class="pendingOrder" data="$request.getId()">
60
			    				<tr class="pendingOrder" data="$request.getId()">
88
			    					<td>$request.getId()</td>
61
			    					<td>$request.getId()</td>
89
			    					<td>$request.getCustomerFirstName()</td>
62
			    					<td>$request.getCustomerFirstName()</td>
Line 115... Line 88...
115
 
88
 
116
              </div>
89
              </div>
117
	    	</div>
90
	    	</div>
118
	    </div>
91
	    </div>
119
    </div>
92
    </div>
120
    </section>
-
 
121
93
    </section>
-
 
94
    
-
 
95
    
-
 
96
<script type="text/javascript">
-
 
97
   $(document).ready(function() {
-
 
98
 	$('#pending-order').dataTable({
-
 
99
	 "bPaginate": true,
-
 
100
    "bLengthChange": true,
-
 
101
    "bFilter": true,
-
 
102
    "bInfo": false,
-
 
103
    "bAutoWidth": false 
-
 
104
		});
-
 
105
 });
-
 
106
	
-
 
107
	</script>
-
 
108
122
109