Subversion Repositories SmartDukaan

Rev

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

Rev 23886 Rev 25298
Line 211... Line 211...
211
	doGetAjaxRequestHandler(context+"/getRechargeById?rechargeTransactionId="+rechargeTransactionId, function(response){
211
	doGetAjaxRequestHandler(context+"/getRechargeById?rechargeTransactionId="+rechargeTransactionId, function(response){
212
		$('#' + domId).html(response);
212
		$('#' + domId).html(response);
213
	});
213
	});
214
}
214
}
215
 
215
 
216
function loadRechargeCommissionDetails(domId, operatorId){
216
function loadRechargeCommissionDetails(domId, operatorId, providerId){
217
	doGetAjaxRequestHandler(context+"/getRechargeCommissionByOperatorId?operatorId="+operatorId+"&providerId="+providerId, function(response){
217
	doGetAjaxRequestHandler(context+"/getRechargeCommissionByOperatorId?operatorId="+operatorId+"&providerId="+providerId, function(response){
218
		$('#' + domId).html(response);
218
		$('#' + domId).html(response);
219
	});
219
	});
220
}
220
}
221
 
221