From 5ebd6636a05e666ca59a71bef2275cf83545d116 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 8 May 2013 11:05:34 +0900 Subject: [PATCH 01/13] =?UTF-8?q?=ED=9C=B4=EB=8C=80=ED=8F=B0=20=EB=B3=B8?= =?UTF-8?q?=EC=9D=B8=ED=99=95=EC=9D=B8=20=EA=B2=BD=EA=B3=A0=EB=A9=94?= =?UTF-8?q?=EC=84=B8=EC=A7=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/board.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbs/board.php b/bbs/board.php index bad53d552..61034e624 100644 --- a/bbs/board.php +++ b/bbs/board.php @@ -64,7 +64,7 @@ if (isset($wr_id) && $wr_id) { } if ($board['bo_use_cert'] == 'adult' && !$member['mb_adult']) { - alert('이 게시판은 휴대폰 본인확인으로 성인인증 된 회원님만 글읽기가 가능합니다.\\n\\n성인인데 글읽기가 안된다면 회원정보 수정에서 휴대폰 본인확인을\\n다시 해주시기 바랍니다.', G4_URL); + alert('이 게시판은 휴대폰 본인확인으로 성인인증 된 회원님만 글읽기가 가능합니다.\\n\\n현재 성인인데 글읽기가 안된다면 회원정보 수정에서 휴대폰 본인확인을 다시 해주시기 바랍니다.', G4_URL); } } From 034b009d83acb78f0380a2e9fbfd077c5f919247 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 8 May 2013 11:06:00 +0900 Subject: [PATCH 02/13] =?UTF-8?q?G4=5FDOMAIN=20=EC=82=AC=EC=9A=A9=EC=95=88?= =?UTF-8?q?=ED=95=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config.php b/config.php index cda58baf6..f006b663f 100644 --- a/config.php +++ b/config.php @@ -24,7 +24,7 @@ if (PHP_VERSION >= '5.3.0') { 보안서버주소가 없다면 공란으로 두시면 되며 보안서버주소 뒤에 / 는 붙이지 않습니다. 입력예) https://www.domain.com:443/gnuboard4s */ -define('G4_DOMAIN', ''); +define('G4_DOMAIN', ''); // 사용하지 않습니다. define('G4_HTTPS_DOMAIN', ''); /* @@ -62,6 +62,12 @@ if (G4_DOMAIN) { define('G4_URL', ''); } +if (G4_HTTPS_DOMAIN) { + define('G4_URL', G4_HTTPS_DOMAIN); +} else { + define('G4_URL', G4_DOMAIN); +} + if (isset($g4_path['path'])) { define('G4_PATH', $g4_path['path']); } else { From 970080e994a150972c2bf05bd9d698c7a90e31e9 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 8 May 2013 11:28:33 +0900 Subject: [PATCH 03/13] =?UTF-8?q?charset=20utf-8=20=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/kcp/lib/ct_cli_lib.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/plugin/kcp/lib/ct_cli_lib.php b/plugin/kcp/lib/ct_cli_lib.php index 2b7e1dc13..dc40539d2 100644 --- a/plugin/kcp/lib/ct_cli_lib.php +++ b/plugin/kcp/lib/ct_cli_lib.php @@ -1,25 +1,25 @@ m_dec_data=""; } - // hash ó + // hash 처리 영역 function make_hash_data( $home_dir , $str ) { $hash_data = $this -> mf_exec( $home_dir . "/bin/ct_cli" , @@ -32,7 +32,7 @@ class C_CT_CLI return $hash_data; } - // dn_hash üũ Լ + // dn_hash 체크 함수 function check_valid_hash ($home_dir , $hash_data , $str ) { $ret_val = $this -> mf_exec( $home_dir . "/bin/ct_cli" , @@ -46,7 +46,7 @@ class C_CT_CLI return $ret_val; } - // ȣȭ ȣȭ + // 암호화 인증데이터 복호화 function decrypt_enc_cert ( $home_dir, $site_cd , $cert_no , $enc_cert_data , $opt) { $dec_data = $this -> mf_exec( $home_dir . "/bin/ct_cli" , @@ -62,7 +62,7 @@ class C_CT_CLI parse_str( str_replace( chr( 31 ), "&", $dec_data ), $this->m_dec_data ); } - // get data + // 인증데이터 get data function mf_get_key_value( $name ) { return $this->m_dec_data[ $name ]; From 2377f762ceab02814e6fa5718ad3339a7b37357b Mon Sep 17 00:00:00 2001 From: whitedot Date: Wed, 8 May 2013 13:17:29 +0900 Subject: [PATCH 04/13] =?UTF-8?q?=EB=A9=94=EC=9D=BC=EB=B0=9C=EC=86=A1?= =?UTF-8?q?=EC=9D=B4=20=EC=A0=9C=EB=8C=80=EB=A1=9C=20=EB=90=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8D=98=EA=B2=83=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/mail_select_list.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/adm/mail_select_list.php b/adm/mail_select_list.php index 186e46ead..c00b074eb 100644 --- a/adm/mail_select_list.php +++ b/adm/mail_select_list.php @@ -74,7 +74,6 @@ include_once('./admin.head.php');
- @@ -93,8 +92,7 @@ include_once('./admin.head.php'); $i=0; $ma_list = ""; $cr = ""; - while ($row=sql_fetch_array($result)) - { + while ($row=sql_fetch_array($result)) { $i++; $ma_list .= $cr . $row['mb_email'] . "||" . $row['mb_id'] . "||" . $row['mb_name'] . "||" . $row['mb_nick'] . "||" . $row['mb_datetime']; $cr = "\n"; @@ -110,6 +108,7 @@ include_once('./admin.head.php');
+
From a838f68c3a2cfb5dbfaff50492c7af2cab4626b9 Mon Sep 17 00:00:00 2001 From: whitedot Date: Wed, 8 May 2013 13:18:20 +0900 Subject: [PATCH 05/13] =?UTF-8?q?=EA=B6=8C=ED=95=9C=20=EC=84=A0=ED=83=9D?= =?UTF-8?q?=EC=8B=9C=20to=20=EB=A0=88=EB=B2=A8=EC=97=90=2010=20=EB=82=98?= =?UTF-8?q?=EC=98=A4=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/mail_select_form.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/adm/mail_select_form.php b/adm/mail_select_form.php index 466e9cc62..a7e437adc 100644 --- a/adm/mail_select_form.php +++ b/adm/mail_select_form.php @@ -85,7 +85,7 @@ include_once('./admin.head.php'); 에서 까지 @@ -98,8 +98,7 @@ include_once('./admin.head.php'); '.$row['gr_subject'].''; } ?> From bf16ad0ea8d5186c1d9048c40e0ace6874551334 Mon Sep 17 00:00:00 2001 From: whitedot Date: Wed, 8 May 2013 13:18:38 +0900 Subject: [PATCH 06/13] =?UTF-8?q?=EA=B2=BD=EB=A1=9C=20path=20=EB=A5=BC=20u?= =?UTF-8?q?rl=20=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/email_stop.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/bbs/email_stop.php b/bbs/email_stop.php index d94b7a7e9..6a1634ba8 100644 --- a/bbs/email_stop.php +++ b/bbs/email_stop.php @@ -6,16 +6,14 @@ $row = sql_fetch($sql); if (!$row[mb_id]) alert('존재하는 회원이 아닙니다.', G4_PATH); -if ($mb_md5) -{ +if ($mb_md5) { $tmp_md5 = md5($row[mb_id].$row[mb_email].$row[mb_datetime]); - if ($mb_md5 == $tmp_md5) - { + if ($mb_md5 == $tmp_md5) { sql_query(" update {$g4[member_table]} set mb_mailling = 0 where mb_id = '{$mb_id}' "); - alert('정보메일을 보내지 않도록 수신거부 하였습니다.', G4_PATH); + alert('정보메일을 보내지 않도록 수신거부 하였습니다.', G4_URL); } } -alert('제대로 된 값이 넘어오지 않았습니다.', G4_PATH); +alert('제대로 된 값이 넘어오지 않았습니다.', G4_URL); ?> \ No newline at end of file From c40741ced5bf41120ff87b81891c0f6bf8382ee1 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 8 May 2013 14:45:39 +0900 Subject: [PATCH 07/13] =?UTF-8?q?=ED=9C=B4=EB=8C=80=ED=8F=B0=20=EB=B3=B8?= =?UTF-8?q?=EC=9D=B8=ED=99=95=EC=9D=B8=EC=8B=9C=20=EB=B2=88=ED=98=B8=20?= =?UTF-8?q?=EC=82=AC=EC=9D=B4=EC=97=90=20-=EB=A5=BC=20=EB=84=A3=EC=96=B4?= =?UTF-8?q?=EC=84=9C=20=EC=A0=80=EC=9E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/member_list.php | 13 ++++--------- bbs/register_form.php | 2 +- bbs/register_form_update.php | 5 ++--- plugin/kcp/kcpcert_result.php | 4 +++- skin/member/basic/register_form.skin.php | 6 +++--- 5 files changed, 13 insertions(+), 17 deletions(-) diff --git a/adm/member_list.php b/adm/member_list.php index 94a389c2f..e866a0dec 100644 --- a/adm/member_list.php +++ b/adm/member_list.php @@ -151,13 +151,10 @@ $colspan = 15; if ($row2['cnt']) $group = ''.$row2['cnt'].''; - if ($is_admin == 'group') - { + if ($is_admin == 'group') { $s_mod = ''; $s_del = ''; - } - else - { + } else { $s_mod = '수정'; //$s_del = '삭제'; } @@ -197,10 +194,8 @@ $colspan = 15; - - - - + + diff --git a/bbs/register_form.php b/bbs/register_form.php index 2764b026e..160cdfdaf 100644 --- a/bbs/register_form.php +++ b/bbs/register_form.php @@ -86,7 +86,7 @@ if ($w == "") { $member['mb_password_a'] = get_text($member['mb_password_a']); $member['mb_birth'] = get_text($member['mb_birth']); $member['mb_tel'] = get_text($member['mb_tel']); - $member['mb_hp'] = hyphen_hp_number($member['mb_hp']); + $member['mb_hp'] = get_text($member['mb_hp']); $member['mb_addr1'] = get_text($member['mb_addr1']); $member['mb_addr2'] = get_text($member['mb_addr2']); $member['mb_signature'] = get_text($member['mb_signature']); diff --git a/bbs/register_form_update.php b/bbs/register_form_update.php index ad48fb7ff..278fc7264 100644 --- a/bbs/register_form_update.php +++ b/bbs/register_form_update.php @@ -269,9 +269,8 @@ if ($w == '') { ///////////////////////////////////////////////////////////////// $sql_hp_certify = ""; $md5_cert_no = get_session("ss_kcpcert_no"); - $hidden_hp = preg_replace("/[^0-9]/", "", $mb_hp); if ($config['cf_kcpcert_use'] && $md5_cert_no) { - $hash_data = md5($hidden_hp.$mb_name.$md5_cert_no); + $hash_data = md5($mb_hp.$mb_name.$md5_cert_no); // 해시값이 틀린 경우에는 휴대폰 인증 값을 무효화 한다. if (get_session("ss_kcpcert_hash") != $hash_data) { $sql_hp_certify .= " , mb_hp = '' "; @@ -280,7 +279,7 @@ if ($w == '') { } } else { if (get_session("ss_reg_mb_name") != $mb_name || - get_session("ss_reg_mb_hp") != $hidden_hp) { + get_session("ss_reg_mb_hp") != $mb_hp) { $sql_hp_certify .= " , mb_hp = '{$mb_hp}' "; $sql_hp_certify .= " , mb_hp_certify = 0 "; $sql_hp_certify .= " , mb_adult = 0 "; diff --git a/plugin/kcp/kcpcert_result.php b/plugin/kcp/kcpcert_result.php index 8295e44ae..8e112bf2f 100644 --- a/plugin/kcp/kcpcert_result.php +++ b/plugin/kcp/kcpcert_result.php @@ -132,6 +132,8 @@ if( $cert_enc_use == "Y" ) if(!$phone_no) alert_close("정상적인 인증이 아닙니다. 올바른 방법으로 이용해 주세요."); + $phone_no = hyphen_hp_number($phone_no); + $sql = " select count(*) as cnt from {$g4['member_table']} where mb_id <> '{$member['mb_id']}' and mb_hp = '{$phone_no}' "; $row = sql_fetch($sql); if ($row['cnt']) { @@ -174,7 +176,7 @@ $(function() { // 인증정보 $opener.$("input[name=mb_name]").val(""); - $opener.$("input[name=mb_hp]").val("").attr("readonly", true); + $opener.$("input[name=mb_hp]").val("").attr("readonly", true); alert("본인의 휴대폰번호로 확인 되었습니다."); window.close(); }); diff --git a/skin/member/basic/register_form.skin.php b/skin/member/basic/register_form.skin.php index 9b8354e09..8259ebaca 100644 --- a/skin/member/basic/register_form.skin.php +++ b/skin/member/basic/register_form.skin.php @@ -47,11 +47,11 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 -
+
휴대폰 본인확인성인인증 완료 -
+ @@ -100,7 +100,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 - class="frm_input " maxlength="20"> + class="frm_input " maxlength="20"> From 3850ae8fe376ccc5a348ed5c57eab675fec3bf7f Mon Sep 17 00:00:00 2001 From: chicpro Date: Wed, 8 May 2013 17:21:18 +0900 Subject: [PATCH 08/13] =?UTF-8?q?=EC=8A=A4=EB=A7=88=ED=8A=B8=ED=8F=B0=20?= =?UTF-8?q?=EA=B2=B0=EC=A0=9C=20=EB=AA=A8=EB=93=88=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extend/shop.extend.php | 2 + mobile/shop/kcp/_common.php | 7 + mobile/shop/kcp/cancel.php | 135 -------- mobile/shop/kcp/order_approval.php | 36 +- mobile/shop/kcp/order_approval_form.php | 13 +- mobile/shop/kcp/pp_ax_hub.php | 182 +--------- mobile/shop/kcp/pp_ax_hub_cancel.php | 59 ++++ mobile/shop/kcp/pp_ax_hub_result.php | 117 +++++++ mobile/shop/kcp/result.php | 433 ------------------------ mobile/shop/orderform.php | 198 ++++++++--- mobile/shop/orderformupdate.php | 351 +++++++++++++++++++ mobile/shop/settle_kcp.inc.php | 38 +-- shop/kcp/pp_ax_hub_cancel.php | 146 ++++---- shop/orderform.php | 10 +- 14 files changed, 804 insertions(+), 923 deletions(-) create mode 100644 mobile/shop/kcp/_common.php delete mode 100644 mobile/shop/kcp/cancel.php create mode 100644 mobile/shop/kcp/pp_ax_hub_cancel.php create mode 100644 mobile/shop/kcp/pp_ax_hub_result.php delete mode 100644 mobile/shop/kcp/result.php create mode 100644 mobile/shop/orderformupdate.php diff --git a/extend/shop.extend.php b/extend/shop.extend.php index 844b21a52..8f04f41fb 100644 --- a/extend/shop.extend.php +++ b/extend/shop.extend.php @@ -19,8 +19,10 @@ define('G4_MSHOP_URL', G4_MOBILE_URL.'/'.G4_SHOP_DIR); // 보안서버주소 설정 if (G4_HTTPS_DOMAIN) { define('G4_HTTPS_SHOP_URL', G4_HTTPS_DOMAIN.'/'.G4_SHOP_DIR); + define('G4_HTTPS_MSHOP_URL', G4_HTTPS_DOMAIN.'/'.G4_MOBILE_DIR.'/'.G4_SHOP_DIR); } else { define('G4_HTTPS_SHOP_URL', G4_SHOP_URL); + define('G4_HTTPS_MSHOP_URL', G4_MSHOP_URL); } // 미수금에 대한 QUERY 문 diff --git a/mobile/shop/kcp/_common.php b/mobile/shop/kcp/_common.php new file mode 100644 index 000000000..4c3769a19 --- /dev/null +++ b/mobile/shop/kcp/_common.php @@ -0,0 +1,7 @@ +쇼핑몰 설치 후 이용해 주십시오.

'); +define('_SHOP_', true); +?> \ No newline at end of file diff --git a/mobile/shop/kcp/cancel.php b/mobile/shop/kcp/cancel.php deleted file mode 100644 index 8427346aa..000000000 --- a/mobile/shop/kcp/cancel.php +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - *** KCP [AX-HUB Version] *** - - - - - - - -
- - - - - - - - - -
- - - - - - - - - - -
- [취소요청] 이 페이지는 결제건에 대해 취소를 요청하는 샘플(예시) 페이지입니다. -
-

소스 수정시 소스 안에 ※ 주의 ※표시가 포함된 문장은 - 가맹점의 상황에 맞게 적절히 수정 적용하시기 바랍니다.

-

이 페이지는 결제된 건에 대한 취소를 요청하는 페이지 입니다.

-

- 결제가 승인되면 결과값으로 KCP 거래번호(tno)값을 받으실 수 있습니다..
- 가맹점에서는 이 KCP 거래번호(tno)값으로 취소요청을 하실 수 있습니다.

-
- - - - - - - - - - - - - - - - - - - - -
취소 요청 정보
요청 구분취소 요청
KCP 거래번호
변경 사유
- - - - - - - - -
- - 처음으로 이동합니다 -
- -
Copyright(c) KCP Inc. All rights reserved.
- - - - - - -
- - diff --git a/mobile/shop/kcp/order_approval.php b/mobile/shop/kcp/order_approval.php index 7a70fa156..98ddded54 100644 --- a/mobile/shop/kcp/order_approval.php +++ b/mobile/shop/kcp/order_approval.php @@ -1,37 +1,35 @@ - + - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - +?> \ No newline at end of file diff --git a/mobile/shop/kcp/pp_ax_hub_cancel.php b/mobile/shop/kcp/pp_ax_hub_cancel.php new file mode 100644 index 000000000..6f66a5f30 --- /dev/null +++ b/mobile/shop/kcp/pp_ax_hub_cancel.php @@ -0,0 +1,59 @@ +mf_clear(); + + $tran_cd = "00200000"; + + $c_PayPlus->mf_set_modx_data( "tno", $tno ); // KCP 원거래 거래번호 + $c_PayPlus->mf_set_modx_data( "mod_type", "STSC" ); // 원거래 변경 요청 종류 + $c_PayPlus->mf_set_modx_data( "mod_ip", $cust_ip ); // 변경 요청자 IP + $c_PayPlus->mf_set_modx_data( "mod_desc", $cancel_msg ); // 변경 사유 + + $c_PayPlus->mf_do_tx( "", $g_conf_home_dir, $g_conf_site_cd, + $g_conf_site_key, $tran_cd, "", + $g_conf_gw_url, $g_conf_gw_port, "payplus_cli_slib", + $ordr_idxx, $cust_ip, $g_conf_log_level, + 0, 0 ); + + $res_cd = $c_PayPlus->m_res_cd; + $res_msg = $c_PayPlus->m_res_msg; + } + } +} // End of [res_cd = "0000"] +/* ============================================================================== */ + +if($locale_change) + setlocale(LC_CTYPE, $def_locale); +?> \ No newline at end of file diff --git a/mobile/shop/kcp/pp_ax_hub_result.php b/mobile/shop/kcp/pp_ax_hub_result.php new file mode 100644 index 000000000..8b0e60bc2 --- /dev/null +++ b/mobile/shop/kcp/pp_ax_hub_result.php @@ -0,0 +1,117 @@ + \ No newline at end of file diff --git a/mobile/shop/kcp/result.php b/mobile/shop/kcp/result.php deleted file mode 100644 index 8e03f4cb8..000000000 --- a/mobile/shop/kcp/result.php +++ /dev/null @@ -1,433 +0,0 @@ - - 업체로 문의하여 확인하시기 바랍니다."; - } - else - { - $res_msg_bsucc = "결제는 정상적으로 이루어졌지만 업체에서 결제 결과를 처리하는 중 오류가 발생하여 시스템에서 자동으로 취소 요청을 하였으나,
취소가 실패 되었습니다.
업체로 문의하여 확인하시기 바랍니다."; - } - } - } - - /* = -------------------------------------------------------------------------- = */ - /* = 가맹점 측 DB 처리 실패시 상세 결과 메시지 설정 끝 = */ - /* ============================================================================== */ -?> - - - - - - - 스마트폰 웹 결제창 - - - - - - - - -
- - - - - - -
- - - - - - - - -
- [결과출력] 이 페이지는 결제 결과를 출력하는 샘플(예시) 페이지입니다. -
- 결제 결과를 출력하는 페이지 입니다.
- 요청이 정상적으로 처리된 경우 결과코드(res_cd)값이 0000으로 표시됩니다. -
- - - - - - - - - - - - -
처리 결과()
결과코드
결과 메세지
결과 상세 메세지
- - - - - - - - - - - - - - - - - - - - -
주 문 정 보
주문번호
KCP 거래번호
결제금액
상품명
주문자명
주문자 전화번호
주문자 휴대폰번호
주문자 E-mail
- - - - - - - - - - - - - - - - - - - - - - - -
신용카드 정보
결제수단신용카드
결제카드 /
승인시간
승인번호
할부개월
무이자여부
영수증 확인영수증을 확인합니다. -
※ 영수증 확인은 실제결제의 경우에만 가능합니다.
- - - - - - - - - - - - -
계좌이체 정보
결제수단계좌이체
이체 은행
이체 은행코드
승인 시간
- - - - - - - - - - - - -
가상계좌 정보
결제수단가상계좌
입금할 은행
입금할 계좌 예금주
입금할 계좌 번호
- - - - - - - - - - - - - - - - - - - - - - -
포인트 정보
결제수단포인트
포인트사
결제 및 인증 아이디
포인트 승인시간
포인트 승인번호
적립금액 or 사용금액
발생 포인트
사용가능 포인트
총 누적 포인트
- - - - - - - - - - - -
휴대폰 정보
결제수단휴대폰
승인시간
통신사코드
휴대폰번호
- - - - - - - - - - - -
상품권 정보
결제수단상품권
발급사코드
승인시간
승인번호
- - - - - - - - - - - - - -
현금영수증 정보
현금영수증 등록여부
현금영수증 승인번호
영수증 확인현금영수증을  확인합니다. -
※ 영수증 확인은 실제결제의 경우에만 가능합니다.
- - - -
처음으로 이동합니다
-
Copyright(c) KCP Inc. All rights reserved.
-
- - diff --git a/mobile/shop/orderform.php b/mobile/shop/orderform.php index b41ea42ca..50ae254d9 100644 --- a/mobile/shop/orderform.php +++ b/mobile/shop/orderform.php @@ -23,6 +23,10 @@ include_once(G4_MSHOP_PATH.'/_head.php'); // 새로운 주문번호 생성 $od_id = get_uniqid(); set_session('ss_order_uniqid', $od_id); + +// 결제등록 요청시 사용할 입금마감일 +$ipgm_date = date("Ymd", (G4_SERVER_TIME + 86400 * 5)); +$tablet_size = "1.0"; // 화면 사이즈 조정 - 기기화면에 맞게 수정(갤럭시탭,아이패드 - 1.85, 스마트폰 - 1.0) ?>
@@ -40,17 +44,120 @@ set_session('ss_order_uniqid', $od_id); $good_mny = (int)$tot_sell_amount + (int)$send_cost; - $order_action_url = G4_HTTPS_SHOP_URL.'/orderformupdate.php'; + $order_action_url = G4_HTTPS_MSHOP_URL.'/orderformupdate.php'; ?> + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- -

주문하시는 분

@@ -292,15 +399,35 @@ set_session('ss_order_uniqid', $od_id); ?>
- - + + + + + + + + + + + + + + + + + + + + + + + -