$(document).ready(function() {
    bindAllGroupHotelClickEvent();
    bindGroupHotelClickEvent();
});

function bindAllGroupHotelClickEvent() {
    $("#group_hotel_checkbox_all").click(function() {
        var checkedValue = $(this).attr('checked');
        $("input[name='condition.groupHotelCodes']").each(function() {
            this.checked = checkedValue;
        });

    });
}

function bindGroupHotelClickEvent() {
    $("input[name='condition.groupHotelCodes']").click(function() {
        if (!$(this).attr('checked')) {
            $("#group_hotel_checkbox_all").attr('checked', '');
        }
        var allChecked = true;
        $("input[name='condition.groupHotelCodes']").each(function() {
            if (!this.checked) {
                allChecked = false;
            }
        });
        if (allChecked) {
            $("#group_hotel_checkbox_all").attr('checked', 'true');
        } else {
            $("#group_hotel_checkbox_all").attr('checked', '');
        }
    });
}
