Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
24917 tejbeer 1
<style>
2
	.table-striped > tbody > tr:nth-child(odd) > td{
3
  background: white;
4
  background-color: white;
5
}
6
.table-striped > tbody > tr:nth-child(even) > td{
7
  background: white;
8
  background-color:white;
9
}
10
.table-striped > tbody > tr:hover > td,
11
	.table-striped > tbody > tr:hover {
12
	  background-color: #e98c8f;
13
	  color:white;
14
	}
15
	.btn:hover{
16
  	color: grey;
17
  	text-decoration: none;
18
	}
19
	.btn-primary:hover{
20
  	color: grey;
21
  	text-decoration: none;
22
	}
23
	.add-to-bag{
24
		cursor:pointer;
25
	}
26
	modal-dialog.modal-lg{
27
		left:10%;
28
		right:auto;
29
		width:80%;
30
	}
31
	.modal-content{
32
		background : white;
33
	}
34
	.modelHeaderCustom{
35
		font-size:14px;
36
		font-weight:bold;
37
	}
38
	hr{
39
		background-color:#007aff;
40
		border:none;
41
		height:1px;
42
		background:#007aff;
43
	}
44
	tr.selected{background-color:#B0BED9}
45
</style>
46
<section class="wrapper">
47
	<div class="row">
48
		<div class="col-lg-12">
49
			<h3 class="page-header"><i class="icon_genius"></i>	NOTIFY ORDER</h3>
50
			<ol class="breadcrumb">
51
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
52
				<li><i class="icon_genius"></i>Notify Order</li>
53
			</ol>
54
		</div>
55
	</div>
56
 
57
 
58
 <div class="row">
59
	<h4 class="modelHeaderCustom" style="font-size:22px;">Notify Order</h4>
60
	    		<div class="col-lg-12" id="catalog-container">
61
	    			<table class="table table-border table-condensed table-bordered" id="notify-order-status-table">
62
		    			<thead>
63
				            <tr>
64
 
65
	    						<th>OrderId</th>
66
	    						<th>Old ItemDescription</th>
67
	    						<th>Customer Name </th>
68
	    						<th>Status</td>
69
	    						<th>Created Timestamp </th>
70
	    					</tr>
71
 
72
				        </thead>
73
	    				<tbody>
74
 
75
	    				#if(!$notifyOrders.isEmpty())
76
		    					 #foreach($taborder in $notifyOrders)
77
		    					 	<tr>
78
 
79
 
80
		    					       	<td>$taborder.getOrderId()</td>
81
		    					 		<td>$itemdescription.get($taborder.getItemId())</td>
82
		    					 		<td>$fofoIdsAndRetailerName.get($taborder.getFofoId()).getBusinessName()</td>	
83
                                         <td>$taborder.getStatus()</td>	
84
                                        <td>$notifyIdNotifyColorMap.get($taborder.getNotifyId()).getCreated().format($dateTimeFormatter)</td>
85
 
86
 
87
 
88
 
89
 
90
	    					</tr>
91
	    					#end
92
	    					#end
93
	    				</tbody>
94
	    			</table>
95
	    		</div>
96
	    		</div>
97
 
98
	    	</section>	
99
 
100
 
101
 <script type="text/javascript">
102
  $(document).ready(function() { 
103
 var dtable =  $('#notify-order-status-table').DataTable(
104
  {
105
 
106
    "bPaginate": true,
107
    "bLengthChange": true,
108
    "bFilter": true,
109
    "bInfo": false,
110
    "bAutoWidth": false ,
111
 
112
    }
113
 
114
  );
115
  });
116
  </script>