Subversion Repositories SmartDukaan

Rev

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

Rev 35540 Rev 35542
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
	$.ajax({
90
	doPostAjaxRequestHandler(context + "/getMonthWisePurchase", {fofoIds: partnerIds.toString()}, function(response) {
91
		url: context + "/getMonthWisePurchase",
-
 
92
		type: "POST",
-
 
93
		data: {fofoIds: partnerIds},
-
 
94
		traditional: true,
-
 
95
		success: function(response) {
91
		$('#' + "main-content").html(response);
96
			$('#main-content').html(response);
92
		console.log(response)
97
			console.log(response)
-
 
98
		}
93
	});
99
	});
94
}
100
}
95
</script>
101
</script>