|
@@ -274,13 +274,13 @@ function f_mobile_cert() {
|
274
|
274
|
|
275
|
275
|
/* 주문정보 확인 */
|
276
|
276
|
if( !frm_pay.sp_order_no.value ) {
|
277
|
|
- alert("브랜드그룹주문번호가 존재하지않습니다.");
|
|
277
|
+ itp_fn_modal_alert("브랜드그룹주문번호가 존재하지않습니다.");
|
278
|
278
|
frm_pay.sp_order_no.focus();
|
279
|
279
|
return;
|
280
|
280
|
}
|
281
|
281
|
|
282
|
282
|
if( !frm_pay.sp_product_amt.value ) {
|
283
|
|
- alert("상품금액이 존재하지않습니다.");
|
|
283
|
+ itp_fn_modal_alert("상품금액이 존재하지않습니다.");
|
284
|
284
|
frm_pay.sp_product_amt.focus();
|
285
|
285
|
return;
|
286
|
286
|
}
|
|
@@ -325,13 +325,13 @@ function f_moblie_submit() {
|
325
|
325
|
|
326
|
326
|
fn_ajax_call(EASYPAY_PAYMENT_REQUEST, JSON.stringify(param), function(result) {
|
327
|
327
|
|
328
|
|
- // console.log("RES : " + JSON.stringify(result));
|
|
328
|
+ console.log("RES : " + JSON.stringify(result));
|
329
|
329
|
|
330
|
330
|
if(result.res_cd == '0000') {
|
331
|
331
|
popPageObj.parentPopFn(result);
|
332
|
332
|
$('#ITP_BIZPOP_PO_PAYMENT').modal('hide'); // 팝업닫기
|
333
|
333
|
} else {
|
334
|
|
- alert(result.res_msg);
|
|
334
|
+ itp_fn_modal_alert(result.res_msg);
|
335
|
335
|
}
|
336
|
336
|
|
337
|
337
|
}, 'POST');
|