Subversion Repositories SmartDukaan

Rev

Rev 35542 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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