Subversion Repositories SmartDukaan

Rev

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

Rev 24033 Rev 24042
Line 99... Line 99...
99
	$.ajax({
99
	$.ajax({
100
		type      : 'GET',
100
		type      : 'GET',
101
		url       : '/Support/bulk-order!getPartnerPrice',
101
		url       : '/Support/bulk-order!getPartnerPrice',
102
		data      : 'itemId=' + itemId,
102
		data      : 'itemId=' + itemId,
103
		success   : function(response) {
103
		success   : function(response) {
104
			$(trElement).find('div#unit_price').html(response);
104
			$(trElement).find('input[name="unit_price"]').val(response);
105
		}
105
		}
106
	});
106
	});
107
}
107
}