Subversion Repositories SmartDukaan

Rev

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

Rev 35539 Rev 35540
Line 85... Line 85...
85
	});
85
	});
86
}
86
}
87
 
87
 
88
function getPartnersPurchaseDetail(partnerIds) {
88
function getPartnersPurchaseDetail(partnerIds) {
89
	console.log(partnerIds)
89
	console.log(partnerIds)
90
	doGetAjaxRequestHandler(context + "/getMonthWisePurchase?fofoIds=" + partnerIds, function(response) {
90
	doPostAjaxRequestHandler(context + "/getMonthWisePurchase", {fofoIds: partnerIds.toString()}, function(response) {
91
		$('#' + "main-content").html(response);
91
		$('#' + "main-content").html(response);
92
		console.log(response)
92
		console.log(response)
93
	});
93
	});
94
}
94
}
95
</script>
95
</script>