|
@@ -326,13 +326,14 @@ function f_moblie_submit() {
|
326
|
326
|
fn_ajax_call(EASYPAY_PAYMENT_REQUEST, JSON.stringify(param), function(result) {
|
327
|
327
|
|
328
|
328
|
console.log("RES : " + JSON.stringify(result));
|
|
329
|
+ console.log("RES_CD : " + result.res_cd);
|
329
|
330
|
|
330
|
|
- if(result.res_cd == '0000') {
|
|
331
|
+ if(result.res_cd === '0000') {
|
331
|
332
|
popPageObj.parentPopFn(result);
|
|
333
|
+ $('#ITP_BIZPOP_PO_PAYMENT').modal('hide'); // 팝업닫기
|
332
|
334
|
} else {
|
333
|
335
|
itp_fn_modal_alert(result.res_msg);
|
334
|
336
|
}
|
335
|
|
- $('#ITP_BIZPOP_PO_PAYMENT').modal('hide'); // 팝업닫기
|
336
|
337
|
|
337
|
338
|
}, 'POST');
|
338
|
339
|
}
|