$(document).ready(function(){
    $("#changeAvailableShow").click(function() {
        if($(this).is(':checked')) {
            window.location = "/settings/hideNotAvailable/";
        } else {
            window.location = "/settings/showNotAvailable/";
        }
    });
    $("#deleteAll").click(function(){
        if (confirm("Вы действительно хотите удалить все продукты?"))
            window.location = "/basket/deleteAll/";
    });
    $("#manage > *").click(function(event){
        if (event.target.id == "deleteByID") {
            if (confirm("Вы действительно хотите удалить этот продукт?"))
                window.location = "/basket/delete/" + $(this).parent().parent().attr("id");
        }
        if (event.target.id == "recountByID") {
            window.location = "/basket/recountByID/" + $(this).parent().parent().attr("id") + "/" + $("#countProduct", $(this).parent().parent()).val();
        }
    });
});
function validateOrderSave(form) {
    if (form.contacts.value == '' || form.phone.value == '') {
        alert("Не все обязательные поля заполнены");
        return false;
    } else {
        return true;
    }
}
