/*
 * バスケットのアイテム
 */

/**
 * バスケットの中身の全部削除
 */
function clearBasketItemAll()
{
    if (confirm('バスケットの中身を全削除しますか？')) {
        location.href='/basket/clear/target/all';
    }
}

/**
 * 発送情報入力画面へ遷移
 */
function goInput(str){
    if (str != '') {
        location.href = '/order/input/';
    }
}


/**
 * バスケットの商品の削除
 */
function deleteBasketItemTargetByItemID(item_id)
{
    if (confirm('この商品をキャンセルしますが、よろしいですか？')) {
        location.href='/basket/clear/item_id/' + item_id;
    }
}

/**
 * バスケットの商品の削除
 */
function deleteBasketItemKakou(item_id, color, kakou_id)
{
    if (!confirm('この加工内容を取り消しますか？')) {
        return;
    }
    var redirect_url = '/basket/clear/?item_id=' + item_id + '&color=' + color + '&kakou_id=' + kakou_id;

    location.href = redirect_url;
}

/**
 * バスケットの注文内容変更
 */
function basket_change(item_id, color, kakou_id)
{
    if (!confirm('この注文内容を変更しますか？')) {
        return;
    }
    var redirect_url = '/basket/change_item/?process=basket_update&md=' + item_id + '&co=' + color + '&gd=' + kakou_id;
    location.href = redirect_url;
}

