Subversion Repositories SmartDukaan

Rev

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

Rev 27797 Rev 28071
Line 23... Line 23...
23
	$(document).on('click', ".partner-readonly-info", function() {
23
	$(document).on('click', ".partner-readonly-info", function() {
24
		partnerInfo("main-content")
24
		partnerInfo("main-content")
25
 
25
 
26
 
26
 
27
	});
27
	});
-
 
28
	$(document).on('click', ".block-brand-mapping", function() {
-
 
29
		blockBrandMapping("main-content")
-
 
30
 
-
 
31
 
-
 
32
	});
28
 
33
 
29
 
34
 
30
	$(document).on('click', ".partnerInfoReadOnly",
35
	$(document).on('click', ".partnerInfoReadOnly",
31
		function() {
36
		function() {
32
 
37
 
Line 297... Line 302...
297
	doGetAjaxRequestHandler(context + "/getPartnerReadonlyInfo", function(response) {
302
	doGetAjaxRequestHandler(context + "/getPartnerReadonlyInfo", function(response) {
298
		$('#' + domId).html(response);
303
		$('#' + domId).html(response);
299
 
304
 
300
	});
305
	});
301
}
306
}
-
 
307
function blockBrandMapping(domId) {
-
 
308
	doGetAjaxRequestHandler(context + "/getBlockBrandMapping", function(response) {
-
 
309
		$('#' + domId).html(response);
-
 
310
 
-
 
311
	});
-
 
312
}
302
 
313
 
303
function storeInfo(domId) {
314
function storeInfo(domId) {
304
	doGetAjaxRequestHandler(context + "/getAllStores", function(response) {
315
	doGetAjaxRequestHandler(context + "/getAllStores", function(response) {
305
		$('#' + domId).html(response);
316
		$('#' + domId).html(response);
306
	});
317
	});