Subversion Repositories SmartDukaan

Rev

Rev 27556 | Rev 27558 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26010 amit.gupta 1
<!DOCTYPE html>
2
<html lang="en">
3
  <head>
4
    <meta charset="utf-8">
5
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
6
    <meta name="description" content="Smart Dukaan FOCO Dashboard">
7
    <meta name="author" content="smartdukaan">
8
    <!--<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">--> 
9
	<link rel="shortcut icon" href="assets/images/icons/favicon.png">
10
 
11
    <title>Smart Dukaan - FOCO Dashboard</title>
12
 
13
    <!-- Bootstrap CSS -->    
14
    <!-- bootstrap theme -->
15
    <!--external css-->
16
    <!-- font icon -->
17
    <link href="resources/css/elegant-icons-style.css" rel="stylesheet" />
18
    <link href="resources/css/font-awesome.min.css" rel="stylesheet" />    
19
    <!-- full calendar css-->
20
    <!-- owl carousel -->
21
    <link rel="stylesheet" href="resources/css/owl.carousel.css" type="text/css">
22
	<link href="resources/css/jquery-jvectormap-1.2.2.css" rel="stylesheet">
23
    <!-- Custom styles -->
24
	<link href="resources/css/widgets.css" rel="stylesheet">
25
    <link href="resources/css/style.css?v=${cssVersion}" rel="stylesheet">
26
    <link href="resources/css/card.css?v=${cssVersion}" rel="stylesheet">
27
    <link href="resources/css/style-responsive.css" rel="stylesheet" />
28
	<link href="resources/css/jquery-ui-1.10.4.min.css" rel="stylesheet">
29
    <link type="text/css" href="resources/css/bootstrap.css" rel="stylesheet">
30
	<!--<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/bootstrap/3/css/bootstrap.css" />-->
31
    <link href="resources/css/bootstrap-theme.min.css" rel="stylesheet">
32
	<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.css" />
33
 
34
	<link rel="stylesheet" type="text/css" href="resources/css/bootstrap-multiselect.css" />
27333 amit.gupta 35
	<link rel="stylesheet" type="text/css" href="resources/css/multi.min.css"/>
36
	<link rel="stylesheet" type="text/css" href="resources/css/slimselect.min.css"/>
37
	<link rel="stylesheet" type="text/css" href="resources/js/chosen.min.css"/>
26010 amit.gupta 38
	<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.16/css/dataTables.bootstrap.min.css"/>
39
	<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.7.0/css/all.css' integrity='sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ' crossorigin='anonymous'>
27412 amit.gupta 40
	<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css" rel="stylesheet" />
41
 
26010 amit.gupta 42
	<style type="text/css">
43
		.loading {
44
  			display: none;
45
		}
46
		.breadcrumb {
47
    		padding: 0 15px;
48
    	}
49
 
50
    	.stars-outer {
51
		  display: inline-block;
52
		  position: relative;
53
		  font-family: FontAwesome;
54
		}
55
 
56
		.stars-outer::before {
57
		  content: "\f006 \f006 \f006 \f006 \f006";
58
		}
59
 
60
		.stars-inner {
61
		  position: absolute;
62
		  top: 0;
63
		  left: 0;
64
		  white-space: nowrap;
65
		  overflow: hidden;
66
		  width: 0;
67
		}
68
 
69
		.stars-inner::before {
70
		  content: "\f005 \f005 \f005 \f005 \f005";
71
		  color: #f8ce0b;
72
		}
73
 
74
 
75
	.table-striped > tbody > tr:nth-child(odd) > td{
76
  		background: white;
77
  		background-color: #dae5f4;
78
	}
79
	.table-striped > tbody > tr:nth-child(even) > td{
80
  		background:  #f2f2f2;
81
  		background-color: #b8d1f3;
82
	}
83
 
84
	.btn:hover{
85
  		color: grey;
86
  		text-decoration: none;
87
	}
88
	.btn-primary:hover{
89
  		color: grey;
90
  		text-decoration: none;
91
	}
92
	.sale-details{
93
		cursor:pointer;
94
	}
95
 
96
	.popover {
97
		min-width:18%;
98
	}
99
	.fa-2x {
100
		font-size:1.4em;
101
	}
102
	.cover {
103
	  object-fit: cover;
104
	  width: 100%;
105
	  height: 90px;
106
	  padding: 8px;
107
	}
108
	.info-box .notifications i {
109
    display: inline-block;
110
    margin-top:0px;
111
    height: 25px;
112
    font-size: 16px;
113
    line-height: 25px;
114
    width: 25px;
115
    float: none;
116
    text-align: center;
117
    padding-right: 0px;
118
    color:#768399;
119
  }
120
 
121
	#preview {
122
	  position: relative;
123
	  color: #fff;
124
	  float: left;
125
	  width: 100%;
126
	  -webkit-border-radius: 10px;
127
	  -moz-border-radius: 10px;
128
	  border-radius: 10px;
129
	  clear: both;
130
	}
131
	#canvas-preview{
132
	  width: 100%;
133
	  position: relative;
134
	  top:-15px;
135
	}
136
	#preview-textfield{
137
	  position: absolute; top: -10px; left: 0; right: 0;
138
	  text-align: center; font-size: 2em; font-weight: bold;
139
	  color: white; font-family: 'Amaranth', sans-serif;
140
	}
141
 
142
 
143
	</style>
26418 tejbeer 144
	<script type="text/javascript">
27545 tejbeer 145
	function getWarehousePartners(warehouseId){
26418 tejbeer 146
 
27545 tejbeer 147
		doGetAjaxRequestHandler(context + "/getWarehousePartners?warehouseId="+warehouseId,
26418 tejbeer 148
			function(response) {
149
				$('#' + "main-content").html(response);
150
				console.log(response)
151
			});
152
	}
27509 tejbeer 153
 
154
		function getWarehouseBrandStock(warehouseId){
155
 
156
		doGetAjaxRequestHandler(context + "/getWarehouseWiseBrandStock?warehouseId="+warehouseId,
157
			function(response) {
158
				$('#' + "main-content").html(response);
159
				console.log(response)
160
			});
161
	}
27529 tejbeer 162
 
163
 
27556 tejbeer 164
	function getWarehouseWiseBrandPartnerSale(warehouseId){
165
 
166
		doGetAjaxRequestHandler(context + "/getWarehouseWiseBrandPartnerSale?warehouseId="+warehouseId,
167
			function(response) {
168
				$('#' + "main-content").html(response);
169
				console.log(response)
170
			});
171
	}
172
 
173
 
27529 tejbeer 174
</script>
175
 
176
 
177
<script type="text/javascript">
178
	function getWarehouseWiseData(){
179
		doGetAjaxRequestHandler(context + "/getWarehouseWiseData",
180
			function(response) {
181
				$('#' + "main-content").html(response);
182
				console.log(response)
183
				if(response == 'true'){
184
				console.log("hello 2")
185
 
186
				  window.location.href = $('.dashboardload').attr('href');
187
				 }
188
			});
189
	}
190
 
26418 tejbeer 191
 
27529 tejbeer 192
</script>
193
 
194
 
195
 
26010 amit.gupta 196
  </head>
197
 
198
  <body style="zoom:90%;background-color:#f7f7f7">
199
  <!--<div class="loading"><img src="resources/images/icons/loading.gif"></div>-->
200
  <!-- container section start -->
201
  <section id="container">
202
 
203
 
204
      <header class="header dark-bg">
205
            <div class="toggle-nav">
206
                <div class="icon-reorder tooltips" data-original-title="Toggle Navigation" data-placement="bottom"><i class="icon_menu"></i></div>
207
            </div>
208
            <div class="top-nav notification-row">
209
                <!-- notificatoin dropdown start-->
210
                <ul class="nav pull-right top-menu">
211
                    <!-- user login dropdown start-->
212
                    <li class="dropdown">
213
                        <a data-toggle="dropdown" class="dropdown-toggle" href="#">
214
                            <span class="profile-ava">
215
                                <img class="avatar-custom" id="photo" alt="" src="">
216
                            </span>
217
                            <span class="username" id="fofo_name"></span>
218
                            <b class="caret"></b>
219
                        </a>
220
                        <ul class="dropdown-menu extended logout">
221
                            <div class="log-arrow-up"></div>
222
                            <li class="eborder-top">
223
                                <a class="change-auth-user-password" href="javascript:void(0);"><i class=""></i>Change Password</a>
224
                            </li>
225
                            <li>
226
                                <a href="${rc.contextPath}/logout"><i class="icon_key_alt" id = "logout"></i> Log Out</a>
227
                            </li>
228
                        </ul>
229
                    </li>
230
                    <!-- user login dropdown end -->
231
                </ul>
232
                <!-- notificatoin dropdown end-->
233
            </div>
234
      </header>      
235
      <!--header end-->
236
 
237
      <!--sidebar start-->
238
      <aside>
239
          <div id="sidebar"  class="nav-collapse ">
240
              <!-- sidebar menu start-->
241
              <ul class="sidebar-menu">                
242
              	  <li class="active">
27529 tejbeer 243
                      <a class="dashboardload" href="${rc.contextPath}/dashboard">
26010 amit.gupta 244
                          <i class="icon_house_alt"></i>
245
                          <span>Dashboard</span>
246
                      </a>
247
                  </li>
26512 amit.gupta 248
                  <li><a class="product-compare-info" href="javascript:void(0);">Product Compare</a></li>
26740 amit.gupta 249
                  <li><a class="web-listing" href="javascript:void(0);">Web Listing</a></li>
26958 tejbeer 250
                  <li><a class="banner-listing" href="javascript:void(0);">Banner Listing</a></li>
27520 amit.gupta 251
                  <li><a class="published-schemes" href="javascript:void(0);">Published Offers</a></li>
252
                  <li><a class="view-invoices" href="javascript:void(0);">View Invoices</a></li>
26014 amit.gupta 253
                  #foreach($menuItem in $menu)
254
		            <li class="sub-menu">
255
		              <a href="javascript:;" class="">
256
	                       <i class="icon_document_alt"></i>
257
	                       <span>$menuItem.getDisplayText()</span>
258
	                       <span class="menu-arrow arrow_carrot-right"></span>
259
		              </a>
260
					  <ul class="sub">
261
					  #foreach($subMenu in $menuItem.getSubMenus())
262
						  <li><a class="$subMenu.getActionClass()" href="javascript:void(0);">$subMenu.getDisplayText()</a></li>
263
					  #end
264
					</ul>
265
		           	</li>
26010 amit.gupta 266
                  #end
267
              </ul>
268
              <!-- sidebar menu end-->
269
          </div>
270
      </aside>
271
      <!--sidebar end-->
272
 
273
	<!--main content start-->
274
	<section id="main-content">
275
		<section class="wrapper">
276
          	<!--overview start-->
277
			<div class="row">
278
				<div class="col-lg-12">
279
					<h3 class="page-header"><i class="fa fa-laptop"></i> Dashboard</h3>
280
					<ol class="breadcrumb">
281
						<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
282
						<li><i class="fa fa-laptop"></i>Dashboard</li>						  	
283
					</ol>
284
				</div>
285
			</div>
286
			<!-- overview end -->
26418 tejbeer 287
 
27548 tejbeer 288
			    #if($warehousePartnerDetailMap)
26418 tejbeer 289
				<div class="row">
290
 
291
					<div class="col-lg-6">
292
				 <table class="table table-striped table-advance table-hover">
293
	    			<tbody>
294
	    				<tr>
27545 tejbeer 295
	    				<th>W/H Location</th>
296
	    				<th>Partners</th>
27556 tejbeer 297
                         <th>LMTD</th>
298
	    				 <th>MTD</th>
27549 tejbeer 299
	    				 <th>Today Tertiary</th>
27545 tejbeer 300
	    				 <th>Tickets</th>
26418 tejbeer 301
	    				</tr>
27545 tejbeer 302
	    				#foreach($name in $warehousePartnerDetailMap.keySet())
303
	    				<tr onclick="getWarehousePartners($name)">
304
	    	 		     <td>$warehouseMap.get($name)</td>
305
	    	 		     <td>$warehousePartnerDetailMap.get($name).getCount()</td>
27552 tejbeer 306
	    	 		     <td class="currency">$warehousePartnerDetailMap.get($name).getLmtd()</td>
307
	    	 		     <td class="currency">$warehousePartnerDetailMap.get($name).getMtd()</td>
308
	    	 		     <td class="currency">$warehousePartnerDetailMap.get($name).getTodayTertiary()</td>
27545 tejbeer 309
 
310
	    	 		     <td>$warehousePartnerDetailMap.get($name).getTicket()</td>
311
 
312
	    	 		   </tr>
26418 tejbeer 313
	    				 #end
314
 
315
	    		    </tbody>
316
	    		</table>
317
						</div>
318
 
27529 tejbeer 319
				<div class="col-lg-4">
320
 
321
				<div style="float:right"> <span style="margin-right:10px">Last Fetch :- $reporticoDate.getLastCreatedTimestamp().format($dateTimeFormatter)</span><button class="btn btn-primary fetchWarehouseData"  onclick="getWarehouseWiseData()" type="button">Fetch</button>
322
						     </div>
323
				<table class="table table-striped table-advance table-hover">
26418 tejbeer 324
	    			<tbody>
325
	    				<tr>
27333 amit.gupta 326
	    				<th>W/H Location</th>
327
	    				<th>Total Stock</th>
328
	    				<th>Total Value</th>
27529 tejbeer 329
	    				<th>Pending Indent</th>
27541 tejbeer 330
	    				<th>Tertiary</th>
26418 tejbeer 331
	    				</tr>
27509 tejbeer 332
	    				#foreach($key in $warehouseMap.keySet())
333
 
334
	    				<tr onclick="getWarehouseBrandStock($warehouseStockMap.get($key).getWarehouseId())">
335
	    					<td>$warehouseMap.get($key)</td>
336
	    					#if($warehouseStockMap.get($key).getStockQty())
337
	    					<td>$warehouseStockMap.get($key).getStockQty()</td>
338
	    					<td class="currency">$warehouseStockMap.get($key).getStockValue()</td>
339
	    					#else
340
	    					<td>0</td>
341
	    					<td>0</td>
342
	    					#end
27529 tejbeer 343
	    					#if($warehouseStockMap.get($key).getPendingIndent())
344
	    				    <td>$warehouseStockMap.get($key).getPendingIndent()</td>
345
	    				    #else
346
	    				    <td>0</td>
347
	    					#end
27509 tejbeer 348
 
27541 tejbeer 349
	    					<td>$warehouseStockMap.get($key).getTertiary()</td>
350
 
27509 tejbeer 351
 
352
 
27541 tejbeer 353
 
26418 tejbeer 354
		                  </tr>
27509 tejbeer 355
 
26418 tejbeer 356
	    				 #end
357
 
358
 
359
	    		    </tbody>
360
	    		</table>
361
 
362
			 </div>
363
			</div>
364
 
365
			#end
27557 tejbeer 366
 
367
		    #if($brandSales)	
26418 tejbeer 368
 
26010 amit.gupta 369
			<div class="row">
26063 amit.gupta 370
				<div class="col-lg-6">
371
					<div class="row col-lg-4">
27556 tejbeer 372
						<h3 style="margin-top:-2px;margin-bottom:24px"><strong>Brand Wise Report</strong></h3>
373
					</div>
374
					<div class="row col-lg-12 info-box white-bg">
375
 
376
					 <table class="table table-striped table-advance table-hover">
377
	    			<tbody>
378
	    				<tr>
379
	    				<th>W/H Location</th>
380
	    				 <th>LMTD</th>
381
	    				  <th>LMTD Qty</th>
382
	    				   <th>MTD</th>
383
	    				    <th>MTD Qty</th>
384
	    				</tr>
385
	    				#foreach($salekey in $$warehouseMap.keySet())
386
	    				<tr onclick="getWarehouseWiseBrandPartnerSale($brandSales.get($salekey).getWarehouseId())">
387
 
388
	    	 		      <td>$warehouseMap.get($salekey)</td>
389
	    	 		      #if($brandSales.get($salekey).getLmtd())
390
	    	 		      <td class="currency">$brandSales.get($salekey).getLmtd()</td>
391
	    	 		      #else
392
	    	 		      <td>0</td>
393
	    	 		      #end
394
 
395
	    	 		      #if($brandSales.get($salekey).getLmtdQty())
396
	    	 		      <td class="currency">$brandSales.get($salekey).getLmtdQty()</td>
397
	    	 		      #else
398
	    	 		      <td>0</td>
399
	    	 		      #end
400
	    	 		       #if($brandSales.get($salekey).getMtd())
401
	    	 		      <td class="currency">$brandSales.get($salekey).getMtd()</td>
402
	    	 		      #else
403
	    	 		      <td>0</td>
404
	    	 		      #end
405
	    	 		      #if($brandSales.get($salekey).getMtdQty())
406
	    	 		      <td class="currency">$brandSales.get($salekey).getMtdQty()</td>
407
	    	 		      #else
408
	    	 		      <td>0</td>
409
	    	 		      #end
410
	    	 		   </tr>
411
	    				 #end
412
 
413
	    		    </tbody>
414
	    		</table>
415
	    		</div>
416
			</div>
417
			</div>
27557 tejbeer 418
			#end
419
 
27556 tejbeer 420
			<div class="row">
421
				<div class="col-lg-6">
422
					<div class="row col-lg-4">
26063 amit.gupta 423
						<h3 style="margin-top:-2px;margin-bottom:24px"><strong>Reports</strong></h3>
26010 amit.gupta 424
					</div>
26063 amit.gupta 425
					<div class="row col-lg-12 info-box white-bg">
26214 amit.gupta 426
						<table class="table table-striped reports-table" style="display:none">
26063 amit.gupta 427
						    <tbody>
428
					    		<div class="list-group">
429
					            #foreach($reporticoProjectEntry in $reporticoProjectMap.entrySet())
430
						            #foreach($reporticoUrlInfo in $reporticoProjectEntry.getValue())
431
										  <a href="${rc.contextPath}/reports/${reporticoProjectEntry.getKey()}${reporticoUrlInfo.getUrl()}" class="list-group-item"
432
											  #if($reporticoUrlInfo.getParamsList())
433
											  data-paramslist="$vmUtils.htmlJson($reporticoUrlInfo.getParamsList())"
434
											  #end
435
										  >
436
										    <h4 class="list-group-item-heading">$reporticoUrlInfo.getTitle()</h4>
437
										    <p class="list-group-item-text">$reporticoUrlInfo.getDescription()</p>
438
										  </a>
439
 
440
					    			#end
441
				    			#end
442
								</div>
443
						    </tbody>
444
						</table>
445
 
446
					</div>
447
				</div>
448
				<div class="col-lg-6">
449
					<div class="row col-lg-12 info-box white-bg">
450
						<div class="col-lg-4">
451
						<h3 style="margin-top:-2px;margin-bottom:24px"><strong>My Messages</strong>
452
						</h3>
26010 amit.gupta 453
						</div>
26063 amit.gupta 454
						<div class="col-lg-4">
455
							<div class="btn-group message-filter"> 
456
								<button data-messagetype="notification" type="button" class="btn btn-default" aria-label="Notifications" title="Notifications">
457
								<span class="glyphicon glyphicon-bell" aria-hidden="true"></span></button> 
458
								<button data-messagetype="announcement" type="button" class="btn btn-default" aria-label="Announcements" title="Announcements">
459
								<span class="glyphicon glyphicon-bullhorn" aria-hidden="true"></span></button> 
460
								<button data-messagetype="scheme" type="button" class="btn btn-default" aria-label="SmartDukaan Schemes" title="SmartDukaan Schemes">
461
									<span class="glyphicon glyphicon-tags" aria-hidden="true"></span>
462
								</button>
26446 tejbeer 463
								<button data-messagetype="marketing" type="button" class="btn btn-default" aria-label="SmartDukaan Schemes" title="SmartDukaan Schemes">
464
								 <span class="glyphicon glyphicon-picture" aria-hidden="true"></span>
465
							</button>
26063 amit.gupta 466
							</div>
467
						</div>
468
				    	<div class="col-lg-12 row notification-container" style="max-height: 500px;overflow-y: scroll;">
469
						</div>
26010 amit.gupta 470
					</div>
471
				</div>
472
			</div>
473
		</section>
474
    	<div class="text-center">
475
          <div class="credits">
476
          	<p>All rights reserved.&copy;2017, Smart Dukaan</p>
477
          </div>
478
		</div>
479
	</section>
480
 
481
	<script type="text/javascript">
482
		context="${rc.contextPath}";
483
		webApiScheme="$webApiScheme";
484
		webApiRoot="$webApiRoot";
485
		webApiHost="$webApiHost";
486
		webApiPort="$webApiPort";
26287 amit.gupta 487
		#if($authId)
26286 amit.gupta 488
			retailers = $retailers;
489
			warehouses = $warehouses;
26287 amit.gupta 490
	        authId = $authId;
26286 amit.gupta 491
		#end
26010 amit.gupta 492
	</script>
493
	#parse("include-scripts.vm")
494
 
495
  <script>
496
 
497
      //knob
498
      $(function() {
499
        /*$(".knob").knob({
500
          'draw' : function () { 
501
            $(this.i).val(this.cv + '%')
502
          }
503
        });*/
504
        $.fn.dataTable.moment( 'DD/MM/YYYY' );
505
        $.fn.dataTable.moment( 'DD/MM/YYYY hh:mm' );
506
        $('.currency').each(function(index, ele) {
507
			if (!isNaN(parseInt($(ele).html()))) {
508
				$(ele).html(numberToComma($(ele).html()));
509
			}
510
		});
511
      });
512
 
513
      $(function() {
514
    	 	var profile = localStorage.getItem('profile');
515
    	 	if (profile){
516
    			$("#photo").attr("src",JSON.parse(profile).image_url);
517
    			$("#fofo_name").text(JSON.parse(profile).name);
518
    	 	}
519
    	 	else{
520
    	 		$("#photo").attr("src","");
521
    			$("#fofo_name").text("Welcome, User");
522
    	 	}
523
    });
524
 
525
 
526
 
527
	$(function(){
528
		dateRangeCallback(moment(),moment());
529
		loaderDialogObj = bootbox.dialog({
530
		    message: '<div class="container text-center"><i class="fa fa-spin fa-spinner"></i>Loading...</div>',
27341 amit.gupta 531
		    show: false	
26010 amit.gupta 532
		});
533
	});
26062 tejbeer 534
 
26166 amit.gupta 535
	$(document).ready(function(){
26062 tejbeer 536
		 $('div.message-filter').on('click', 'button', function() {
537
			messageType = $(this).data("messagetype");
538
			if($(this).hasClass('btn-pressed')) {
539
				messageType="";
540
				$('div.message-filter').find('button').removeClass('btn-pressed').addClass('btn-default');
541
			} else {
542
				$('div.message-filter').find('button').removeClass('btn-pressed').addClass('btn-default');
543
				$(this).addClass('btn-pressed').removeClass('btn-default');
544
			}
545
			notifyTypeChange(messageType);
546
		});
547
		notifyTypeChange("");
26166 amit.gupta 548
	});
26062 tejbeer 549
 
26166 amit.gupta 550
	/*$(function(){
26062 tejbeer 551
		messageType = $(this).data("messagetype");
552
		if($(this).hasClass('btn-pressed')) {
553
			messageType="";
554
			$('div.message-filter').find('button').removeClass('btn-pressed').addClass('btn-default');
555
		} else {
556
			$('div.message-filter').find('button').removeClass('btn-pressed').addClass('btn-default');
557
			$(this).addClass('btn-pressed').removeClass('btn-default');
558
		}
559
		notifyTypeChange(messageType);
26166 amit.gupta 560
	});*/
26010 amit.gupta 561
</script>
26318 tejbeer 562
	<div id="report-modal" class="modal" role="dialog" data-backdrop="static" data-keyboard="false">
26063 amit.gupta 563
		<div class="modal-dialog">
564
 
565
		    <!-- Modal content-->
566
		    <div class="modal-content">
567
		      <div class="modal-header">
568
		        <button type="button" class="close" data-dismiss="modal">&times;</button>
569
		        <h4 class="modal-title"></h4>
570
		      </div>
571
		      <div class="modal-body">
572
			  </div>
573
			  <div class="modal-footer">
574
		        <button type="button" data-dismiss="modal" class="btn btn-default download-report">Download</button>
575
		      </div>
576
	    	</div>
577
		</div>
578
	</div>
26010 amit.gupta 579
 
580
  </body>
581
</html>