Subversion Repositories SmartDukaan

Rev

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

Rev 24530 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 88... Line 90...
88
	<div class="row">
90
	<div class="row">
89
		<div class="col-lg-12">
91
		<div class="col-lg-12">
90
			<h3 class="page-header"><i class="icon_document_alt"></i>TICKET</h3>
92
			<h3 class="page-header"><i class="icon_document_alt"></i>TICKET</h3>
91
			<ol class="breadcrumb">
93
			<ol class="breadcrumb">
92
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
94
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
93
				<li><i class="icon_document_alt"></i>My Ticket</li>						  	
95
				<li><i class="icon_document_alt"></i>Manager Ticket</li>						  	
94
			</ol>
96
			</ol>
95
		</div>
97
		</div>
96
	</div>
98
	</div>
97
<div id="manager-ticket-table">
99
<div id="manager-ticket-table">
98
		<div class="row">
100
		<div class="row">
99
	    	<div class="col-lg-12">
101
	    	<div class="col-lg-12">
100
	    		<table class="table table-bordered">
102
	    		<table class="table table-bordered">
101
	    			<tbody>
103
	    			<tbody>
102
	    				<tr>
104
	    				<tr>
-
 
105
	    					<th>Ticket Id</th>
103
	    					<th>Partner</th>
106
	    					<th>Partner</th>
104
	    					<th>SubCategory</th>
107
	    					<th>SubCategory</th>
105
	    					<th>Assigned To</th>
108
	    					<th>Assigned To</th>
106
	    					<th>Created TimeStamp</th>
109
	    					<th>Created TimeStamp</th>
107
	    					<th>Status</th>
110
	    					<th>Status</th>
108
	    					<th>Action</th>
111
	    					<th>Action</th>
109
	    				</tr>
112
	    				</tr>
110
	    				#if(!$tickets.isEmpty())
113
	    				#if($tickets.size()>0)
111
	 							#foreach($ticket in $tickets)
114
	 							#foreach($ticket in $tickets)
112
	 							<tr>
115
	 							<tr>
-
 
116
	 							<td>$ticket.getId()</td>
113
	 							<td>$fofoIdsAndCustomRetailer.get($ticket.getFofoId()).getBusinessName()</td>
117
	 							<td>$fofoIdsAndCustomRetailer.get($ticket.getFofoId()).getBusinessName()</td>
114
								<td><a href="#" data-toggle="modal" data-target="#myModal" data-ticketid="$ticket.getId()" id="activities" data-assignee="$authUserListMap.get($ticket.getId()).get(0).getFirstName()">$subCategoryIdAndSubCategoryMap.get($ticket.getSubCategoryId()).getName()</a></td>			    				
118
								<td><a href="#" data-toggle="modal" data-target="#myModal" data-ticketid="$ticket.getId()" id="activities" data-assignee="$authUserListMap.get($ticket.getId()).get(0).getFirstName()">$subCategoryIdAndSubCategoryMap.get($ticket.getSubCategoryId()).getName()</a></td>			    				
115
								<td>#foreach($authUser in $authUserListMap.get($ticket.getId()))
119
								<td>#foreach($authUser in $authUserListMap.get($ticket.getId()))
116
										<span>$authUser.getFirstName()<span><br/>
120
										<span>$authUser.getFirstName()<span><br/>
117
								#end
121
								#end