Subversion Repositories SmartDukaan

Rev

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

Rev 24534 Rev 24569
Line 17... Line 17...
17
	border-radius: 12px 15px 15px 0;
17
	border-radius: 12px 15px 15px 0;
18
	font-size: 14px;
18
	font-size: 14px;
19
	margin: 0;
19
	margin: 0;
20
	color: black;
20
	color: black;
21
	padding: 5px 10px 5px 12px;
21
	padding: 5px 10px 5px 12px;
-
 
22
	word-break: break-all;
22
	width: 100%;
23
	width: 100%;
23
}
24
}
24
 
25
 
25
.outgoing_msg {
26
.outgoing_msg {
26
	overflow: hidden;
27
	overflow: hidden;
Line 43... Line 44...
43
	border-radius: 0 15px 15px 15px;
44
	border-radius: 0 15px 15px 15px;
44
	color: #646464;
45
	color: #646464;
45
	font-size: 14px;
46
	font-size: 14px;
46
	margin: 0;
47
	margin: 0;
47
	padding: 5px 10px 5px 12px;
48
	padding: 5px 10px 5px 12px;
-
 
49
	word-break: break-all;
48
	width: 100%;
50
	width: 100%;
49
}
51
}
50
 
52
 
51
.time_date {
53
.time_date {
52
	color: black;
54
	color: black;
Line 100... Line 102...
100
		<div class="row">
102
		<div class="row">
101
	    	<div class="col-lg-12">
103
	    	<div class="col-lg-12">
102
	    		<table class="table table-bordered">
104
	    		<table class="table table-bordered">
103
	    			<tbody>
105
	    			<tbody>
104
	    				<tr>
106
	    				<tr>
-
 
107
	    					<th>Ticket Id</th>
105
	    					#if($roleType)
108
	    					#if($roleType)
106
	    					<th>Partner</th>
109
	    					<th>Partner</th>
107
	    					#end
110
	    					#end
108
	    					<th>SubCategory</th>
111
	    					<th>SubCategory</th>
109
	    					<th>Created TimeStamp</th>
112
	    					<th>Created TimeStamp</th>
Line 112... Line 115...
112
	    					#else
115
	    					#else
113
	    					<th>HappyCode</th>
116
	    					<th>HappyCode</th>
114
	    					<th>Status</th>
117
	    					<th>Status</th>
115
	    					#end
118
	    					#end
116
	    				</tr>
119
	    				</tr>
117
	    				#if(!$tickets.isEmpty())
120
	    				#if($tickets.size()>0)
118
	 							#foreach($ticket in $tickets)
121
	 							#foreach($ticket in $tickets)
119
	 							<tr>
122
	 							<tr>
-
 
123
	 							<td>$ticket.getId()</td>
120
	 							#if($roleType)
124
	 							#if($roleType)
121
	 							<td>$fofoIdsAndCustomRetailer.get($ticket.getFofoId()).getBusinessName()</td>
125
	 							<td>$fofoIdsAndCustomRetailer.get($ticket.getFofoId()).getBusinessName()</td>
122
	    						#end
126
	    						#end
123
			    				<td><a href="#" data-toggle="modal" data-target="#myModal" data-ticketid="$ticket.getId()" id="activities" data-assignee="$authUserIdAndAuthUserMap.get($ticket.getId()).getFirstName()">$subCategoryIdAndSubCategoryMap.get($ticket.getSubCategoryId()).getName()</a></td>
127
			    				<td><a href="#" data-toggle="modal" data-target="#myModal" data-ticketid="$ticket.getId()" id="activities" data-assignee="$authUserIdAndAuthUserMap.get($ticket.getId()).getFirstName()">$subCategoryIdAndSubCategoryMap.get($ticket.getSubCategoryId()).getName()</a></td>
124
			    					<td>$ticket.getFormattedCreateTimestamp()</td>
128
			    					<td>$ticket.getFormattedCreateTimestamp()</td>
Line 140... Line 144...
140
			    				</tr>
144
			    				</tr>
141
			    				#end
145
			    				#end
142
			    				#else
146
			    				#else
143
			    				<tr>
147
			    				<tr>
144
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
148
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
145
		    				</tr>
149
		    					</tr>
146
			    				#end
150
			    				#end
147
	    			</tbody>
151
	    			</tbody>
148
	    		</table>
152
	    		</table>
149
	    	</div>
153
	    	</div>
150
	    </div>
154
	    </div>