Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
30122 amit.gupta 1
$(function () {
2
	$(document).on('click', ".create-scheme", function () {
23343 ashik.ali 3
		loadScheme("main-content");
4
	});
30122 amit.gupta 5
	$(document).on('click', ".scheme-details", function () {
23343 ashik.ali 6
		var schemeId = $(this).attr('data');
23752 govind 7
		console.log("schemeId = " + schemeId);
23343 ashik.ali 8
		loadSchemeDetails(schemeId, "scheme-details-container");
9
	});
30122 amit.gupta 10
	$(document).on('click', ".active-scheme", function () {
23343 ashik.ali 11
		var schemeId = $(this).attr('data');
23752 govind 12
		console.log("active-scheme id : " + schemeId);
13
		var start = $("#schemes-paginated .start").text();
14
		// var end = $( "#schemes-paginated .end" ).text();
23343 ashik.ali 15
		var offset = start - 1;
30122 amit.gupta 16
		if (confirm("Are you sure you want to Active Scheme!")) {
23343 ashik.ali 17
			activeScheme(schemeId, offset, "schemes-table");
18
		}
19
	});
23752 govind 20
 
30122 amit.gupta 21
	$(document).on('click', ".expire-scheme", function () {
23343 ashik.ali 22
		var schemeId = $(this).attr('data');
25069 amit.gupta 23
		var expireDate = startDate;
23752 govind 24
		var start = $("#schemes-paginated .start").text();
25
		// var end = $( "#schemes-paginated .end" ).text();
23343 ashik.ali 26
		var offset = start - 1;
30122 amit.gupta 27
		if (confirm("Are you sure you want to Expire Scheme!")) {
25069 amit.gupta 28
			expireScheme(schemeId, expireDate, offset, "schemes-table");
23343 ashik.ali 29
		}
30
	});
27755 amit.gupta 31
	$(document).on('click', "#extendDatetime-button",
30122 amit.gupta 32
		function () {
28134 tejbeer 33
			console.log("extendAll button click");
34
			var extendDatetime = $('input[name="extendDatetime"]')
35
				.val();
36
			console.log("extendDatetime : " + extendDatetime);
37
			if (extendDatetime) {
30122 amit.gupta 38
				if (confirm("Are you sure you want to Extend expireDateTime for All Scheme!")) {
28134 tejbeer 39
					extendAllScheme(extendDatetime, "schemes-table")
40
				}
41
			} else {
42
				alert("feild can't be blank");
43
			}
44
		});
27755 amit.gupta 45
	$(document).on('click', "#extendScheme-button",
30122 amit.gupta 46
		function () {
28134 tejbeer 47
			console.log("extend button click");
48
			var extendDatetime = $('input[name="extendScheme"]')
49
				.val();
50
			var schemeId = $('#schemeId').val()
51
			console.log("extendDatetime : " + extendDatetime);
52
			console.log(schemeId);
53
			if (extendDatetime) {
54
				if (confirm("Are you sure you want to Extend expireDateTime for Scheme!") == true) {
55
					extendSchemeById(schemeId)
56
				}
57
			} else {
30054 manish 58
				alert("field can't be blank");
30122 amit.gupta 59
			}
28134 tejbeer 60
		});
30122 amit.gupta 61
 
62
 
29586 manish 63
	$(document).on('click', ".monthy-investment",
30122 amit.gupta 64
		function () {
65
			console.log("hello evaluateActualInvestmentPayout");
66
			window.location.href = context + "/evaluateActualInvestmentPayout";
67
 
68
		});
69
 
70
	$(document).on('click', ".process-investment", function () {
29759 amit.gupta 71
		if (confirm("Are you sure you want to Process Investment")) {
29761 amit.gupta 72
			processInvestment();
29759 amit.gupta 73
		}
74
	});
75
 
30122 amit.gupta 76
 
29586 manish 77
	$(document).on('click', ".processInvestmentDryRun",
30122 amit.gupta 78
		function () {
79
			console.log("processInvestmentDryRun");
80
			window.location.href = context + "/processInvestmentDryRun";
81
 
82
		});
83
 
30054 manish 84
	$(document).on('click', ".brand-wise-income",
30122 amit.gupta 85
		function () {
86
			var brand = $(this).data('brand');
87
 
88
			var status = $(this).data('status');
89
			var month = $(this).data('month');
90
 
91
			brandWiseIncome(brand, month, status);
92
 
93
		});
94
 
30054 manish 95
	$(document).on('click', ".imei_wise_income",
30122 amit.gupta 96
		function () {
23752 govind 97
 
30122 amit.gupta 98
 
99
			var catalogItemId = $(this).data('catalogitemid');
100
			var month = $(this).data('month');
101
 
102
			console.log(catalogItemId);
103
			imeiWiseIncome(catalogItemId, month);
104
 
105
		});
106
 
107
	$(document).on('change', "#month-wise-income", function () {
108
		var month = $(this).val();
109
 
110
		monthWiseIncome(month, "main-content");
111
	});
112
 
113
 
114
	$(document).on('click', ".schemes", function () {
115
		schemes("main-content");
23347 ashik.ali 116
		console.log("Active Schemes Button Clicked...")
28134 tejbeer 117
 
30122 amit.gupta 118
		/*bootbox.confirm({
28134 tejbeer 119
			message: "<div class = 'disclosurehindata'> <img src='resources/images/disclosure.png' style='width:100%'> </div>"
120
			,
121
			buttons: {
122
				confirm: {
123
					label: 'I agree',
124
					className: 'btn-success'
125
				},
126
				cancel: {
127
					label: 'I disagree',
128
					className: 'btn-danger'
129
				}
130
			},
30122 amit.gupta 131
			callback: function (result) {
28134 tejbeer 132
				if (result == true) {
133
				}
134
			}
30122 amit.gupta 135
		});*/
28134 tejbeer 136
 
23347 ashik.ali 137
	});
23752 govind 138
 
30122 amit.gupta 139
	$(document).on('click', ".margin-calculator", function () {
27648 tejbeer 140
		console.log("Active Schemes Button Clicked...")
28134 tejbeer 141
		marginCalculator("main-content");
27648 tejbeer 142
	});
143
 
30122 amit.gupta 144
	$(document).on('click', ".schemes-download-page", function () {
23347 ashik.ali 145
		console.log("Schemes Download Clicked...")
146
		loadSchemesDownloadPage("main-content");
22860 ashik.ali 147
	});
23752 govind 148
 
30122 amit.gupta 149
	$(document).on('click', ".schemes-update", function () {
23556 amit.gupta 150
		loadSchemeUpdatePage("main-content");
151
	});
23557 amit.gupta 152
 
30122 amit.gupta 153
	$(document).on('click', ".add-item", function () {
23928 govind 154
 
155
		schemeIds = $("#schemeids").val();
30122 amit.gupta 156
		itemIds = $("#catalogids").val();
157
		if (confirm("Are you sure you want to Add Model to Scheme!") == true) {
158
			if (catalogIds.trim().length === 0 || schemeIds.trim().length === 0) {
26763 tejbeer 159
				alert("fields shouldn't be blank");
160
				return;
161
			}
30122 amit.gupta 162
			updateSingleScheme(schemeIds, catalogIds);
23928 govind 163
		}
164
	});
30122 amit.gupta 165
	$(document).on('click', ".add-schemes", function () {
23752 govind 166
 
30122 amit.gupta 167
		let schemeIds = $("#schemeids").val();
168
		let catalogIds = $("#catalogids").val();
169
 
23914 govind 170
		if (confirm("Are you sure you want to Add Item to Scheme!") == true) {
30122 amit.gupta 171
			if (catalogIds.trim().length === 0 || schemeIds.trim().length === 0) {
26763 tejbeer 172
				alert("fields shouldn't be blank");
173
				return;
174
			}
30122 amit.gupta 175
			updateSchemes(schemeIds, catalogIds);
23557 amit.gupta 176
		}
177
	});
30122 amit.gupta 178
	$(document).on('click', ".delete-schemes", function () {
179
		if (confirm("Delete model from Scheme?") == true) {
23914 govind 180
			schemeId = $(this).data('schemeid');
30122 amit.gupta 181
			catalogId = $(this).data('catalogid');
182
			deleteScheme(schemeId, catalogId);
23715 govind 183
		}
23752 govind 184
	});
185
 
27755 amit.gupta 186
	$(document).on('click', "#scheme-search-button",
30122 amit.gupta 187
		function () {
28134 tejbeer 188
			var searchText = $("#scheme-search-text").val();
189
			if (typeof (searchText) == "undefined" || !searchText) {
190
				searchText = "";
191
			}
30122 amit.gupta 192
			doGetAjaxRequestHandler(context + "/getSchemes?searchScheme="
193
				+ searchText, function (response) {
194
				$('#' + "main-content").html(response);
195
			});
28134 tejbeer 196
		});
26802 tejbeer 197
 
30122 amit.gupta 198
	$(document).on("keyup", "#scheme-search-text", function (e) {
23752 govind 199
		var keyCode = e.keyCode || e.which;
200
		if (keyCode == 13) {
201
			$("#scheme-search-button").click();
202
		}
203
	});
30122 amit.gupta 204
	$(document).on('click', "#scheme-item-search-button", function () {
23752 govind 205
		var searchText = $("#scheme-item-search-text").val();
27875 amit.gupta 206
		var date = $(".schemes-date").val();
23752 govind 207
		if (typeof (searchText) == "undefined" || !searchText) {
208
			searchText = "";
26497 amit.gupta 209
			alert("please select item");
210
			return;
23752 govind 211
		}
27094 tejbeer 212
		if (typeof currentItem != "undefined") {
213
			console.log(currentItem);
27875 amit.gupta 214
			loadSchemeItemSearchInfo(currentItem, date);
27094 tejbeer 215
		} else {
216
			console.log("reeffff")
217
			alert("Data No Found")
218
		}
23752 govind 219
	});
220
 
28795 tejbeer 221
 
30122 amit.gupta 222
	$(document).on('click', "#scheme-imei-search-button", function () {
28795 tejbeer 223
		var searchText = $("#scheme-imei-search-text").val();
224
		var date = $(".schemes-date").val();
225
		if (typeof (searchText) == "undefined" || !searchText) {
226
			searchText = "";
227
			alert("please select imei");
228
			return;
229
		}
230
		if (typeof imei != "undefined") {
231
			console.log(imei);
232
			loadSchemeImeiSearchInfo(imei, date);
233
		} else {
234
			console.log("reeffff")
235
			alert("Data No Found")
236
		}
237
	});
27755 amit.gupta 238
	$(document).on('click', ".categoryWiseSchemeHistory",
30122 amit.gupta 239
		function () {
28134 tejbeer 240
			var category = $('#partner-category').val();
241
			console.log(category);
26763 tejbeer 242
 
28134 tejbeer 243
			doGetAjaxRequestHandler(context + "/getSchemes?partnerType="
30122 amit.gupta 244
				+ category, function (response) {
245
				$('#' + "main-content").html(response);
246
				$('#partner-category').val(category);
247
				window.dispatchEvent(new Event('resize'));
248
			});
26763 tejbeer 249
 
28134 tejbeer 250
		});
26763 tejbeer 251
 
30122 amit.gupta 252
	$(document).on("keyup", "#scheme-item-search-text", function (e) {
23752 govind 253
		var keyCode = e.keyCode || e.which;
254
		if (keyCode == 13) {
255
			$("#scheme-item-search-button").click();
256
		}
257
	});
22860 ashik.ali 258
});
259
 
23752 govind 260
function configureTagListingItemsDescriptionDropDown() {
30148 amit.gupta 261
	$('.catalogItemsDescription').multiselect({
28134 tejbeer 262
		includeSelectAllOption: true,
263
		maxHeight: 200,
264
		buttonWidth: '180px',
265
		numberDisplayed: 1,
30148 amit.gupta 266
		nonSelectedText: 'Models',
267
		nSelectedText: ' - Models Selected',
268
		allSelectedText: 'All Models Selected',
28134 tejbeer 269
		enableFiltering: true,
270
		enableCaseInsensitiveFiltering: true
23752 govind 271
	});
23343 ashik.ali 272
}
273
 
23752 govind 274
function schemesDownload() {
23343 ashik.ali 275
	console.log("downloadItemLedgerReport Button clicked")
23914 govind 276
	var startDateTime = $('input[name="startDateTime"]').val();
277
	console.log("startDateTime : " + startDateTime);
278
	var endDateTime = $('input[name="endDateTime"]').val();
279
	console.log("endDateTime : " + endDateTime);
23752 govind 280
	doAjaxGetDownload(context + "/schemes/download?startDateTime="
28134 tejbeer 281
		+ startDateTime + "&endDateTime=" + endDateTime,
282
		"SchemesReport.xlsx");
23343 ashik.ali 283
}
30122 amit.gupta 284
 
30501 amit.gupta 285
function selectedbrand(categoryId) {
23914 govind 286
	var brands = $('#tag-listing-brands').val();
287
	if (brands) {
30148 amit.gupta 288
		loadCatalogDescriptionByBrands(
30501 amit.gupta 289
			"tag-listing-items-description-container", categoryId, brands);
23914 govind 290
	}
291
}
30122 amit.gupta 292
 
30492 amit.gupta 293
function categoryChanged() {
294
	let categoryId = $('#category-list').val();
295
	if (categoryId) {
296
		loadBrandsByCategory(
297
			"brand-list", categoryId);
298
	}
299
}
300
 
23752 govind 301
function loadSchemeDetails(schemeId, domId) {
302
	doGetAjaxRequestHandler(context + "/getSchemeById?schemeId=" + schemeId,
30122 amit.gupta 303
		function (response) {
28134 tejbeer 304
			$('#' + domId).html(response);
305
			window.dispatchEvent(new Event('resize'));
306
		});
23343 ashik.ali 307
}
308
 
23752 govind 309
function activeScheme(schemeId, offset, domId) {
310
	doPutAjaxRequestHandler(context + "/activeSchemeById?schemeId=" + schemeId
30122 amit.gupta 311
		+ "&offset=" + offset, function (response) {
312
		$('#' + domId).html(response);
313
		$('#scheme-details-container').html('');
314
	});
23752 govind 315
 
23343 ashik.ali 316
}
317
 
25069 amit.gupta 318
function expireScheme(schemeId, expireDate, offset, domId) {
23752 govind 319
	doPutAjaxRequestHandler(context + "/expireSchemeById?schemeId=" + schemeId
30122 amit.gupta 320
		+ "&offset=" + offset + "&expireTimestamp=" + expireDate, function (
321
		response) {
26763 tejbeer 322
		alert("Scheme - " + schemeId + " marked for expiry successfully!");
23343 ashik.ali 323
		$('#' + domId).html(response);
324
		$('#scheme-details-container').html('');
325
	});
326
}
30122 amit.gupta 327
 
23914 govind 328
function extendAllScheme(domId) {
26763 tejbeer 329
	doPostAjaxRequestWithJsonHandler(context + "/extendAllSchemes", JSON
30122 amit.gupta 330
		.stringify(startDate), function (response) {
331
		if (response == 'true') {
332
			alert("Scheme All Extended successfully");
333
			schemes("main-content");
334
		} else {
335
			alert("No scheme Activated Currently");
336
			schemes("main-content");
337
		}
338
	});
23343 ashik.ali 339
 
23914 govind 340
}
30122 amit.gupta 341
 
23914 govind 342
function extendSchemeById(schemeId) {
26763 tejbeer 343
	doPostAjaxRequestWithJsonHandler(context + "/extendSchemeById?schemeId="
30122 amit.gupta 344
		+ schemeId, JSON.stringify(startDate), function (response) {
345
		if (response == 'true') {
346
			alert("Scheme extended successfully");
347
			schemes("main-content");
348
		} else {
349
			alert("Scheme already Expired");
350
			schemes("main-content");
351
		}
352
	});
23914 govind 353
 
354
}
30122 amit.gupta 355
 
29761 amit.gupta 356
function processInvestment() {
30122 amit.gupta 357
	doPostAjaxRequestWithJsonHandler(context + "/payMonthlyInvestment", function (response) {
29759 amit.gupta 358
		alert("InvestmentPayout processed successfully");
359
	});
360
}
23914 govind 361
 
23752 govind 362
function loadScheme(domId) {
30122 amit.gupta 363
	doGetAjaxRequestHandler(context + "/createScheme", function (response) {
23343 ashik.ali 364
		$('#' + domId).html(response);
30492 amit.gupta 365
		createSchemeOnReady();
366
		categoryChanged();
367
		$('input[name="dateRange"]').daterangepicker(getRangedDatePicker(), dateRangeCallback);
23343 ashik.ali 368
	});
23752 govind 369
 
23343 ashik.ali 370
}
371
 
30501 amit.gupta 372
function loadCatalogDescriptionByBrands(domId, categoryId, brands) {
373
	let brandsString = brands.join(",")
374
	doGetAjaxRequestHandler(`${context}/getCatalogDescriptionByBrands?categoryId=${categoryId}&brands=${brandsString}`,
375
		function (response) {
28134 tejbeer 376
			$('#' + domId).html(response);
377
			configureTagListingItemsDescriptionDropDown();
378
		});
23752 govind 379
 
23343 ashik.ali 380
}
381
 
30492 amit.gupta 382
function loadBrandsByCategory(domId, categoryId) {
383
	doGetAjaxRequestHandler(`${context}/getBrandsByCategory?categoryId=${categoryId}`,
384
		function (response) {
385
			$('#' + domId).html(response);
386
			configureBrandsDropDown();
387
		});
388
}
389
 
23752 govind 390
function schemes(domId) {
30122 amit.gupta 391
	doGetAjaxRequestHandler(context + "/getSchemes", function (response) {
23343 ashik.ali 392
		$('#' + domId).html(response);
393
	});
394
}
30122 amit.gupta 395
 
27648 tejbeer 396
function marginCalculator(domId) {
30122 amit.gupta 397
	doGetAjaxRequestHandler(context + "/getMarginCalculator", function (response) {
27648 tejbeer 398
		$('#' + domId).html(response);
399
	});
400
}
23343 ashik.ali 401
 
23752 govind 402
function loadSchemesDownloadPage(domId) {
30122 amit.gupta 403
	doGetAjaxRequestHandler(context + "/schemes/downloadPage", function (
28134 tejbeer 404
		response) {
23343 ashik.ali 405
		$('#' + domId).html(response);
406
	});
23556 amit.gupta 407
}
408
 
23752 govind 409
function loadSchemeUpdatePage(domId) {
30122 amit.gupta 410
	doGetAjaxRequestHandler(context + "/schemes/update-schemes-page", function (
28134 tejbeer 411
		response) {
23556 amit.gupta 412
		$('#' + domId).html(response);
413
	});
23557 amit.gupta 414
}
415
 
30122 amit.gupta 416
function brandWiseIncome(brand, month, status) {
30054 manish 417
	console.log(brand);
418
	console.log(month);
30122 amit.gupta 419
 
420
	doGetAjaxRequestHandler(context + "/brandWiseIncome?brand=" + brand + "&month=" + month + "&status=" + status, function (
30054 manish 421
		response) {
422
		$('.imei-wise-income-container').html('');
30122 amit.gupta 423
		$('.brand-wise-income-container').html(response);
30054 manish 424
	});
425
}
426
 
30122 amit.gupta 427
function monthWiseIncome(month, domId) {
30054 manish 428
	console.log(month);
30122 amit.gupta 429
	doGetAjaxRequestHandler(context + "/monthWisePartnerIncome/" + month, function (response) {
430
		console.log(response);
431
		$('#' + domId).html(response);
432
	})
30054 manish 433
}
30122 amit.gupta 434
 
435
function imeiWiseIncome(catalogItemId, month) {
30054 manish 436
	console.log(catalogItemId);
437
	console.log(month);
30122 amit.gupta 438
 
439
	doGetAjaxRequestHandler(context + "/getLastMonthImeiWiseIncome?catalogItemId=" + catalogItemId + "&month=" + month, function (
30054 manish 440
		response) {
30122 amit.gupta 441
		$('.imei-wise-income-container').html(response);
30054 manish 442
	});
443
}
444
 
30122 amit.gupta 445
function updateSingleScheme(shcemeIds, catalogIds) {
23928 govind 446
	doPostAjaxRequestWithJsonHandler(context + '/addItemToScheme', JSON
28134 tejbeer 447
		.stringify({
30122 amit.gupta 448
			"catalogIds": catalogIds.split(",").map(Number),
28134 tejbeer 449
			"schemeIds": schemeIds.split(",").map(Number)
30122 amit.gupta 450
		}), function (response) {
451
		if (response == 'true') {
452
			alert("Item Added to scheme successfully");
453
			// $('#newItemToSchemeModal').modal('hide');
454
			loadSchemeDetails(shcemeIds, "scheme-details-container");
455
		} else {
456
			alert("Item already present");
457
			loadSchemeDetails(shcemeIds, "scheme-details-container");
458
		}
459
	});
23715 govind 460
}
30122 amit.gupta 461
 
462
function updateSchemes(schemeIds, catalogIds) {
23928 govind 463
	doPostAjaxRequestWithJsonHandler(context + '/schemes/update', JSON
28134 tejbeer 464
		.stringify({
30122 amit.gupta 465
			"catalogIds": catalogIds.split(",").map(Number),
28134 tejbeer 466
			"schemeIds": schemeIds.split(",").map(Number)
30122 amit.gupta 467
		}), function (response) {
468
		if (response == 'true') {
469
			alert("Item Added to scheme successfully");
470
			// $('#newItemToSchemeModal').modal('hide');
471
			loadSchemeUpdatePage("main-content");
472
		}
473
	});
23928 govind 474
}
30122 amit.gupta 475
 
476
function deleteScheme(schemeId, catalogId) {
477
	doDeleteAjaxRequestHandler(context + "/schemes/delete?schemeId=" + schemeId
478
		+ "&catalogId=" + catalogId, function (response) {
479
		if (response == 'true') {
480
			alert("Model Deleted successfully from Scheme");
481
			loadSchemeDetails(schemeId, "scheme-details-container");
482
		}
483
	});
23752 govind 484
}
30122 amit.gupta 485
 
486
 
487
function loadSearchItemScheme(domId, selectedModel, date) {
26802 tejbeer 488
	var searchText = $("#scheme-item-search-text").val();
489
	var category = $('#partner-category').val();
26912 tejbeer 490
 
26802 tejbeer 491
	if (typeof (searchText) == "undefined" || !searchText) {
492
		searchText = "";
493
	}
494
	if (typeof (category) == "undefined" || !category) {
495
		category = "";
496
	}
30122 amit.gupta 497
	if (searchText && category) {
498
		doGetAjaxRequestHandler(`${context}/getSchemes?searchModel=${selectedModel}&partnerType=${category}&date=${date}`, function (response) {
26802 tejbeer 499
			$('#' + domId).html(response);
500
			$('#partner-category').val(category);
501
		});
30122 amit.gupta 502
	} else if (searchText) {
30253 amit.gupta 503
		doGetAjaxRequestHandler(`${context}/getSchemes?searchModel=${selectedModel}&date=${date}`, function (response) {
26802 tejbeer 504
			$('#' + domId).html(response);
30253 amit.gupta 505
			$('#partner-category').val(category);
26802 tejbeer 506
		});
26912 tejbeer 507
 
508
	}
509
 
23752 govind 510
}
28795 tejbeer 511
 
512
function loadSearchImeiScheme(domId, selected_imei, date) {
513
	var category = $('#partner-category').val();
514
	var searchText = $("#scheme-imei-search-text").val();
515
 
516
	var category = $('#partner-category').val();
517
 
518
	console.log(category)
519
 
520
	if (typeof (searchText) == "undefined" || !searchText) {
521
		searchText = "";
522
	}
523
	if (typeof (category) == "undefined" || !category) {
524
		category = "";
525
	}
526
	if ((searchText) && (category)) {
527
		doGetAjaxRequestHandler(context + "/getSchemes?searchImei="
30122 amit.gupta 528
			+ selected_imei + "&partnerType=" + category, function (
529
			response) {
28795 tejbeer 530
			$('#' + domId).html(response);
531
 
532
			$('#partner-category').val(category);
533
			$('#scheme-imei-search-text').val(selected_imei);
534
		});
535
	} else if ((searchText)) {
30122 amit.gupta 536
		doGetAjaxRequestHandler(`${context}/getSchemes?searchImei=${selected_imei}&date=${date}`, function (response) {
28795 tejbeer 537
			$('#' + domId).html(response);
538
			$('#scheme-imei-search-text').val(selected_imei);
539
 
540
		});
541
 
542
	}
543
 
544
}
30122 amit.gupta 545
 
546
function loadSchemeItemSearchInfo(selectedModel, date) {
547
	loadSearchItemScheme("main-content", selectedModel, date);
23752 govind 548
}
28795 tejbeer 549
 
550
function loadSchemeImeiSearchInfo(selectedImei, date) {
551
 
552
	loadSearchImeiScheme("main-content", selectedImei, date);
553
}
554