Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30522 tejbeer 1
 
2
<div class="modal-header">
3
	<button type="button" class="close" data-dismiss="modal">&times;</button>
4
	<h4 class="modal-title">Visit Detail</h4>
5
</div>
6
<div class="modal-body" style="height: 400px; overflow: auto;">
7
 
8
 
9
<div id="franchisee-request-table">
10
		<div class="row">
11
	    	<div class="col-lg-12">
12
	    		<table class="table table-border table-condensed table-bordered" id="franchisee-table">
13
	    			<tbody>	
14
	    				<tr>
15
	    					<th>Partner Name</th>
16
	    					<td>$franchiseeVisit.getPartnerName()</td>
17
	    				</tr>
18
 
19
	    				<tr>
20
	    					<th>Agenda</th>
21
	    					 <td>$franchiseeVisit.getAgenda()</td>
22
	    				</tr>
23
 
24
	    				<tr>
25
	    					<th>Partner Remark</th>
26
	    					<td>$franchiseeVisit.getPartnerRemark()</td>
27
	    				</tr>
28
 
29
	    				<tr>
30
	    					<th>Outside Visibility</th>
31
	    					<td>$franchiseeVisit.getOutsideVisibity()</td>
32
 
33
	    				</tr>
34
 
35
	    				<tr>
36
	    					<th>Instore Visibility</th>
37
	    					<td>$franchiseeVisit.getInstoreVisibility()</td>
38
 
39
	    				</tr>
40
 
41
	    				<tr>
42
	    					<th>Outside Stock</th>
43
	    					<td>$franchiseeVisit.getOutsideStock()</td>
44
 
45
	    				</tr>
46
 
47
	    				<tr>
48
	    					<th>System Knowledge</th>
49
	    					<td>$franchiseeVisit.getSystemKnowledge()</td>
50
 
51
	    				</tr>
52
 
53
	    				<tr>
54
	    					<th>Working Device</th>
55
	    					<td>$franchiseeVisit.getWorkingDevice()</td>
56
 
57
	    				</tr>
58
 
59
	    				<tr>
60
	    					<th>Working Printer</th>
61
	    					<td>$franchiseeVisit.getWorkingPrinter()</td>
62
	    				</tr>
63
 
64
	    				<tr>
65
	    					<th>Smartdukaan Tshirt</th>
66
	    					<td>$franchiseeVisit.getSmartdukaanTshirt()</td>
67
 
68
	    				</tr>
69
 
70
	    				<tr>
71
	    					<th>Carry Bags</th>
72
	    					<td>$franchiseeVisit.getCarryBags()</td>
73
 
74
	    				</tr>
75
 
76
	    				<tr>
77
	    					<th>Latest Dummies</th>
78
	    					<td>$franchiseeVisit.getLatestDummies()</td>
79
 
80
	    				</tr>
81
 
82
	    				<tr>
83
	    					<th>Investment</th>
84
	    					<td>$franchiseeVisit.getInvestment()</td>
85
 
86
	    				</tr>
87
 
88
	    				<tr>
89
 
90
	    					<th>mtd</th>
91
	    						<td>$franchiseeVisit.getMtd()</td>
92
 
93
	    				</tr>
94
	    				<tr>
95
	    					<th>Hygiene</th>
96
	    						<td>$franchiseeVisit.getHygiene()</td>
97
 
98
	    				</tr>
99
	    				<tr>
100
	    					<th>status</th>
101
 
102
			    				<td>$franchiseeVisit.getStatus()</td>
103
 
104
	    				</tr>
105
 
106
	    				<tr>
107
	    					<th>created_by</th>
108
	    							<td>$franchiseeVisit.getCreatedBy()</td>
109
 
110
	    				</tr>
111
	    				<tr>
112
	    					<th>Assign</th>
113
	    							#if($authIdAndAuthUserMap.get($franchiseeVisit.getAssignTo()))
114
			    				<td>$authIdAndAuthUserMap.get($franchiseeVisit.getAssignTo()).getFirstName()</td>
115
			    				#else
116
			    				<td></td>
117
			    				#end
118
	    					</tr>
119
 
120
	    					<tr>
121
	    					<th>Updated</th>
122
 
123
                              	<td>$franchiseeVisit.getUpdatedTimestamp().format($dateTimeFormatter)</td>
124
 
125
	    					</tr>
126
 
127
	    						<th>Schedule Timestamp</th>
128
 
129
                              	<td>$franchiseeVisit.getScheduleTimestamp().format($dateTimeFormatter)</td>
130
 
131
	    					</tr>
132
 
133
	    				   </tr>
134
 
135
	    						<th>Resolution</th>
136
 
137
                              	<td>$franchiseeActivity.getResolution()</td>
138
 
139
	    					</tr>
140
 
141
	    						</tr>
142
 
143
	    						<th>Action</th>
144
 
145
                              	<td>$franchiseeActivity.getAction()</td>
146
 
147
	    					</tr>
148
 
149
	    				</tr>
150
 
151
 
152
 
153
 
154
	    			</tbody>
155
	    		</table>
156
	    	</div>
157
	    </div>
158
    </div>
159
 
160
    </div>
161
 
162
<div class="modal-footer">
163
	<button type="button" data-dismiss="modal"
164
		class="btn btn-default view-close">Close</button>
165
 
166
</div>