$(document).ready(function(){

	// 2023.10.19 gcs ksm : #20548 선물하기 클릭시 안내 경고문 한번 더 띄워주기
	$(".addPresent").unbind(); //기존 함수 무력화
	$(".addPresent").bind("click",function(){
		//희망 배송일 관련
		var hop_status = $(".hop > .desc").text();
		var hop_date = $(".hop > .hop_view_date").text();
		if(hop_status == '(필수)' && hop_date == '(미선택)'){
			alert('희망배송일이 선택 되지 않았습니다.');
			return false;
		}

		var shipping_set_code = $("select[name='shipping_method'] option:selected").attr('shipping_set_code');
		var nation				= $("select[name='shipping_method'] option:selected").attr('nation');
		if (shipping_set_code != 'delivery') {
			alert(getAlert('gv113'));
			return false;
		}

		if (nation == 'global') {
			alert(getAlert('gv114'));
			return false;
		}
		
		if( check_option() ){
			// 2023.10.19 gcs ksm : #20548 선물하기 클릭시 안내 경고문 한번 더 띄워주기
			openDialogConfirm('선물하기는 받으시는 분이 직접 배송정보를 입력하는 기능입니다. \n받으시는 분이 7일 이내에 배송정보를 입력하지 않을 경우 \n주문은 자동취소됩니다. \n\n선물하기를 진행하시겠습니까?',400,140,function(){
				var f = $("form[name='goodsForm']");
				f.attr("action", "/order/add?mode=direct");
				f.append($('<input/>', {type: 'hidden', name: 'label', value:'present' }));
				f.trigger('submit');
				f.attr("action","/order/add");
			},function(){
			});
		}
	});
});
