Subversion Repositories SmartDukaan

Rev

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

Rev 5909 Rev 5917
Line 885... Line 885...
885
            });
885
            });
886
		}
886
		}
887
	});
887
	});
888
}
888
}
889
	
889
	
890
function extendExpiryDate(domId, orderId, pickupExtension) {
890
function extendExpiryDate(domId, ticketId, orderId, pickupExtension) {
891
    $.ajax({
891
    $.ajax({
892
        type : "POST",
892
        type : "POST",
893
        url : "/crm/tickets!extendExpiry?orderId=" + orderId + "&pickupExtension=" + pickupExtension,
893
        url : "/crm/tickets!extendExpiry?id=" + ticketId + "&orderId=" + orderId + "&pickupExtension=" + pickupExtension,
894
        success : function(response) {
894
        success : function(response) {
895
            $('#' + domId).html(response);
895
            $('#' + domId).html(response);
896
        }
896
        }
897
    });
897
    });
898
}
898
}
899
899