Subversion Repositories SmartDukaan

Rev

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

Rev 33319 Rev 33367
Line 208... Line 208...
208
 
208
 
209
	$(document).on('click', ".change-partner",
209
	$(document).on('click', ".change-partner",
210
		function() {
210
		function() {
211
 
211
 
212
			var orderId = $(this).data('poid');
212
			var orderId = $(this).data('poid');
-
 
213
            var pinCode = $(this).data('pincode');
213
			doGetAjaxRequestHandler(context
214
			doGetAjaxRequestHandler(context
214
				+ "/getPendingOrderChangePartnerById?id=" + orderId, function(response) {
215
                + "/getPendingOrderChangePartnerById?id=" + orderId + "&&pinCode=" + pinCode, function (response) {
215
					$('.change-partner-online-order-container  .modal-content').html(response);
216
					$('.change-partner-online-order-container  .modal-content').html(response);
216
				});
217
				});
217
		});
218
		});
218
 
219
 
219
 
220