|
|
@@ -1380,6 +1380,24 @@ var paymentInfoSet = function() {
|
|
|
custPayMeans = "Y";
|
|
|
}
|
|
|
|
|
|
+ // 2021.11.08 card007 배송지 휴대폰번호 유효성 체크 추가
|
|
|
+ let phnno = $("#orderAmtForm .recipPhnno").text();
|
|
|
+
|
|
|
+ if (!gagajf.checkPhnno(phnno)) {
|
|
|
+ mcxDialog.alert("배송지 휴대폰 번호가 유효하지 않습니다.");
|
|
|
+
|
|
|
+ $('.fold_head').removeClass('on');
|
|
|
+ $('.fold_cont').css('display', 'none');
|
|
|
+
|
|
|
+ $("#deliveryAddrInfo .fold_head").addClass("on");
|
|
|
+ $("#deliveryAddrInfo .fold_cont").css("display", "block");
|
|
|
+
|
|
|
+ let offset = $('#deliveryAddrInfo').offset();
|
|
|
+ $('html, body').animate({scrollTop : offset.top - 50}, 0);
|
|
|
+
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
// 주문상세데이타 생성
|
|
|
$("#orderDetailInfo .cartSq").each(function () {
|
|
|
// 주문상세단위 총알배송여부 변경
|