Subversion Repositories SmartDukaan

Rev

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

Rev 33094 Rev 33096
Line 307... Line 307...
307
	if (endDate == "" || endDate == undefined) {
307
	if (endDate == "" || endDate == undefined) {
308
 
308
 
309
		alert("end date is not be empty!!");
309
		alert("end date is not be empty!!");
310
		return;
310
		return;
311
	}
311
	}
-
 
312
	let endPoint = `${context}/offerPayoutFetchReportByDate?startDate=${startDate}&endDate=${endDate}`;
-
 
313
	if (typeof partnerId != "undefined") {
-
 
314
		endPoint = `${endPoint}&fofoId=${partnerId}`;
-
 
315
	}
312
 
316
 
313
	doGetAjaxRequestHandler(endPoint,
317
	doGetAjaxRequestHandler(endPoint,
314
		function (response) {
318
		function (response) {
315
			$('#' + 'main-content').html(response);
319
			$('#' + 'main-content').html(response);
316
		});
320
		});