From f6fd7d0f6e1f8a3563acf7899fcce9854169d089 Mon Sep 17 00:00:00 2001 From: gnuboard Date: Mon, 7 Oct 2013 14:09:14 +0900 Subject: [PATCH 01/24] =?UTF-8?q?=EC=82=AC=EC=9A=A9=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8A=94=20get=5Flist=5Ffile()=20=ED=95=A8=EC=88=98?= =?UTF-8?q?=20=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common.lib.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/common.lib.php b/lib/common.lib.php index ee1bb82ac..cbaf196db 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -287,18 +287,6 @@ function get_file($bo_table, $wr_id) } -// 게시글 리스트에 쓰일 1개의 파일 정보를 얻는다. -function get_list_file($bo_table, $wr_id) -{ - global $g5; - - $sql = " select * from {$g5['board_file_table']} where bo_table = '$bo_table' and wr_id = '$wr_id' order by bf_no "; - $row = sql_fetch($sql); - - return $row; -} - - // 폴더의 용량 ($dir는 / 없이 넘기세요) function get_dirsize($dir) { From 3483b48d9a71a4a06a1733110962244e67a3573f Mon Sep 17 00:00:00 2001 From: gnuboard Date: Mon, 7 Oct 2013 17:23:25 +0900 Subject: [PATCH 02/24] =?UTF-8?q?=EC=A3=BC=EB=AC=B8=EA=B4=80=EB=A6=AC=20?= =?UTF-8?q?=EB=A6=AC=EC=8A=A4=ED=8A=B8=20=EC=88=98=EC=A0=95=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/orderlist.php | 9 ++ adm/shop_admin/orderlistupdate.php | 167 +++++++++++++++++++++++++---- 2 files changed, 158 insertions(+), 18 deletions(-) diff --git a/adm/shop_admin/orderlist.php b/adm/shop_admin/orderlist.php index c22809014..c2c520029 100644 --- a/adm/shop_admin/orderlist.php +++ b/adm/shop_admin/orderlist.php @@ -345,10 +345,19 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 + + + + + + + + +

"무통장"인 경우에만 "주문"에서 "입금"으로 변경됩니다. 가상계좌는 입금시 자동으로 "입금" 처리됩니다.

diff --git a/adm/shop_admin/orderlistupdate.php b/adm/shop_admin/orderlistupdate.php index 31a5017fc..369a7cd2b 100644 --- a/adm/shop_admin/orderlistupdate.php +++ b/adm/shop_admin/orderlistupdate.php @@ -2,35 +2,154 @@ $sub_menu = '400400'; include_once('./_common.php'); +//print_r2($_POST); + // 주문상태변경 처리 function change_order_status($od_status1, $od_status2, $od) { global $g5; // 원래 주문상태와 바뀔 주문상태가 같다면 처리하지 않음 - if ($od_status1 == $od_status2) return ''; + if ($od_status1 == $od_status2) return; - $od_id = $od['od_id']; + $od = sql_fetch(" select od_settle_case from {$g5['g5_shop_order_table']} where od_id = '$od_id' "); + if (!$od) return; + + switch ($od_status1) + { + case '주문' : + + if ($od_status2 != '입금') return; + if ($od['od_settle_case'] != '무통장') return; - if ($od_status1 == '주문') { - if ($od_status2 == '입금') { - if ($od['od_settle_case'] != '무통장') return ''; $sql = " update {$g5['g5_shop_order_table']} set od_status = '입금', od_receipt_price = od_misu, - od_misu = 0 - where od_id = '$od_id' "; + od_misu = 0, + od_receipt_time = '".G5_TIME_YMDHIS."' + where od_id = '$od_id' and od_status = '주문' "; sql_query($sql, true); - /* - $sql = " update {$g5['g5_shop_cart_table']} set ct_status = '결제완료' where od_id = '$od_id' and ct_status not in ('취소', '반품', '품절') "; - sql_query($sql); - */ - } - } -} + $sql = " update {$g5['g5_shop_cart_table']} + set ct_status = '입금' + where od_id = '$od_id' and ct_status = '주문' "; + sql_query($sql, true); -print_r2($_POST); + break; + + case '입금' : + + if ($od_status2 != '준비') return; + + $sql = " update {$g5['g5_shop_order_table']} + set od_status = '준비' + where od_id = '$od_id' and od_status = '입금' "; + sql_query($sql, true); + + $sql = " update {$g5['g5_shop_cart_table']} + set ct_status = '준비' + where od_id = '$od_id' and ct_status = '입금' "; + sql_query($sql, true); + + break; + + case '준비' : + + if ($od_status2 != '배송') return; + + $sql = " update {$g5['g5_shop_order_table']} + set od_status = '배송' + where od_id = '$od_id' and od_status = '준비' "; + sql_query($sql, true); + + $sql = " update {$g5['g5_shop_cart_table']} + set ct_status = '배송' + where od_id = '$od_id' and ct_status = '준비' "; + sql_query($sql, true); + + $sql = " select * from {$g5['g5_shop_cart_table']} where od_id = '$od_id' "; + $result = sql_query($sql); + for ($i=0; $row=sql_fetch_array($result); $i++) { + // 재고를 이미 사용했다면 (재고에서 이미 뺐다면) + $stock_use = $row['ct_stock_use']; + if ($row['ct_stock_use']) + { + if ($ct_status == '주문' || $ct_status == '취소' || $ct_status == '반품' || $ct_status == '품절') + { + $stock_use = 0; + // 재고에 다시 더한다. + if($row['io_id']) { + $sql = " update {$g5['g5_shop_item_option_table']} + set io_stock_qty = io_stock_qty + '{$row['ct_qty']}' + where it_id = '{$row['it_id']}' + and io_id = '{$row['io_id']}' + and io_type = '{$row['io_type']}' "; + } else { + $sql = " update {$g5['g5_shop_item_table']} + set it_stock_qty = it_stock_qty + '{$row['ct_qty']}' + where it_id = '{$row['it_id']}' "; + } + + sql_query($sql); + } + } + else + { + // 재고 오류로 인한 수정 + if ($ct_status == '배송' || $ct_status == '완료') + { + $stock_use = 1; + // 재고에서 뺀다. + if($row['io_id']) { + $sql = " update {$g5['g5_shop_item_option_table']} + set io_stock_qty = io_stock_qty - '{$row['ct_qty']}' + where it_id = '{$row['it_id']}' + and io_id = '{$row['io_id']}' + and io_type = '{$row['io_type']}' "; + } else { + $sql = " update {$g5['g5_shop_item_table']} + set it_stock_qty = it_stock_qty - '{$row['ct_qty']}' + where it_id = '{$row['it_id']}' "; + } + + sql_query($sql); + } + } + + $point_use = $row['ct_point_use']; + // 회원이면서 포인트가 0보다 크면 + // 이미 포인트를 부여했다면 뺀다. + if ($od['mb_id'] && $row['ct_point'] && $row['ct_point_use']) + { + $point_use = 0; + delete_point($od['mb_id'], "@delivery", $od['mb_id'], "$od_id,{$row['ct_id']}"); + } + + $sql = " update {$g5['g5_shop_cart_table']} + set ct_point_use = '$point_use', + ct_stock_use = '$stock_use', + ct_status = '$ct_status', + ct_history = CONCAT(ct_history,'$ct_history') + where od_id = '$row['od_id']' "; + sql_query($sql); + } + + break; + } + + // 주문정보 + $info = get_order_info($od_id); + if(!$info) continue; + + $sql = " update {$g5['g5_shop_order_table']} + set od_misu = '{$info['od_misu']}', + od_tax_mny = '{$info['od_tax_mny']}', + od_vat_mny = '{$info['od_vat_mny']}', + od_free_mny = '{$info['od_free_mny']}', + od_send_cost = '{$info['od_send_cost']}' + where od_id = '$od_id' "; + sql_query($sql, true); +} for ($i=0; $i"; } + +$qstr = "sort1=$sort1&sort2=$sort2&sel_field=$sel_field&search=$search"; +$qstr .= "&od_status=$od_status"; +$qstr .= "&od_settle_case=$od_settle_case"; +$qstr .= "&od_misu=$od_misu"; +$qstr .= "&od_cancel_price=$od_cancel_price"; +$qstr .= "&od_receipt_price=$od_receipt_price"; +$qstr .= "&od_receipt_point=$od_receipt_point"; +$qstr .= "&od_receipt_coupon=$od_receipt_coupon"; +//$qstr .= "&page=$page"; + +goto_url("./orderlist.php?$qstr"); +?> \ No newline at end of file From 988b6f062b086743b2dd7055252869dbc962dcd0 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 10:10:49 +0900 Subject: [PATCH 03/24] =?UTF-8?q?=EC=83=81=ED=92=88=EB=AC=B8=EC=9D=98=20?= =?UTF-8?q?=ED=9B=84=EA=B8=B0=20=EB=82=B4=EC=9A=A9=20=EA=B8=80=EC=9E=90?= =?UTF-8?q?=EC=88=98=20=EC=B2=B4=ED=81=AC=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/shop/itemqaform.php | 3 -- mobile/shop/itemuseform.php | 3 -- mobile/skin/shop/basic/itemqaform.skin.php | 17 +---------- mobile/skin/shop/basic/itemuseform.skin.php | 32 +-------------------- shop/itemqaform.php | 3 -- shop/itemuseform.php | 3 -- skin/shop/basic/itemqaform.skin.php | 17 +---------- skin/shop/basic/itemuseform.skin.php | 17 +---------- 8 files changed, 4 insertions(+), 91 deletions(-) diff --git a/mobile/shop/itemqaform.php b/mobile/shop/itemqaform.php index a428fed6e..279205068 100644 --- a/mobile/shop/itemqaform.php +++ b/mobile/shop/itemqaform.php @@ -6,9 +6,6 @@ if (!$is_member) { alert_close("상품문의는 회원만 작성 가능합니다."); } -// 상품문의의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$iq_question_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $iq_id = escape_trim($_REQUEST['iq_id']); diff --git a/mobile/shop/itemuseform.php b/mobile/shop/itemuseform.php index 2efe83ede..50a316843 100644 --- a/mobile/shop/itemuseform.php +++ b/mobile/shop/itemuseform.php @@ -6,9 +6,6 @@ if (!$is_member) { alert_close("사용후기는 회원만 작성 가능합니다."); } -// 사용후기의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$is_content_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $is_id = escape_trim($_REQUEST['is_id']); diff --git a/mobile/skin/shop/basic/itemqaform.skin.php b/mobile/skin/shop/basic/itemqaform.skin.php index 2d421d050..0cd1da067 100644 --- a/mobile/skin/shop/basic/itemqaform.skin.php +++ b/mobile/skin/shop/basic/itemqaform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

상품문의 쓰기

-
+ @@ -35,19 +35,4 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
- - \ No newline at end of file diff --git a/mobile/skin/shop/basic/itemuseform.skin.php b/mobile/skin/shop/basic/itemuseform.skin.php index eb5fbb4d8..7f1ece72c 100644 --- a/mobile/skin/shop/basic/itemuseform.skin.php +++ b/mobile/skin/shop/basic/itemuseform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

사용후기 쓰기

-
+ @@ -68,34 +68,4 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
- - \ No newline at end of file diff --git a/shop/itemqaform.php b/shop/itemqaform.php index 97172a07f..16d2a1a38 100644 --- a/shop/itemqaform.php +++ b/shop/itemqaform.php @@ -12,9 +12,6 @@ if (!$is_member) { alert_close("상품문의는 회원만 작성 가능합니다."); } -// 상품문의의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$iq_question_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $iq_id = escape_trim($_REQUEST['iq_id']); diff --git a/shop/itemuseform.php b/shop/itemuseform.php index fa9c24ca7..3bed49711 100644 --- a/shop/itemuseform.php +++ b/shop/itemuseform.php @@ -12,9 +12,6 @@ if (!$is_member) { alert_close("사용후기는 회원만 작성 가능합니다."); } -// 사용후기의 내용에 쓸수 있는 최대 글자수 (한글은 영문3자) -$is_content_max_length = 10000; - $w = escape_trim($_REQUEST['w']); $it_id = escape_trim($_REQUEST['it_id']); $is_id = escape_trim($_REQUEST['is_id']); diff --git a/skin/shop/basic/itemqaform.skin.php b/skin/shop/basic/itemqaform.skin.php index 0168259e5..25a4d0594 100644 --- a/skin/shop/basic/itemqaform.skin.php +++ b/skin/shop/basic/itemqaform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

상품문의 쓰기

-
+ @@ -35,19 +35,4 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
- - \ No newline at end of file diff --git a/skin/shop/basic/itemuseform.skin.php b/skin/shop/basic/itemuseform.skin.php index 72fee20aa..674469bca 100644 --- a/skin/shop/basic/itemuseform.skin.php +++ b/skin/shop/basic/itemuseform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

사용후기 쓰기

-
+ @@ -68,19 +68,4 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
- - \ No newline at end of file From 7bd9d5cca0b392cbe2e3c75cd0cf611da5c743f4 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 10:11:37 +0900 Subject: [PATCH 04/24] =?UTF-8?q?mysql=20=ED=95=98=EC=9C=84=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=EC=97=90=EC=84=9C=EC=9D=98=20show=20columns=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/board_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adm/board_form.php b/adm/board_form.php index 93fe33aef..af32caff6 100644 --- a/adm/board_form.php +++ b/adm/board_form.php @@ -61,7 +61,7 @@ if (!isset($board['bo_use_sns'])) { } } -$sql = " SHOW COLUMNS FROM `{$g5['board_table']}` WHERE field = 'bo_use_cert' "; +$sql = " SHOW COLUMNS FROM `{$g5['board_table']}` LIKE 'bo_use_cert' "; $row = sql_fetch($sql); if(strpos($row['Type'], 'hp-') === false) { sql_query(" ALTER TABLE `{$g5['board_table']}` CHANGE `bo_use_cert` `bo_use_cert` ENUM('','cert','adult','hp-cert','hp-adult') NOT NULL DEFAULT '' ", false); From 97a86865fb3b1421285c2fa251fcb28dd2bb4ac8 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 10:19:50 +0900 Subject: [PATCH 05/24] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EA=B8=80?= =?UTF-8?q?=EC=93=B0=EA=B8=B0=20=EC=B5=9C=EC=86=8C=20=EC=B5=9C=EB=8C=80=20?= =?UTF-8?q?=EA=B8=80=EC=88=98=20=EC=84=A4=EC=A0=95=20=EC=95=88=EB=82=B4=20?= =?UTF-8?q?=EB=82=B4=EC=9A=A9=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/board_form.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adm/board_form.php b/adm/board_form.php index af32caff6..97483ff48 100644 --- a/adm/board_form.php +++ b/adm/board_form.php @@ -671,7 +671,7 @@ $pg_anchor = '
    - + @@ -684,7 +684,7 @@ $pg_anchor = '
      - + From 3722fbe36002ba907efd3b57a5a9315cb8a04ad6 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 10:22:07 +0900 Subject: [PATCH 06/24] =?UTF-8?q?=EC=83=81=ED=92=88=EB=AC=B8=EC=9D=98=20?= =?UTF-8?q?=ED=9B=84=EA=B8=B0=20=EB=82=B4=EC=9A=A9=20=EA=B8=80=EC=9E=90?= =?UTF-8?q?=EC=88=98=20=EC=B2=B4=ED=81=AC=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EC=9E=AC=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/skin/shop/basic/itemqaform.skin.php | 11 ++++++++++- mobile/skin/shop/basic/itemuseform.skin.php | 11 ++++++++++- skin/shop/basic/itemqaform.skin.php | 11 ++++++++++- skin/shop/basic/itemuseform.skin.php | 11 ++++++++++- 4 files changed, 40 insertions(+), 4 deletions(-) diff --git a/mobile/skin/shop/basic/itemqaform.skin.php b/mobile/skin/shop/basic/itemqaform.skin.php index 0cd1da067..989ee8d48 100644 --- a/mobile/skin/shop/basic/itemqaform.skin.php +++ b/mobile/skin/shop/basic/itemqaform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

      상품문의 쓰기

      -
      + @@ -35,4 +35,13 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
      + + \ No newline at end of file diff --git a/mobile/skin/shop/basic/itemuseform.skin.php b/mobile/skin/shop/basic/itemuseform.skin.php index 7f1ece72c..01a96402c 100644 --- a/mobile/skin/shop/basic/itemuseform.skin.php +++ b/mobile/skin/shop/basic/itemuseform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

      사용후기 쓰기

      -
      + @@ -68,4 +68,13 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
      + + \ No newline at end of file diff --git a/skin/shop/basic/itemqaform.skin.php b/skin/shop/basic/itemqaform.skin.php index 25a4d0594..122da842a 100644 --- a/skin/shop/basic/itemqaform.skin.php +++ b/skin/shop/basic/itemqaform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

      상품문의 쓰기

      -
      + @@ -35,4 +35,13 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
      + + \ No newline at end of file diff --git a/skin/shop/basic/itemuseform.skin.php b/skin/shop/basic/itemuseform.skin.php index 674469bca..95d19d472 100644 --- a/skin/shop/basic/itemuseform.skin.php +++ b/skin/shop/basic/itemuseform.skin.php @@ -8,7 +8,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

      사용후기 쓰기

      -
      + @@ -68,4 +68,13 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
      + + \ No newline at end of file From 11c7277319c1a29b16c8d9add58de5fcd163825f Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 11:06:16 +0900 Subject: [PATCH 07/24] =?UTF-8?q?=EC=83=81=ED=92=88=EB=AC=B8=EC=9D=98=20?= =?UTF-8?q?=ED=9B=84=EA=B8=B0=20=EB=82=B4=EC=9A=A9=EC=97=86=EC=9D=84=20?= =?UTF-8?q?=EB=95=8C=20=EC=B2=B4=ED=81=AC=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/skin/shop/basic/itemqaform.skin.php | 4 +++- mobile/skin/shop/basic/itemuseform.skin.php | 4 +++- skin/shop/basic/itemqaform.skin.php | 4 +++- skin/shop/basic/itemuseform.skin.php | 4 +++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/mobile/skin/shop/basic/itemqaform.skin.php b/mobile/skin/shop/basic/itemqaform.skin.php index 989ee8d48..d091a5060 100644 --- a/mobile/skin/shop/basic/itemqaform.skin.php +++ b/mobile/skin/shop/basic/itemqaform.skin.php @@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 - + @@ -41,6 +41,8 @@ function fitemqa_submit(f) { + + return true; } diff --git a/mobile/skin/shop/basic/itemuseform.skin.php b/mobile/skin/shop/basic/itemuseform.skin.php index 01a96402c..c67fbcdf8 100644 --- a/mobile/skin/shop/basic/itemuseform.skin.php +++ b/mobile/skin/shop/basic/itemuseform.skin.php @@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 - + @@ -74,6 +74,8 @@ function fitemuse_submit(f) { + + return true; } diff --git a/skin/shop/basic/itemqaform.skin.php b/skin/shop/basic/itemqaform.skin.php index 122da842a..692a17a38 100644 --- a/skin/shop/basic/itemqaform.skin.php +++ b/skin/shop/basic/itemqaform.skin.php @@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 - + @@ -41,6 +41,8 @@ function fitemqa_submit(f) { + + return true; } diff --git a/skin/shop/basic/itemuseform.skin.php b/skin/shop/basic/itemuseform.skin.php index 95d19d472..d95b308d8 100644 --- a/skin/shop/basic/itemuseform.skin.php +++ b/skin/shop/basic/itemuseform.skin.php @@ -21,7 +21,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 - + @@ -74,6 +74,8 @@ function fitemuse_submit(f) { + + return true; } From fb9bc90ec03561a227cf28b3d59e785c1b883644 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 13:43:58 +0900 Subject: [PATCH 08/24] =?UTF-8?q?=EC=83=81=ED=92=88=20=EC=B9=B4=ED=85=8C?= =?UTF-8?q?=EA=B3=A0=EB=A6=AC=20=EC=97=AC=EB=B6=84=ED=95=84=EB=93=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/categoryform.php | 30 +++++++++++++++-- adm/shop_admin/categoryformupdate.php | 22 ++++++++++++- adm/shop_admin/itemform.php | 33 +++++++++++++++++++ adm/shop_admin/itemformupdate.php | 42 +++++++++++++++++++++++- extend/shop.extend2.php | 46 +++++++++++++++++++++++++++ install/gnuboard5shop.sql | 42 ++++++++++++++++++++++++ 6 files changed, 211 insertions(+), 4 deletions(-) diff --git a/adm/shop_admin/categoryform.php b/adm/shop_admin/categoryform.php index d3521fd5a..a4c9721bc 100644 --- a/adm/shop_admin/categoryform.php +++ b/adm/shop_admin/categoryform.php @@ -82,7 +82,8 @@ include_once (G5_ADMIN_PATH.'/admin.head.php'); $pg_anchor =''; ?> @@ -303,6 +304,31 @@ $pg_anchor .= '
    '; +
    +

    여분필드 설정

    + + + + + + + + + + + + + + + +
    여분필드 + + + + +
    +
    +

    기타설정

    @@ -310,7 +336,7 @@ $pg_anchor .= '
'; - + diff --git a/adm/shop_admin/categoryformupdate.php b/adm/shop_admin/categoryformupdate.php index 65154ffad..338ea0a5b 100644 --- a/adm/shop_admin/categoryformupdate.php +++ b/adm/shop_admin/categoryformupdate.php @@ -61,7 +61,27 @@ $sql_common = " ca_skin = '$ca_skin', ca_include_tail = '$ca_include_tail', ca_mb_id = '$ca_mb_id', ca_cert_use = '$ca_cert_use', - ca_adult_use = '$ca_adult_use' "; + ca_adult_use = '$ca_adult_use', + ca_1_subj = '$ca_1_subj', + ca_2_subj = '$ca_2_subj', + ca_3_subj = '$ca_3_subj', + ca_4_subj = '$ca_4_subj', + ca_5_subj = '$ca_5_subj', + ca_6_subj = '$ca_6_subj', + ca_7_subj = '$ca_7_subj', + ca_8_subj = '$ca_8_subj', + ca_9_subj = '$ca_9_subj', + ca_10_subj = '$ca_10_subj', + ca_1 = '$ca_1', + ca_2 = '$ca_2', + ca_3 = '$ca_3', + ca_4 = '$ca_4', + ca_5 = '$ca_5', + ca_6 = '$ca_6', + ca_7 = '$ca_7', + ca_8 = '$ca_8', + ca_9 = '$ca_9', + ca_10 = '$ca_10' "; if ($w == "") diff --git a/adm/shop_admin/itemform.php b/adm/shop_admin/itemform.php index 613eb938c..ed98ac88a 100644 --- a/adm/shop_admin/itemform.php +++ b/adm/shop_admin/itemform.php @@ -105,6 +105,7 @@ $pg_anchor =' '; ?> @@ -1352,6 +1353,38 @@ $(function(){ + +
+ + +
+

여분필드 설정

+ + + + + + + + + + + + + + + + diff --git a/adm/shop_admin/itemformupdate.php b/adm/shop_admin/itemformupdate.php index 1b9e73117..62495db58 100644 --- a/adm/shop_admin/itemformupdate.php +++ b/adm/shop_admin/itemformupdate.php @@ -310,7 +310,27 @@ $sql_common = " ca_id = '$ca_id', it_img7 = '$it_img7', it_img8 = '$it_img8', it_img9 = '$it_img9', - it_img10 = '$it_img10' + it_img10 = '$it_img10', + it_1_subj = '$it_1_subj', + it_2_subj = '$it_2_subj', + it_3_subj = '$it_3_subj', + it_4_subj = '$it_4_subj', + it_5_subj = '$it_5_subj', + it_6_subj = '$it_6_subj', + it_7_subj = '$it_7_subj', + it_8_subj = '$it_8_subj', + it_9_subj = '$it_9_subj', + it_10_subj = '$it_10_subj', + it_1 = '$it_1', + it_2 = '$it_2', + it_3 = '$it_3', + it_4 = '$it_4', + it_5 = '$it_5', + it_6 = '$it_6', + it_7 = '$it_7', + it_8 = '$it_8', + it_9 = '$it_9', + it_10 = '$it_10' "; if ($w == "") @@ -445,6 +465,16 @@ if(is_checked('chk_ca_it_head_html')) $ca_fields .= " , it_head_html = if(is_checked('chk_ca_it_tail_html')) $ca_fields .= " , it_tail_html = '$it_tail_html' "; if(is_checked('chk_ca_it_mobile_head_html')) $ca_fields .= " , it_mobile_head_html = '$it_mobile_head_html' "; if(is_checked('chk_ca_it_mobile_tail_html')) $ca_fields .= " , it_mobile_tail_html = '$it_mobile_tail_html' "; +if(is_checked('chk_grp_1')) $ca_fields .= " , it_1_subj = '$it_1_subj', it_1 = '$it_1' "; +if(is_checked('chk_grp_2')) $ca_fields .= " , it_2_subj = '$it_2_subj', it_2 = '$it_2' "; +if(is_checked('chk_grp_3')) $ca_fields .= " , it_3_subj = '$it_3_subj', it_3 = '$it_3' "; +if(is_checked('chk_grp_4')) $ca_fields .= " , it_4_subj = '$it_4_subj', it_4 = '$it_4' "; +if(is_checked('chk_grp_5')) $ca_fields .= " , it_5_subj = '$it_5_subj', it_5 = '$it_5' "; +if(is_checked('chk_grp_6')) $ca_fields .= " , it_6_subj = '$it_6_subj', it_6 = '$it_6' "; +if(is_checked('chk_grp_7')) $ca_fields .= " , it_7_subj = '$it_7_subj', it_7 = '$it_7' "; +if(is_checked('chk_grp_8')) $ca_fields .= " , it_8_subj = '$it_8_subj', it_8 = '$it_8' "; +if(is_checked('chk_grp_9')) $ca_fields .= " , it_9_subj = '$it_9_subj', it_9 = '$it_9' "; +if(is_checked('chk_grp_10')) $ca_fields .= " , it_10_subj = '$it_10_subj', it_10 = '$it_10' "; if($ca_fields) { sql_query(" update {$g5['g5_shop_item_table']} set it_name = it_name {$ca_fields} where ca_id = '$ca_id' "); @@ -479,6 +509,16 @@ if(is_checked('chk_all_it_head_html')) $all_fields .= " , it_head_html if(is_checked('chk_all_it_tail_html')) $all_fields .= " , it_tail_html = '$it_tail_html' "; if(is_checked('chk_all_it_mobile_head_html')) $all_fields .= " , it_mobile_head_html = '$it_mobile_head_html' "; if(is_checked('chk_all_it_mobile_tail_html')) $all_fields .= " , it_mobile_tail_html = '$it_mobile_tail_html' "; +if(is_checked('chk_all_1')) $all_fields .= " , it_1_subj = '$it_1_subj', it_1 = '$it_1' "; +if(is_checked('chk_all_2')) $all_fields .= " , it_2_subj = '$it_2_subj', it_2 = '$it_2' "; +if(is_checked('chk_all_3')) $all_fields .= " , it_3_subj = '$it_3_subj', it_3 = '$it_3' "; +if(is_checked('chk_all_4')) $all_fields .= " , it_4_subj = '$it_4_subj', it_4 = '$it_4' "; +if(is_checked('chk_all_5')) $all_fields .= " , it_5_subj = '$it_5_subj', it_5 = '$it_5' "; +if(is_checked('chk_all_6')) $all_fields .= " , it_6_subj = '$it_6_subj', it_6 = '$it_6' "; +if(is_checked('chk_all_7')) $all_fields .= " , it_7_subj = '$it_7_subj', it_7 = '$it_7' "; +if(is_checked('chk_all_8')) $all_fields .= " , it_8_subj = '$it_8_subj', it_8 = '$it_8' "; +if(is_checked('chk_all_9')) $all_fields .= " , it_9_subj = '$it_9_subj', it_9 = '$it_9' "; +if(is_checked('chk_all_10')) $all_fields .= " , it_10_subj = '$it_10_subj', it_10 = '$it_10' "; if($all_fields) { sql_query(" update {$g5['g5_shop_item_table']} set it_name = it_name {$all_fields} "); diff --git a/extend/shop.extend2.php b/extend/shop.extend2.php index f58e4af70..2230311c2 100644 --- a/extend/shop.extend2.php +++ b/extend/shop.extend2.php @@ -560,4 +560,50 @@ if(!sql_query(" select it_buy_min_qty from {$g5['g5_shop_item_table']} limit 1 " ADD `it_buy_min_qty` int(11) NOT NULL DEFAULT '0' AFTER `it_sc_qty`, ADD `it_buy_max_qty` int(11) NOT NULL DEFAULT '0' AFTER `it_buy_min_qty` ", true); } + +// 상품, 카테고리 여분필드 추가 +if(!sql_query(" select it_1 from {$g5['g5_shop_item_table']} limit 1", false)) { + sql_query(" ALTER TABLE `{$g5['g5_shop_item_table']}` + ADD `it_1_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_img10`, + ADD `it_2_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_1_subj`, + ADD `it_3_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_2_subj`, + ADD `it_4_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_3_subj`, + ADD `it_5_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_4_subj`, + ADD `it_6_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_5_subj`, + ADD `it_7_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_6_subj`, + ADD `it_8_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_7_subj`, + ADD `it_9_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_8_subj`, + ADD `it_10_subj` varchar(255) NOT NULL DEFAULT '' AFTER `it_9_subj`, + ADD `it_1` varchar(255) NOT NULL DEFAULT '' AFTER `it_10_subj`, + ADD `it_2` varchar(255) NOT NULL DEFAULT '' AFTER `it_1`, + ADD `it_3` varchar(255) NOT NULL DEFAULT '' AFTER `it_2`, + ADD `it_4` varchar(255) NOT NULL DEFAULT '' AFTER `it_3`, + ADD `it_5` varchar(255) NOT NULL DEFAULT '' AFTER `it_4`, + ADD `it_6` varchar(255) NOT NULL DEFAULT '' AFTER `it_5`, + ADD `it_7` varchar(255) NOT NULL DEFAULT '' AFTER `it_6`, + ADD `it_8` varchar(255) NOT NULL DEFAULT '' AFTER `it_7`, + ADD `it_9` varchar(255) NOT NULL DEFAULT '' AFTER `it_8`, + ADD `it_10` varchar(255) NOT NULL DEFAULT '' AFTER `it_9` ", true); + sql_query(" ALTER TABLE `{$g5['g5_shop_category_table']}` + ADD `ca_1_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_adult_use`, + ADD `ca_2_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_1_subj`, + ADD `ca_3_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_2_subj`, + ADD `ca_4_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_3_subj`, + ADD `ca_5_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_4_subj`, + ADD `ca_6_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_5_subj`, + ADD `ca_7_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_6_subj`, + ADD `ca_8_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_7_subj`, + ADD `ca_9_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_8_subj`, + ADD `ca_10_subj` varchar(255) NOT NULL DEFAULT '' AFTER `ca_9_subj`, + ADD `ca_1` varchar(255) NOT NULL DEFAULT '' AFTER `ca_10_subj`, + ADD `ca_2` varchar(255) NOT NULL DEFAULT '' AFTER `ca_1`, + ADD `ca_3` varchar(255) NOT NULL DEFAULT '' AFTER `ca_2`, + ADD `ca_4` varchar(255) NOT NULL DEFAULT '' AFTER `ca_3`, + ADD `ca_5` varchar(255) NOT NULL DEFAULT '' AFTER `ca_4`, + ADD `ca_6` varchar(255) NOT NULL DEFAULT '' AFTER `ca_5`, + ADD `ca_7` varchar(255) NOT NULL DEFAULT '' AFTER `ca_6`, + ADD `ca_8` varchar(255) NOT NULL DEFAULT '' AFTER `ca_7`, + ADD `ca_9` varchar(255) NOT NULL DEFAULT '' AFTER `ca_8`, + ADD `ca_10` varchar(255) NOT NULL DEFAULT '' AFTER `ca_9` ", true); +} ?> diff --git a/install/gnuboard5shop.sql b/install/gnuboard5shop.sql index dceb168d0..43e923788 100644 --- a/install/gnuboard5shop.sql +++ b/install/gnuboard5shop.sql @@ -87,6 +87,27 @@ CREATE TABLE IF NOT EXISTS `g5_shop_category` ( `ca_mb_id` varchar(255) NOT NULL DEFAULT '', `ca_cert_use` tinyint(4) NOT NULL DEFAULT '0', `ca_adult_use` tinyint(4) NOT NULL DEFAULT '0', + `ca_1_subj` varchar(255) NOT NULL DEFAULT '', + `ca_2_subj` varchar(255) NOT NULL DEFAULT '', + `ca_3_subj` varchar(255) NOT NULL DEFAULT '', + `ca_4_subj` varchar(255) NOT NULL DEFAULT '', + `ca_5_subj` varchar(255) NOT NULL DEFAULT '', + `ca_6_subj` varchar(255) NOT NULL DEFAULT '', + `ca_7_subj` varchar(255) NOT NULL DEFAULT '', + `ca_7_subj` varchar(255) NOT NULL DEFAULT '', + `ca_8_subj` varchar(255) NOT NULL DEFAULT '', + `ca_9_subj` varchar(255) NOT NULL DEFAULT '', + `ca_10_subj` varchar(255) NOT NULL DEFAULT '', + `ca_1` varchar(255) NOT NULL DEFAULT '', + `ca_2` varchar(255) NOT NULL DEFAULT '', + `ca_3` varchar(255) NOT NULL DEFAULT '', + `ca_4` varchar(255) NOT NULL DEFAULT '', + `ca_5` varchar(255) NOT NULL DEFAULT '', + `ca_6` varchar(255) NOT NULL DEFAULT '', + `ca_7` varchar(255) NOT NULL DEFAULT '', + `ca_8` varchar(255) NOT NULL DEFAULT '', + `ca_9` varchar(255) NOT NULL DEFAULT '', + `ca_10` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`ca_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; @@ -438,6 +459,27 @@ CREATE TABLE IF NOT EXISTS `g5_shop_item` ( `it_img8` varchar(255) NOT NULL DEFAULT '', `it_img9` varchar(255) NOT NULL DEFAULT '', `it_img10` varchar(255) NOT NULL DEFAULT '', + `it_1_subj` varchar(255) NOT NULL DEFAULT '', + `it_2_subj` varchar(255) NOT NULL DEFAULT '', + `it_3_subj` varchar(255) NOT NULL DEFAULT '', + `it_4_subj` varchar(255) NOT NULL DEFAULT '', + `it_5_subj` varchar(255) NOT NULL DEFAULT '', + `it_6_subj` varchar(255) NOT NULL DEFAULT '', + `it_7_subj` varchar(255) NOT NULL DEFAULT '', + `it_7_subj` varchar(255) NOT NULL DEFAULT '', + `it_8_subj` varchar(255) NOT NULL DEFAULT '', + `it_9_subj` varchar(255) NOT NULL DEFAULT '', + `it_10_subj` varchar(255) NOT NULL DEFAULT '', + `it_1` varchar(255) NOT NULL DEFAULT '', + `it_2` varchar(255) NOT NULL DEFAULT '', + `it_3` varchar(255) NOT NULL DEFAULT '', + `it_4` varchar(255) NOT NULL DEFAULT '', + `it_5` varchar(255) NOT NULL DEFAULT '', + `it_6` varchar(255) NOT NULL DEFAULT '', + `it_7` varchar(255) NOT NULL DEFAULT '', + `it_8` varchar(255) NOT NULL DEFAULT '', + `it_9` varchar(255) NOT NULL DEFAULT '', + `it_10` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`it_id`), KEY `ca_id` (`ca_id`), KEY `it_name` (`it_name`), From f7329f3d7bb0d892f9620e1c7aa25099449c4325 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 15:34:57 +0900 Subject: [PATCH 09/24] =?UTF-8?q?kcp=20=EA=B2=B0=EC=A0=9C=20=EB=AA=A8?= =?UTF-8?q?=EB=93=88=20=EB=B3=80=EA=B2=BD=20=EB=82=B4=EC=97=AD=20=EB=B0=98?= =?UTF-8?q?=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/kcp/pp_ax_hub.php | 6 +++++ shop/orderform.php | 59 +++++++++++++++++++++++++++++++++++------- 2 files changed, 55 insertions(+), 10 deletions(-) diff --git a/shop/kcp/pp_ax_hub.php b/shop/kcp/pp_ax_hub.php index 11f7fe89b..f50ebfb31 100644 --- a/shop/kcp/pp_ax_hub.php +++ b/shop/kcp/pp_ax_hub.php @@ -77,6 +77,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 $app_time = ""; // 승인시간 (모든 결제 수단 공통) $amount = ""; // KCP 실제 거래 금액 $total_amount = 0; // 복합결제시 총 거래금액 + $coupon_mny = ""; // 쿠폰금액 /* = -------------------------------------------------------------------------- = */ $card_cd = ""; // 신용카드 코드 $card_name = ""; // 신용카드 명 @@ -86,9 +87,11 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 $partcanc_yn = ""; // 부분취소 가능유무 $card_bin_type_01 = ""; // 카드구분1 $card_bin_type_01 = ""; // 카드구분2 + $card_mny = ""; // 카드결제금액 /* = -------------------------------------------------------------------------- = */ $bank_name = ""; // 은행명 $bank_code = ""; // 은행코드 + $bk_mny = ""; // 계좌이체결제금액 /* = -------------------------------------------------------------------------- = */ $bankname = ""; // 입금할 은행명 $depositor = ""; // 입금할 계좌 예금주 성명 @@ -258,6 +261,7 @@ if ( $req_tx == "pay" ) $tno = $c_PayPlus->mf_get_res_data( "tno" ); // KCP 거래 고유 번호 $amount = $c_PayPlus->mf_get_res_data( "amount" ); // KCP 실제 거래 금액 $pnt_issue = $c_PayPlus->mf_get_res_data( "pnt_issue" ); // 결제 포인트사 코드 + $coupon_mny = $c_PayPlus->mf_get_res_data( "coupon_mny" ); // 쿠폰금액 /* = -------------------------------------------------------------------------- = */ /* = 05-1. 신용카드 승인 결과 처리 = */ @@ -273,6 +277,7 @@ if ( $req_tx == "pay" ) $partcanc_yn = $c_PayPlus->mf_get_res_data( "partcanc_yn" ); // 부분취소 가능유무 $card_bin_type_01 = $c_PayPlus->mf_get_res_data( "card_bin_type_01" ); // 카드구분1 $card_bin_type_02 = $c_PayPlus->mf_get_res_data( "card_bin_type_02" ); // 카드구분2 + $card_mny = $c_PayPlus->mf_get_res_data( "card_mny" ); // 카드결제금액 /* = -------------------------------------------------------------- = */ /* = 05-1.1. 복합결제(포인트+신용카드) 승인 결과 처리 = */ @@ -298,6 +303,7 @@ if ( $req_tx == "pay" ) $app_time = $c_PayPlus->mf_get_res_data( "app_time" ); // 승인 시간 $bank_name = $c_PayPlus->mf_get_res_data( "bank_name" ); // 은행명 $bank_code = $c_PayPlus->mf_get_res_data( "bank_code" ); // 은행코드 + $bk_mny = $c_PayPlus->mf_get_res_data( "bk_mny" ); // 계좌이체결제금액 } /* = -------------------------------------------------------------------------- = */ diff --git a/shop/orderform.php b/shop/orderform.php index 0c5eb7be8..47307ab42 100644 --- a/shop/orderform.php +++ b/shop/orderform.php @@ -94,18 +94,58 @@ function jsf__pay( form ) } // Payplus Plug-in 설치 안내 + function init_pay_button() { - if( GetPluginObject() == null ){ - document.getElementById("display_setup_message_top").style.display = "block" ; - document.getElementById("display_setup_message").style.display = "block" ; - document.getElementById("display_pay_button").style.display = "none" ; - document.getElementById("display_setup_message").scrollIntoView(); + if (navigator.userAgent.indexOf('MSIE') > 0) + { + try + { + if( document.Payplus.object == null ) + { + document.getElementById("display_setup_message_top").style.display = "block" ; + document.getElementById("display_setup_message").style.display = "block" ; + document.getElementById("display_pay_button").style.display = "none" ; + document.getElementById("display_setup_message").scrollIntoView(); + } + else{ + document.getElementById("display_setup_message_top").style.display = "none" ; + document.getElementById("display_setup_message").style.display = "none" ; + document.getElementById("display_pay_button").style.display = "block" ; + } + } + catch (e) + { + document.getElementById("display_setup_message_top").style.display = "block" ; + document.getElementById("display_setup_message").style.display = "block" ; + document.getElementById("display_pay_button").style.display = "none" ; + document.getElementById("display_setup_message").scrollIntoView(); + } } - else{ - document.getElementById("display_setup_message_top").style.display = "none" ; - document.getElementById("display_setup_message").style.display = "none" ; - document.getElementById("display_pay_button").style.display = "block" ; + else + { + try + { + if( Payplus == null ) + { + document.getElementById("display_setup_message_top").style.display = "block" ; + document.getElementById("display_setup_message").style.display = "block" ; + document.getElementById("display_pay_button").style.display = "none" ; + document.getElementById("display_setup_message").scrollIntoView(); + } + else{ + document.getElementById("display_setup_message_top").style.display = "none" ; + document.getElementById("display_setup_message").style.display = "none" ; + document.getElementById("display_pay_button").style.display = "block" ; + } + } + catch (e) + { + document.getElementById("display_setup_message_top").style.display = "block" ; + document.getElementById("display_setup_message").style.display = "block" ; + document.getElementById("display_pay_button").style.display = "none" ; + document.getElementById("display_setup_message").scrollIntoView(); + } } } @@ -346,7 +386,6 @@ function get_intall_file() ?> - Date: Tue, 8 Oct 2013 15:50:08 +0900 Subject: [PATCH 10/24] =?UTF-8?q?=EC=A3=BC=EB=AC=B8=EC=83=81=ED=83=9C=20?= =?UTF-8?q?=EA=B4=80=EB=A0=A8=20=EC=BD=94=EB=93=9C=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/deliverylist.php | 37 ++++++-- adm/shop_admin/orderlist.php | 4 +- adm/shop_admin/orderlistupdate.php | 135 ++++++++++++++++------------- 3 files changed, 108 insertions(+), 68 deletions(-) diff --git a/adm/shop_admin/deliverylist.php b/adm/shop_admin/deliverylist.php index 467157d72..9bd1ddbe3 100644 --- a/adm/shop_admin/deliverylist.php +++ b/adm/shop_admin/deliverylist.php @@ -27,14 +27,15 @@ if ($search != "") { } } +$sql_search .= " $where od_status = '배송' "; + if ($sel_ca_id != "") { $sql_search .= " $where ca_id like '$sel_ca_id%' "; } if ($sel_field == "") $sel_field = "od_id"; -$sql_common = " from {$g5['g5_shop_order_table']} - $sql_search "; +$sql_common = " from {$g5['g5_shop_order_table']} $sql_search "; // 테이블의 전체 레코드수만 얻음 if ($chk_misu) { @@ -119,7 +120,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
  • ">운송장번호 순 정렬
  • -
    + @@ -130,6 +131,10 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
    여분필드 + + + + + + + + + +
    입력일시
    + @@ -143,8 +148,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 +
    + + + 주문번호 주문자 주문액
    - + + + + + @@ -209,7 +218,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
    - +
    @@ -218,6 +227,20 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 + + diff --git a/adm/shop_admin/orderlist.php b/adm/shop_admin/orderlist.php index c2c520029..a5162112d 100644 --- a/adm/shop_admin/orderlist.php +++ b/adm/shop_admin/orderlist.php @@ -220,7 +220,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌 -
    + @@ -424,6 +424,8 @@ function forderlist_submit(f) } } + f.action = "./orderlistupdate.php"; + return true; } diff --git a/adm/shop_admin/orderlistupdate.php b/adm/shop_admin/orderlistupdate.php index 369a7cd2b..369718356 100644 --- a/adm/shop_admin/orderlistupdate.php +++ b/adm/shop_admin/orderlistupdate.php @@ -2,70 +2,105 @@ $sub_menu = '400400'; include_once('./_common.php'); -//print_r2($_POST); -// 주문상태변경 처리 -function change_order_status($od_status1, $od_status2, $od) +// 상품옵션별재고 또는 상품재고에 더하기 +function add_io_stock($it_id, $ct_qty, $io_id="", $io_type="") { global $g5; - // 원래 주문상태와 바뀔 주문상태가 같다면 처리하지 않음 - if ($od_status1 == $od_status2) return; + if($io_id) { + $sql = " update {$g5['g5_shop_item_option_table']} + set io_stock_qty = io_stock_qty + '{$ct_qty}' + where it_id = '{$it_id}' + and io_id = '{$io_id}' + and io_type = '{$io_type}' "; + } else { + $sql = " update {$g5['g5_shop_item_table']} + set it_stock_qty = it_stock_qty + '{$ct_qty}' + where it_id = '{$it_id}' "; + } + return sql_query($sql); +} + + +// 상품옵션별재고 또는 상품재고에서 빼기 +function subtract_io_stock($it_id, $ct_qty, $io_id="", $io_type="") +{ + global $g5; + + if($io_id) { + $sql = " update {$g5['g5_shop_item_option_table']} + set io_stock_qty = io_stock_qty - '{$ct_qty}' + where it_id = '{$it_id}' + and io_id = '{$io_id}' + and io_type = '{$io_type}' "; + } else { + $sql = " update {$g5['g5_shop_item_table']} + set it_stock_qty = it_stock_qty - '{$ct_qty}' + where it_id = '{$it_id}' "; + } + return sql_query($sql); +} + + +// 주문과 장바구니의 상태를 변경한다. +function change_status($od_id, $current_status, $change_status) +{ + global $g5; + + $sql = " update {$g5['g5_shop_order_table']} set od_status = '{$change_status}' where od_id = '{$od_id}' and od_status = '{$current_status}' "; + sql_query($sql, true); + + $sql = " update {$g5['g5_shop_cart_table']} set ct_status = '{$change_status}' where od_id = '{$od_id}' and ct_status = '{$current_status}' "; + sql_query($sql, true); +} + + + +//print_r2($_POST); + +// 주문상태변경 처리 +function change_order_status($current_staus, $change_status, $od) +{ + global $g5; + + // 현재 주문상태와 바뀔 주문상태가 같다면 처리하지 않음 + if ($current_staus == $change_status) return; $od = sql_fetch(" select od_settle_case from {$g5['g5_shop_order_table']} where od_id = '$od_id' "); if (!$od) return; - switch ($od_status1) + switch ($current_staus) { case '주문' : - if ($od_status2 != '입금') return; + if ($change_status != '입금') return; if ($od['od_settle_case'] != '무통장') return; $sql = " update {$g5['g5_shop_order_table']} - set od_status = '입금', - od_receipt_price = od_misu, + set od_receipt_price = od_misu, od_misu = 0, od_receipt_time = '".G5_TIME_YMDHIS."' where od_id = '$od_id' and od_status = '주문' "; sql_query($sql, true); - $sql = " update {$g5['g5_shop_cart_table']} - set ct_status = '입금' - where od_id = '$od_id' and ct_status = '주문' "; - sql_query($sql, true); + change_status($od_id, '주문', '입금'); break; case '입금' : - if ($od_status2 != '준비') return; + if ($change_status != '준비') return; - $sql = " update {$g5['g5_shop_order_table']} - set od_status = '준비' - where od_id = '$od_id' and od_status = '입금' "; - sql_query($sql, true); - - $sql = " update {$g5['g5_shop_cart_table']} - set ct_status = '준비' - where od_id = '$od_id' and ct_status = '입금' "; - sql_query($sql, true); + change_status($od_id, '입금', '준비'); break; case '준비' : - if ($od_status2 != '배송') return; + if ($change_status != '배송') return; - $sql = " update {$g5['g5_shop_order_table']} - set od_status = '배송' - where od_id = '$od_id' and od_status = '준비' "; - sql_query($sql, true); - - $sql = " update {$g5['g5_shop_cart_table']} - set ct_status = '배송' - where od_id = '$od_id' and ct_status = '준비' "; - sql_query($sql, true); + change_status($od_id, '준비', '배송'); $sql = " select * from {$g5['g5_shop_cart_table']} where od_id = '$od_id' "; $result = sql_query($sql); @@ -78,19 +113,7 @@ function change_order_status($od_status1, $od_status2, $od) { $stock_use = 0; // 재고에 다시 더한다. - if($row['io_id']) { - $sql = " update {$g5['g5_shop_item_option_table']} - set io_stock_qty = io_stock_qty + '{$row['ct_qty']}' - where it_id = '{$row['it_id']}' - and io_id = '{$row['io_id']}' - and io_type = '{$row['io_type']}' "; - } else { - $sql = " update {$g5['g5_shop_item_table']} - set it_stock_qty = it_stock_qty + '{$row['ct_qty']}' - where it_id = '{$row['it_id']}' "; - } - - sql_query($sql); + add_io_stock($row['it_id'], $row['ct_qty'], $row['io_id'], $row['io_type']); } } else @@ -100,19 +123,7 @@ function change_order_status($od_status1, $od_status2, $od) { $stock_use = 1; // 재고에서 뺀다. - if($row['io_id']) { - $sql = " update {$g5['g5_shop_item_option_table']} - set io_stock_qty = io_stock_qty - '{$row['ct_qty']}' - where it_id = '{$row['it_id']}' - and io_id = '{$row['io_id']}' - and io_type = '{$row['io_type']}' "; - } else { - $sql = " update {$g5['g5_shop_item_table']} - set it_stock_qty = it_stock_qty - '{$row['ct_qty']}' - where it_id = '{$row['it_id']}' "; - } - - sql_query($sql); + subtract_io_stock($row['it_id'], $row['ct_qty'], $row['io_id'], $row['io_type']); } } @@ -130,11 +141,15 @@ function change_order_status($od_status1, $od_status2, $od) ct_stock_use = '$stock_use', ct_status = '$ct_status', ct_history = CONCAT(ct_history,'$ct_history') - where od_id = '$row['od_id']' "; + where od_id = '{$row['od_id']}' "; sql_query($sql); } break; + + case '배송' : + + if ($change_status != '완료') return; } // 주문정보 From 4b4c8dff170350e35467b41a91bfa65420285fef Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 8 Oct 2013 16:11:10 +0900 Subject: [PATCH 11/24] =?UTF-8?q?de=5Fcard=5Fpg=20=ED=95=84=EB=93=9C=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/configform.php | 1 - adm/shop_admin/configformupdate.php | 1 - adm/shop_admin/orderform.php | 8 +++----- install/gnuboard5shop.sql | 1 - install/install_db.php | 1 - mobile/shop/orderform.php | 7 +++---- mobile/shop/orderinquiryview.php | 2 +- mobile/shop/personalpayform.php | 7 +++---- shop/orderform.php | 7 +++---- shop/orderinquirycancel.php | 5 ++--- shop/orderinquiryview.php | 2 +- shop/personalpayform.php | 5 ++--- 12 files changed, 18 insertions(+), 29 deletions(-) diff --git a/adm/shop_admin/configform.php b/adm/shop_admin/configform.php index 2d95ad19f..d5fae9f6c 100644 --- a/adm/shop_admin/configform.php +++ b/adm/shop_admin/configform.php @@ -532,7 +532,6 @@ $pg_anchor = '
    diff --git a/adm/shop_admin/configformupdate.php b/adm/shop_admin/configformupdate.php index cf2112315..b7de75fc7 100644 --- a/adm/shop_admin/configformupdate.php +++ b/adm/shop_admin/configformupdate.php @@ -98,7 +98,6 @@ $sql = " update {$g5['g5_shop_default_table']} de_card_test = '$de_card_test', de_card_use = '$de_card_use', de_card_point = '$de_card_point', - de_card_pg = '$de_card_pg', de_settle_min_point = '$de_settle_min_point', de_settle_max_point = '$de_settle_max_point', de_settle_point_unit = '$de_settle_point_unit', diff --git a/adm/shop_admin/orderform.php b/adm/shop_admin/orderform.php index 8fbaa2b64..0356d335f 100644 --- a/adm/shop_admin/orderform.php +++ b/adm/shop_admin/orderform.php @@ -76,11 +76,12 @@ if ($od['mb_id'] == "") { $qstr = "sort1=$sort1&sort2=$sort2&sel_field=$sel_field&search=$search&page=$page"; // PG사를 KCP 사용하면서 테스트 상점아이디라면 +$pg_url = 'http://admin8.kcp.co.kr'; if ($default['de_card_test']) { // 로그인 아이디 / 비번 // 일반 : test1234 / test12345 // 에스크로 : escrow / escrow913 - $g5['g5_shop_cardpg']['kcp'] = "http://testadmin8.kcp.co.kr"; + $pg_url = 'http://testadmin8.kcp.co.kr'; } // 상품목록 @@ -515,7 +516,6 @@ $pg_anchor = ' @@ -570,8 +569,7 @@ $pg_anchor = '
    diff --git a/install/gnuboard5shop.sql b/install/gnuboard5shop.sql index 43e923788..b485ba994 100644 --- a/install/gnuboard5shop.sql +++ b/install/gnuboard5shop.sql @@ -258,7 +258,6 @@ CREATE TABLE IF NOT EXISTS `g5_shop_default` ( `de_card_test` int(11) NOT NULL DEFAULT '0', `de_card_use` int(11) NOT NULL DEFAULT '0', `de_card_point` int(11) NOT NULL DEFAULT '0', - `de_card_pg` varchar(255) NOT NULL DEFAULT '', `de_settle_min_point` int(11) NOT NULL DEFAULT '0', `de_settle_max_point` int(11) NOT NULL DEFAULT '0', `de_settle_point_unit` int(11) NOT NULL DEFAULT '0', diff --git a/install/install_db.php b/install/install_db.php index 058c0c797..6af082fc4 100644 --- a/install/install_db.php +++ b/install/install_db.php @@ -270,7 +270,6 @@ if($g5_shop_install) { de_cart_keep_term = '15', de_card_point = '0', de_point_days = '7', - de_card_pg = 'kcp', de_kcp_mid = '', de_send_cost_case = '차등', de_send_cost_limit = '20000;30000;40000', diff --git a/mobile/shop/orderform.php b/mobile/shop/orderform.php index 00fe4705d..53cefb5c5 100644 --- a/mobile/shop/orderform.php +++ b/mobile/shop/orderform.php @@ -23,9 +23,8 @@ set_session('ss_order_id', $od_id); $s_cart_id = $tmp_cart_id; $order_action_url = G5_HTTPS_MSHOP_URL.'/orderformupdate.php'; -if (file_exists('./settle_'.$default['de_card_pg'].'.inc.php')) { - include './settle_'.$default['de_card_pg'].'.inc.php'; -} + +require './settle_kcp.inc.php'; // 결제등록 요청시 사용할 입금마감일 $ipgm_date = date("Ymd", (G5_SERVER_TIME + 86400 * 5)); @@ -813,7 +812,7 @@ ob_end_clean(); - + diff --git a/mobile/shop/orderinquiryview.php b/mobile/shop/orderinquiryview.php index 1d85a3a3e..fc29a92fa 100644 --- a/mobile/shop/orderinquiryview.php +++ b/mobile/shop/orderinquiryview.php @@ -320,7 +320,7 @@ include_once(G5_MSHOP_PATH.'/_head.php'); } // 현금영수증 발급을 사용하는 경우에만 - if ($default['de_taxsave_use'] && $default['de_card_pg'] == 'kcp') { + if ($default['de_taxsave_use']) { // 미수금이 없고 현금일 경우에만 현금영수증을 발급 할 수 있습니다. if ($misu_price == 0 && $od['od_receipt_price'] && ($od['od_settle_case'] == '무통장' || $od['od_settle_case'] == '계좌이체' || $od['od_settle_case'] == '가상계좌')) { ?> diff --git a/mobile/shop/personalpayform.php b/mobile/shop/personalpayform.php index c6772e393..f73d4639d 100644 --- a/mobile/shop/personalpayform.php +++ b/mobile/shop/personalpayform.php @@ -14,9 +14,8 @@ $g5['title'] = $pp['pp_name'].'님 개인결제'; include_once(G5_MSHOP_PATH.'/_head.php'); $action_url = G5_HTTPS_MSHOP_URL.'/personalpayformupdate.php'; -if (file_exists('./settle_'.$default['de_card_pg'].'.inc.php')) { - include './settle_'.$default['de_card_pg'].'.inc.php'; -} + +require './settle_kcp.inc.php'; // 결제등록 요청시 사용할 입금마감일 $ipgm_date = date("Ymd", (G5_SERVER_TIME + 86400 * 5)); @@ -264,7 +263,7 @@ if($default['de_escrow_use']) { - + diff --git a/mobile/skin/member/shop_basic/img/reg_result_logo.jpg b/mobile/skin/member/shop_basic/img/reg_result_logo.jpg deleted file mode 100644 index 9bdf4f72df0a38fc4b3b112a1930818bce46f6e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2108 zcma)5c{~*Q7XQs+m_ZC<7^A{4BeIM&M3#$ZWU?h$Q=`#tA;KIilOe$F}nd=LLU|058mSle0y2owO? zb^!i7K>recA}|U-037^90{$Y{VNN@9+z-&2wiyV27$gJ8-v{)+fc?aO#-R|%wz^$E zg}>YIn*dq}C;>ef1P!2Q2n-G3w}B7$YxL;i>RwD3|E@h!(S;cL- zkCuxe=3{m7>Gn;P+WUTRKZKQV$~ckUX}23z_bKn?bRyk*0Tb6VUYYJjyy?_Abr=P= zewbd96ZyskIOGfDFeI@TMrCUm^nl#{>O6v7&$+?ZHYO=q?S64Znn!GGUUy}`OmL`u zv#R4?SrI)~`And&+Bm!6Rmte1*0MJ!SDqf#ew?A4K=o5dudAil`R`*}-?!+`zeUkc z)cqzWi2^8x#z|*nW*2Uua3OE(g>7y%RAp&G%V%f=`$B5hG?N=uZa=MMV4US_*7e2F z(pg+9tUoC~ut~l#!uUqi$gZvOLUOsgidT+=uoc38|0!^(hs8k}9ea{u)oqX6PnCKm zLzqR0wB;XkOV+yO6}e;PftbfHXPhRho_R@!SeH4%Ys!L83I84u;MI*ePf@z@?pl$S zOQz>d#Hpdt!I4J znzj4kYh`L^$W(OILypOflpZ}jTSAi;hZ;d|7ensG6c0{a8=7jYOYMlT3|SzQ1}2`F ztJvA);gS3!G^nrjhN`Ug^jUo805O*0$GY8j!_gr#3I8swy_qbK?w>(2bWfj?oWDMa z{~j`;{)$Gm$dezz>$j)feCyj6rSaa_%721j+RltV#GiN0O8ozh64b|VW53w2V+ zWJE@1X}F9VW_Ty}?w!#?zu_+NL3vt2_;4QX6)`tSSn*)V#Y;jZ1oi6E0c8Ax7<^4) zX44?kyKZ{fN+qN$Bt;Y!$ufjcrRnse~gA}i=AO_=EybJ6Ly&h2UQLDtzgzI zYYxNqZe%$IIVCz>f)lYhP5n%%f^b2I6<&Qft~d2VjNdF5KT=T@G`sNdFgD3e=G@wB zYLz%fnX6DLv~@?`g>7kPUW9X=%Ya4{Q7SGkpoSY{noJi}&y^}{lwrSb^L^*33 zPUC6IS$P7ByOdOqdR2Z~w(H^fcy46S2<0^T7*wYB6e%KEOaZ(5rNpOtB;dF&cbgZh zuDBL_lu=TYGntDajqa^^_aST;Vc5?w%2o_LsvYi^{V>$jqkA(s>d6|a+sO0)$>j5E za$pjoPZerwB?5$+;KC8(s~L~$zYhj#%6;g4vBJ_hDq3rck-#nTsGYZsK!HLjs_<*|Eog_3q%MI_!Cwd00rrvAa39m9vj+rNF=w7dv!dA72e(tF|3APef_-8t#0F6oJs6P13eaUzA2tR_)iv1dIkUh diff --git a/mobile/skin/member/shop_basic/login.skin.php b/mobile/skin/member/shop_basic/login.skin.php deleted file mode 100644 index 18ca488c9..000000000 --- a/mobile/skin/member/shop_basic/login.skin.php +++ /dev/null @@ -1,124 +0,0 @@ - - - - -
    -

    - - - - -
    - 회원로그인 - - - - - - - -
    - -
    -

    회원로그인 안내

    -

    - 회원아이디 및 패스워드가 기억 안나실 때는 아이디/패스워드 찾기를 이용하십시오.
    - 아직 회원이 아니시라면 회원으로 가입 후 이용해 주십시오. -

    - -
    - - - - - - - - - -
    -

    비회원 구매

    - -

    - 비회원으로 주문하시는 경우 포인트는 지급하지 않습니다. -

    - -
    - -
    - - - - - - - -
    - - - -
    - 비회원 주문조회 - -
    - - - - - - - - -
    - -
    -

    비회원 주문조회 안내

    -

    메일로 발송해드린 주문서의 주문번호 및 주문 시 입력하신 비밀번호를 정확히 입력해주십시오.

    -
    - - - - - - - - -
    - - diff --git a/mobile/skin/member/shop_basic/login_check.skin.php b/mobile/skin/member/shop_basic/login_check.skin.php deleted file mode 100644 index 1b182915e..000000000 --- a/mobile/skin/member/shop_basic/login_check.skin.php +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/mobile/skin/member/shop_basic/member_confirm.skin.php b/mobile/skin/member/shop_basic/member_confirm.skin.php deleted file mode 100644 index 05d25b10a..000000000 --- a/mobile/skin/member/shop_basic/member_confirm.skin.php +++ /dev/null @@ -1,41 +0,0 @@ - - - - -
    -

    - -

    - 패스워드를 한번 더 입력해주세요. - 회원님의 정보를 안전하게 보호하기 위해 패스워드를 한번 더 확인합니다. -

    - -
    - - - -
    - 회원아이디 - - - -
    - - - - - -
    - - diff --git a/mobile/skin/member/shop_basic/memo.skin.php b/mobile/skin/member/shop_basic/memo.skin.php deleted file mode 100644 index 77f4a7c03..000000000 --- a/mobile/skin/member/shop_basic/memo.skin.php +++ /dev/null @@ -1,46 +0,0 @@ - - - - -
    - SR 영대문자, 숫자 혼용 3자리
    원 - 결제대행사
    원 - - 결제대행사 + 결제대행사
    - - - - - - - - - - - - - - - - - - - "; } ?> - -
    - 전체 쪽지
    -
    보낸시간읽은시간관리
    삭제
    자료가 없습니다.
    - -

    - 쪽지 보관일수는 최장 일 입니다. -

    - - - \ No newline at end of file diff --git a/mobile/skin/member/shop_basic/memo_form.skin.php b/mobile/skin/member/shop_basic/memo_form.skin.php deleted file mode 100644 index dc15510f7..000000000 --- a/mobile/skin/member/shop_basic/memo_form.skin.php +++ /dev/null @@ -1,59 +0,0 @@ - - - - -
    -

    쪽지보내기

    - - - -
    -
    - - - - - - - - - - - - - - - - -
    쪽지쓰기
    - - 여러 회원에게 보낼때는 컴마(,)로 구분하세요. -
    자동등록방지 - -
    -
    - -
    -

    - 작성하신 쪽지를 발송하시려면 보내기 버튼을, 작성을 취소하고 창을 닫으시려면 창닫기 버튼을 누르세요. -

    - - -
    -
    -
    - - diff --git a/mobile/skin/member/shop_basic/memo_view.skin.php b/mobile/skin/member/shop_basic/memo_view.skin.php deleted file mode 100644 index d6001eb51..000000000 --- a/mobile/skin/member/shop_basic/memo_view.skin.php +++ /dev/null @@ -1,50 +0,0 @@ - - - - -
    -

    - -
    -

    쪽지 내용

    -
      -
    • - 사람 - -
    • -
    • - 시간 - -
    • -
    -

    - -

    -
    - -
    \ No newline at end of file diff --git a/mobile/skin/member/shop_basic/password.skin.php b/mobile/skin/member/shop_basic/password.skin.php deleted file mode 100644 index 8ee663945..000000000 --- a/mobile/skin/member/shop_basic/password.skin.php +++ /dev/null @@ -1,46 +0,0 @@ - - - - -
    -

    -

    - - 작성자만 글을 수정할 수 있습니다. - 작성자 본인이라면, 글 작성시 입력한 패스워드를 입력하여 글을 수정할 수 있습니다. - - 작성자만 글을 삭제할 수 있습니다. - 작성자 본인이라면, 글 작성시 입력한 패스워드를 입력하여 글을 삭제할 수 있습니다. - - 비밀글 기능으로 보호된 글입니다. - 작성자와 관리자만 열람하실 수 있습니다. 본인이라면 패스워드를 입력하세요. - -

    - -
    - - - - - - - - -
    - - -
    -
    - - - -
    diff --git a/mobile/skin/member/shop_basic/password_lost.skin.php b/mobile/skin/member/shop_basic/password_lost.skin.php deleted file mode 100644 index 585ddc325..000000000 --- a/mobile/skin/member/shop_basic/password_lost.skin.php +++ /dev/null @@ -1,43 +0,0 @@ - - - - -
    -

    아이디/패스워드 찾기

    - -
    -
    -

    - 회원가입 시 등록하신 이메일 주소를 입력해 주세요.
    - 해당 이메일로 아이디와 패스워드 정보를 보내드립니다. -

    - -
    - -
    - - 창닫기 -
    -
    -
    - - diff --git a/mobile/skin/member/shop_basic/profile.skin.php b/mobile/skin/member/shop_basic/profile.skin.php deleted file mode 100644 index c37cba9bb..000000000 --- a/mobile/skin/member/shop_basic/profile.skin.php +++ /dev/null @@ -1,45 +0,0 @@ - - - - -
    -

    님의 프로필

    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    회원권한
    포인트
    홈페이지
    회원가입일= $mb['mb_level']) ? substr($mb['mb_datetime'],0,10) ." (".number_format($mb_reg_after)." 일)" : "알 수 없음"; ?>
    최종접속일= $mb['mb_level']) ? $mb['mb_today_login'] : "알 수 없음"; ?>
    - -
    -

    인사말

    -

    -
    - -
    - 창닫기 -
    -
    diff --git a/mobile/skin/member/shop_basic/register.skin.php b/mobile/skin/member/shop_basic/register.skin.php deleted file mode 100644 index abbc4f71b..000000000 --- a/mobile/skin/member/shop_basic/register.skin.php +++ /dev/null @@ -1,52 +0,0 @@ - - - - -
    - -

    회원가입약관 및 개인정보수집이용안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.

    - -
    -

    회원가입약관

    - -
    - - -
    -
    - -
    -

    개인정보수집이용안내

    - -
    - - -
    -
    - -
    - -
    - -
    - - diff --git a/mobile/skin/member/shop_basic/register_form.skin.php b/mobile/skin/member/shop_basic/register_form.skin.php deleted file mode 100644 index 24baabc75..000000000 --- a/mobile/skin/member/shop_basic/register_form.skin.php +++ /dev/null @@ -1,352 +0,0 @@ - - - - -
    - - - - - - date("Y-m-d", G5_SERVER_TIME - ($config['cf_nick_modify'] * 86400))) { // 별명수정일이 지나지 않았다면 ?> - - - - - - - - - - - - - - - - - - -
    사이트 이용정보 입력
    - 영문자, 숫자, _ 만 입력 가능. 최소 3자이상 입력하세요. - > - -
    >
    >
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    개인정보 입력
    - - 휴대폰 본인확인 후에는 이름과 휴대폰번호가 자동 입력되며 수동으로 입력할수 없게 됩니다. - - class="frm_input nospace " size="10"> - - - - -
    - - 휴대폰 본인확인성인인증 완료 - -
    -
    - - 공백없이 한글,영문,숫자만 입력 가능 (한글2자, 영문4자 이상)
    - 별명을 바꾸시면 앞으로 일 이내에는 변경 할 수 없습니다. -
    - - - -
    - - - - - - - - ' id="reg_mb_email" class="frm_input email " maxlength="100"> -
    " maxlength="255" >
    " maxlength="20" >
    class="frm_input " maxlength="20">
    - 주소 - 필수 - - - class="frm_input " size="3" maxlength="3"> - - - - class="frm_input " size="3" maxlength="3"> - - - class="frm_input frm_address " size="50"> - - class="frm_input frm_address " size="50"> - -
    - - - - - - - - - - - - - - - - - -= $config['cf_icon_level']) { ?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    기타 개인설정
    - - 이미지 크기는 가로 픽셀, 세로 픽셀 이하로 해주세요.
    - gif만 가능하며 용량 바이트 이하만 등록됩니다. -
    - - - - - -
    - > - 정보 메일을 받겠습니다. -
    - > - 휴대폰 문자메세지를 받겠습니다. -
    - - 정보공개를 바꾸시면 앞으로 일 이내에는 변경이 안됩니다. - - - > - 다른분들이 나의 정보를 볼 수 있도록 합니다. -
    정보공개 - - 정보공개는 수정후 일 이내, 까지는 변경이 안됩니다.
    - 이렇게 하는 이유는 잦은 정보공개 수정으로 인하여 쪽지를 보낸 후 받지 않는 경우를 막기 위해서 입니다. -
    - -
    자동등록방지
    - -
    -

    - 작성하신 내용을 제출하시려면 버튼을, 작성을 취소하고 목록으로 돌아가시려면 취소 링크를 누르세요. -

    - - 취소 -
    -
    - - - - - - - diff --git a/mobile/skin/member/shop_basic/register_form_update.tail.skin.php b/mobile/skin/member/shop_basic/register_form_update.tail.skin.php deleted file mode 100644 index 6158e7488..000000000 --- a/mobile/skin/member/shop_basic/register_form_update.tail.skin.php +++ /dev/null @@ -1,32 +0,0 @@ -SMS_con($default['de_icode_server_ip'], $default['de_icode_id'], $default['de_icode_pw'], $default['de_icode_server_port']); - - $SMS->Add($receive_number, $send_number, $default['de_icode_id'], iconv("utf-8", "euc-kr", stripslashes($sms_contents)), ""); - $SMS->Send(); - } -} -//---------------------------------------------------------- -// SMS 문자전송 끝 -//---------------------------------------------------------- -?> diff --git a/mobile/skin/member/shop_basic/register_result.skin.php b/mobile/skin/member/shop_basic/register_result.skin.php deleted file mode 100644 index d019a6347..000000000 --- a/mobile/skin/member/shop_basic/register_result.skin.php +++ /dev/null @@ -1,45 +0,0 @@ - - - - -
    - - - -

    - 님의 회원가입을 진심으로 축하합니다.
    -

    - - -

    - 회원 가입 시 입력하신 이메일 주소로 인증메일이 발송되었습니다.
    - 발송된 인증메일을 확인하신 후 인증처리를 하시면 사이트를 원활하게 이용하실 수 있습니다. -

    -
    - 아이디 -
    - 이메일 주소 - -
    -

    - 이메일 주소를 잘못 입력하셨다면, 사이트 관리자에게 문의해주시기 바랍니다. -

    - - -

    - 회원님의 패스워드는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다.
    - 아이디, 패스워드 분실시에는 회원가입시 입력하신 패스워드 분실시 질문, 답변을 이용하여 찾을 수 있습니다. -

    - -

    - 회원 탈퇴는 언제든지 가능하며 일정기간이 지난 후, 회원님의 정보는 삭제하고 있습니다.
    - 감사합니다. -

    - - - -
    diff --git a/mobile/skin/member/shop_basic/scrap.skin.php b/mobile/skin/member/shop_basic/scrap.skin.php deleted file mode 100644 index f6b237fae..000000000 --- a/mobile/skin/member/shop_basic/scrap.skin.php +++ /dev/null @@ -1,35 +0,0 @@ - - - - -
    -

    - - - - - - - - - - - - - - - - - - - - "; ?> - -
    스크랩 목록
    게시판제목삭제
    삭제
    자료가 없습니다.
    - - - - -
    diff --git a/mobile/skin/member/shop_basic/scrap_popin.skin.php b/mobile/skin/member/shop_basic/scrap_popin.skin.php deleted file mode 100644 index d9de596ad..000000000 --- a/mobile/skin/member/shop_basic/scrap_popin.skin.php +++ /dev/null @@ -1,36 +0,0 @@ - - - - -
    -

    스크랩하기

    - -
    - - - - - - - - - - - - - - - -
    제목 확인 및 댓글 쓰기
    제목
    - -

    - 스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다. -

    - -
    - -
    -
    -
    \ No newline at end of file diff --git a/mobile/skin/member/shop_basic/style.css b/mobile/skin/member/shop_basic/style.css deleted file mode 100644 index 88dfb6c70..000000000 --- a/mobile/skin/member/shop_basic/style.css +++ /dev/null @@ -1,108 +0,0 @@ -/* 회원가입 약관 */ -#fregister section {padding:1.5em;border-bottom:1px solid #eee;background:#fafafa} -#fregister h2 {margin:0 0 1.5em;text-align:center} -#fregister textarea {display:block;margin-bottom:1em;padding:0.3em;width:99%;height:150px;border:1px solid #cfded8;background:#f7f7f7} -#fregister textarea:focus {background:#21272e;color:#fff} -.fregister_agree {padding:1em 0 0;text-align:right} -.fregister_agree label {display:inline-block;margin-right:0.3em} -#fregister p {color:#e8180c;text-align:center} -#fregister .btn_confirm {margin:1.5em 0} - -/* 회원가입 입력 */ -#fregisterform textarea {height:50px} - -/* 회원가입 완료 */ -#reg_result {padding:4em 1em 0} -#reg_result_logo {margin-bottom:50px;text-align:center} -#reg_result_email {padding:10px 50px;border-top:1px solid #eee;border-bottom:1px solid #eee;background:#fff;line-height:2em} -#reg_result_email span {display:inline-block;width:150px} -#reg_result_email strong {color:#e8180c;font-size:1.2em} -#reg_result .btn_confirm {margin:50px 0} - -/* 아이디/패스워드 찾기 */ -#find_info_fs {margin:0 auto 1em;padding:1em;border-bottom:1px solid #eee} -#find_info_fs #mb_email {width:100%} -#find_info #captcha {margin:0 0 1em;padding:0 1em 1em} -#find_info #captcha input {margin-left:0.3em} - -/* 로그인 */ -#mb_login {margin:2em 0} -#mb_login h1 {margin:0 0 1.5em;padding:0 1em;font-size:1.3em} -#mb_login h2 {margin:0} -#mb_login_fs {position:relative;padding:0 0.5em;font-size:1em} -#mb_login_fs legend {position:absolute;font-size:0;line-height:0;overflow:hidden} -#mb_login_fs .frm_input {display:block;margin-bottom:0.3em;padding:0;width:80%;height:1.8em;line-height:1.8em} -#mb_login_fs .btn_submit {position:absolute;top:0em;right:0.5em;padding:0 !important;width:18%;height:4em !important;text-align:center} -#mb_login_info {margin:30px 0;padding:1.5em 1em;border:1px solid #cfded8;background:#f7f7f7} -#mb_login_info div {text-align:right} - -#mb_login_notmb {margin:30px 0;padding:1.5em 1em;border:1px solid #cfded8;background:#f7f7f7} -#mb_login_notmb #guest_privacy {margin:0 0 1em;padding:1em;height:150px;border:1px solid #e9e9e9;background:#fff;overflow:auto} -#mb_login_notmb .btn_confirm {text-align:right} - -#mb_login_od {position:relative;margin:2em 0.5em;border-bottom:0;background:#fff} -#mb_login_od legend {position:absolute;font-size:0;line-height:0;overflow:hidden} -#mb_login_od .od_id {position:absolute;top:26px;left:95px} -#mb_login_od .od_pwd {position:absolute;top:52px;left:95px} -#mb_login_od .frm_input {display:block;margin-bottom:0.3em;padding:0;width:80%;height:1.8em;line-height:1.8em} -#mb_login_od .btn_submit {position:absolute;top:0em;right:0;padding:0 !important;width:18%;height:4em !important;text-align:center} -#mb_login_odinfo {margin:0 0 30px;padding:20px;border:1px solid #cfded8;background:#f7f7f7} -#mb_login_odinfo div {text-align:right} - -/* 쪽지 */ -#memo_view section {padding:1em} -#memo_view section h2 {width:0;height:0;font-size:0;line-height:0;overflow:hidden} -#memo_view_ul {margin:0;padding:0 0 1em;border-bottom:1px solid #eee;list-style:none} -.memo_view_li {position:relative;padding:0.3em 0} -.memo_view_subj {display:inline-block;width:65px} -#memo_view_ul a {} -#memo_view section p {min-height:150px;height:auto !important;height:150px} - -#memo_write #me_recv_mb_id {width:98%} -#memo_write textarea {width:99%;height:100px} - -/* 스크랩 */ -#scrap td:nth-of-type(1) {width:150px} -#scrap td:nth-last-of-type(1) {width:50px;text-align:center} - -#scrap_do table {margin:0 0 1em;width:100%} -#scrap_do textarea {width:99%;height:100px} - -/* 회원 패스워드 확인 */ -#mb_confirm {margin:30px 0} -#mb_confirm h1 {margin:0 0 1.5em;padding:0 1em;font-size:1.3em} -#mb_confirm p {padding:1.5em 1em;border-bottom:1px solid #cfded8;border-bottom:0;background:#fff} -#mb_confirm p strong {display:block} -#mb_confirm fieldset {position:relative;margin:0 0 3em;padding:2em 1em;border-bottom:1px solid #cfded8;background:#f7f7f7} -#mb_confirm_pw {display:block;margin-top:1em;padding:0;width:80%;line-height:1.8em !important} -#mb_confirm .btn_submit {position:absolute;bottom:2em;right:1em;width:18%;height:1.9em !important;line-height:1.9em} - -/* 비밀글 패스워드 확인 */ -#pw_confirm {margin:30px 0} -#pw_confirm h1 {margin:0 0 1.5em;padding:0 1em;font-size:1.3em} -#pw_confirm p {padding:1.5em 1em;border-bottom:1px solid #cfded8;border-bottom:0;background:#fff} -#pw_confirm p strong {display:block} -#pw_confirm fieldset {position:relative;margin:0 0 3em;padding:0.5em 0.5em 1em;border-bottom:1px solid #cfded8;background:#f7f7f7} -#pw_wr_password {display:block;margin-top:1em;padding:0;width:80%;line-height:1.8em !important} -#pw_confirm .btn_submit {position:absolute;bottom:1em;right:0.5em;width:18%;height:1.9em !important;line-height:1.9em} - -/* 폼메일 */ -#formmail #subject {width:98%} -#formmail textarea {width:99%;height:100px} - -/* 자기소개 */ -#profile table {margin-bottom:0} -#profile section {padding:1em} -#profile h2 {margin:0} -#profile .sv_wrap a {margin:0 0 0.3em;padding:0;font-weight:bold;line-height:1em} - -/* 우편번호 검색 */ -#post_code fieldset {margin:0 auto 10px;padding:1em;text-align:center} -#post_code dl {margin:0 0 1em;padding:1.5em 1em;background:#fff} -#post_code dt {margin-bottom:15px;color:#000} -#post_code dd {margin:0;padding:0} -#post_code ul {margin:0;padding:0;list-style:none} -#post_code li a {display:block;padding:0.7em 0;border-bottom:1px solid #eee;color:#000;text-decoration:none} -#post_code p {margin:0 auto 30px;padding:0 1em} -#post_code .btn_submit {height:1.9em !important;line-height:1.9em !important} -.post_code {display:inline-block;width:100px;color:#999} \ No newline at end of file diff --git a/mobile/skin/member/shop_basic/zip.skin.php b/mobile/skin/member/shop_basic/zip.skin.php deleted file mode 100644 index 184483867..000000000 --- a/mobile/skin/member/shop_basic/zip.skin.php +++ /dev/null @@ -1,63 +0,0 @@ - - - - -
    -

    - -
    - - - - - - -
    - - -
    - - - - - - - 0) { ?> -
    -
    건 가나다순 정렬
    -
    -
      - -
    • -
    • - -
    -
    -
    - -

    검색결과가 끝났습니다.

    - -
    - 창닫기 -
    - - - -
    diff --git a/skin/member/shop_basic/formmail.skin.php b/skin/member/shop_basic/formmail.skin.php deleted file mode 100644 index a1a6b764c..000000000 --- a/skin/member/shop_basic/formmail.skin.php +++ /dev/null @@ -1,95 +0,0 @@ - - - - -
    -

    님께 메일보내기

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    메일쓰기
    형식 - - - -
    자동등록방지
    - -
    -

    - 작성하신 메일을 발송하시려면 메일발송 버튼을, 작성을 취소하고 창을 닫으시려면 창닫기 버튼을 누르세요. -

    - - -
    - - -
    - - diff --git a/skin/member/shop_basic/img/reg_result_logo.jpg b/skin/member/shop_basic/img/reg_result_logo.jpg deleted file mode 100644 index 9bdf4f72df0a38fc4b3b112a1930818bce46f6e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2108 zcma)5c{~*Q7XQs+m_ZC<7^A{4BeIM&M3#$ZWU?h$Q=`#tA;KIilOe$F}nd=LLU|058mSle0y2owO? zb^!i7K>recA}|U-037^90{$Y{VNN@9+z-&2wiyV27$gJ8-v{)+fc?aO#-R|%wz^$E zg}>YIn*dq}C;>ef1P!2Q2n-G3w}B7$YxL;i>RwD3|E@h!(S;cL- zkCuxe=3{m7>Gn;P+WUTRKZKQV$~ckUX}23z_bKn?bRyk*0Tb6VUYYJjyy?_Abr=P= zewbd96ZyskIOGfDFeI@TMrCUm^nl#{>O6v7&$+?ZHYO=q?S64Znn!GGUUy}`OmL`u zv#R4?SrI)~`And&+Bm!6Rmte1*0MJ!SDqf#ew?A4K=o5dudAil`R`*}-?!+`zeUkc z)cqzWi2^8x#z|*nW*2Uua3OE(g>7y%RAp&G%V%f=`$B5hG?N=uZa=MMV4US_*7e2F z(pg+9tUoC~ut~l#!uUqi$gZvOLUOsgidT+=uoc38|0!^(hs8k}9ea{u)oqX6PnCKm zLzqR0wB;XkOV+yO6}e;PftbfHXPhRho_R@!SeH4%Ys!L83I84u;MI*ePf@z@?pl$S zOQz>d#Hpdt!I4J znzj4kYh`L^$W(OILypOflpZ}jTSAi;hZ;d|7ensG6c0{a8=7jYOYMlT3|SzQ1}2`F ztJvA);gS3!G^nrjhN`Ug^jUo805O*0$GY8j!_gr#3I8swy_qbK?w>(2bWfj?oWDMa z{~j`;{)$Gm$dezz>$j)feCyj6rSaa_%721j+RltV#GiN0O8ozh64b|VW53w2V+ zWJE@1X}F9VW_Ty}?w!#?zu_+NL3vt2_;4QX6)`tSSn*)V#Y;jZ1oi6E0c8Ax7<^4) zX44?kyKZ{fN+qN$Bt;Y!$ufjcrRnse~gA}i=AO_=EybJ6Ly&h2UQLDtzgzI zYYxNqZe%$IIVCz>f)lYhP5n%%f^b2I6<&Qft~d2VjNdF5KT=T@G`sNdFgD3e=G@wB zYLz%fnX6DLv~@?`g>7kPUW9X=%Ya4{Q7SGkpoSY{noJi}&y^}{lwrSb^L^*33 zPUC6IS$P7ByOdOqdR2Z~w(H^fcy46S2<0^T7*wYB6e%KEOaZ(5rNpOtB;dF&cbgZh zuDBL_lu=TYGntDajqa^^_aST;Vc5?w%2o_LsvYi^{V>$jqkA(s>d6|a+sO0)$>j5E za$pjoPZerwB?5$+;KC8(s~L~$zYhj#%6;g4vBJ_hDq3rck-#nTsGYZsK!HLjs_<*|Eog_3q%MI_!Cwd00rrvAa39m9vj+rNF=w7dv!dA72e(tF|3APef_-8t#0F6oJs6P13eaUzA2tR_)iv1dIkUh diff --git a/skin/member/shop_basic/login.skin.php b/skin/member/shop_basic/login.skin.php deleted file mode 100644 index 297d9e905..000000000 --- a/skin/member/shop_basic/login.skin.php +++ /dev/null @@ -1,124 +0,0 @@ - - - - -
    -

    - -
    - - -
    - 회원로그인 - - - - - - - -
    - - - -
    - - - - - - - -
    -

    비회원 구매

    - -

    - 비회원으로 주문하시는 경우 포인트는 지급하지 않습니다. -

    - -
    - -
    - - - - - - - -
    - - - -
    - 비회원 주문조회 - -
    - - - - - - - -
    -
    - -
    -

    비회원 주문조회 안내

    -

    메일로 발송해드린 주문서의 주문번호 및 주문 시 입력하신 비밀번호를 정확히 입력해주십시오.

    -
    - - - - - - - - -
    - - diff --git a/skin/member/shop_basic/login_check.skin.php b/skin/member/shop_basic/login_check.skin.php deleted file mode 100644 index 1b182915e..000000000 --- a/skin/member/shop_basic/login_check.skin.php +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/skin/member/shop_basic/member_confirm.skin.php b/skin/member/shop_basic/member_confirm.skin.php deleted file mode 100644 index 74bd3ee12..000000000 --- a/skin/member/shop_basic/member_confirm.skin.php +++ /dev/null @@ -1,47 +0,0 @@ - - - - -
    -

    - -

    - 패스워드를 한번 더 입력해주세요. - - 패스워드를 입력하시면 회원탈퇴가 완료됩니다. - - 회원님의 정보를 안전하게 보호하기 위해 패스워드를 한번 더 확인합니다. - -

    - -
    - - - -
    - 회원아이디 - - - - - -
    - -
    - - - -
    - - diff --git a/skin/member/shop_basic/memo.skin.php b/skin/member/shop_basic/memo.skin.php deleted file mode 100644 index d3567fa9f..000000000 --- a/skin/member/shop_basic/memo.skin.php +++ /dev/null @@ -1,46 +0,0 @@ - - - - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - "; } ?> - -
    - 전체 쪽지
    -
    보낸시간읽은시간관리
    삭제
    자료가 없습니다.
    - -

    - 쪽지 보관일수는 최장 일 입니다. -

    - - -
    \ No newline at end of file diff --git a/skin/member/shop_basic/memo_form.skin.php b/skin/member/shop_basic/memo_form.skin.php deleted file mode 100644 index df7c5dbbf..000000000 --- a/skin/member/shop_basic/memo_form.skin.php +++ /dev/null @@ -1,59 +0,0 @@ - - - - -
    -

    쪽지보내기

    - - - -
    -
    - - - - - - - - - - - - - - - - -
    쪽지쓰기
    - - 여러 회원에게 보낼때는 컴마(,)로 구분하세요. -
    자동등록방지 - -
    -
    - -
    -

    - 작성하신 쪽지를 발송하시려면 보내기 버튼을, 작성을 취소하고 창을 닫으시려면 창닫기 링크를 누르세요. -

    - - 창닫기 -
    -
    -
    - - diff --git a/skin/member/shop_basic/memo_view.skin.php b/skin/member/shop_basic/memo_view.skin.php deleted file mode 100644 index e251ac02d..000000000 --- a/skin/member/shop_basic/memo_view.skin.php +++ /dev/null @@ -1,50 +0,0 @@ - - - - -
    -

    - -
    -

    쪽지 내용

    -
      -
    • - 사람 - -
    • -
    • - 시간 - -
    • -
    -

    - -

    -
    - -
    \ No newline at end of file diff --git a/skin/member/shop_basic/password.skin.php b/skin/member/shop_basic/password.skin.php deleted file mode 100644 index 319c07417..000000000 --- a/skin/member/shop_basic/password.skin.php +++ /dev/null @@ -1,47 +0,0 @@ - - - - -
    -

    -

    - - 작성자만 글을 수정할 수 있습니다. - 작성자 본인이라면, 글 작성시 입력한 패스워드를 입력하여 글을 수정할 수 있습니다. - - 작성자만 글을 삭제할 수 있습니다. - 작성자 본인이라면, 글 작성시 입력한 패스워드를 입력하여 글을 삭제할 수 있습니다. - - 비밀글 기능으로 보호된 글입니다. - 작성자와 관리자만 열람하실 수 있습니다. 본인이라면 패스워드를 입력하세요. - -

    - -
    - - - - - - - - -
    - - - -
    -
    - - - -
    diff --git a/skin/member/shop_basic/password_lost.skin.php b/skin/member/shop_basic/password_lost.skin.php deleted file mode 100644 index 998366af0..000000000 --- a/skin/member/shop_basic/password_lost.skin.php +++ /dev/null @@ -1,44 +0,0 @@ - - - - -
    -

    회원정보 찾기

    - -
    -
    -

    - 회원가입 시 등록하신 이메일 주소를 입력해 주세요.
    - 해당 이메일로 아이디와 패스워드 정보를 보내드립니다. -

    - - -
    - -
    - - -
    -
    -
    - - diff --git a/skin/member/shop_basic/profile.skin.php b/skin/member/shop_basic/profile.skin.php deleted file mode 100644 index f7a8cb3fc..000000000 --- a/skin/member/shop_basic/profile.skin.php +++ /dev/null @@ -1,45 +0,0 @@ - - - - -
    -

    님의 프로필

    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    회원권한
    포인트
    홈페이지
    회원가입일= $mb['mb_level']) ? substr($mb['mb_datetime'],0,10) ." (".number_format($mb_reg_after)." 일)" : "알 수 없음"; ?>
    최종접속일= $mb['mb_level']) ? $mb['mb_today_login'] : "알 수 없음"; ?>
    - -
    -

    인사말

    -

    -
    - -
    - 창닫기 -
    -
    diff --git a/skin/member/shop_basic/register.skin.php b/skin/member/shop_basic/register.skin.php deleted file mode 100644 index 8a06f9135..000000000 --- a/skin/member/shop_basic/register.skin.php +++ /dev/null @@ -1,51 +0,0 @@ - - - -
    - -

    회원가입약관 및 개인정보수집이용안내의 내용에 동의하셔야 회원가입 하실 수 있습니다.

    - -
    -

    회원가입약관

    - -
    - - -
    -
    - -
    -

    개인정보수집이용안내

    - -
    - - -
    -
    - -
    - -
    - -
    - - diff --git a/skin/member/shop_basic/register_form.skin.php b/skin/member/shop_basic/register_form.skin.php deleted file mode 100644 index 280bd1682..000000000 --- a/skin/member/shop_basic/register_form.skin.php +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - -
    - - - - - - date("Y-m-d", G5_SERVER_TIME - ($config['cf_nick_modify'] * 86400))) { // 별명수정일이 지나지 않았다면 ?> - - - - - - - - - - - - - - - - - - -
    사이트 이용정보 입력
    - 영문자, 숫자, _ 만 입력 가능. 최소 3자이상 입력하세요. - class="frm_input minlength_3 "maxlength="20"> - -
    class="frm_input minlength_3 " maxlength="20">
    class="frm_input minlength_3 " maxlength="20">
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    개인정보 입력
    - - 휴대폰 본인확인 후에는 이름과 휴대폰번호가 자동 입력되며 수동으로 입력할수 없게 됩니다. - - class="frm_input nospace " size="10"> - -
    - 휴대폰 본인확인성인인증 완료 -
    - -
    - - 공백없이 한글,영문,숫자만 입력 가능 (한글2자, 영문4자 이상)
    - 별명을 바꾸시면 앞으로 일 이내에는 변경 할 수 없습니다. -
    - - - -
    - - - - - - - - -
    class="frm_input " size="50" maxlength="255">
    class="frm_input " maxlength="20">
    - - 휴대폰번호는 휴대폰 본인확인 기능을 이용하여 입력하세요. - - class="frm_input " maxlength="20"> - - - - - -
    - 주소 - 필수 - - - class="frm_input " size="2" maxlength="3"> - - - - class="frm_input " size="2" maxlength="3"> - - - class="frm_input frm_address " size="50"> - - class="frm_input frm_address " size="50"> - -
    - - - - - - - - - - - - - - - - - -= $config['cf_icon_level']) { ?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    기타 개인설정
    - - 이미지 크기는 가로 픽셀, 세로 픽셀 이하로 해주세요.
    - gif만 가능하며 용량 바이트 이하만 등록됩니다. -
    - - - - - -
    - > - 정보 메일을 받겠습니다. -
    - > - 휴대폰 문자메세지를 받겠습니다. -
    - - 정보공개를 바꾸시면 앞으로 일 이내에는 변경이 안됩니다. - - - id="reg_mb_open"> - 다른분들이 나의 정보를 볼 수 있도록 합니다. -
    정보공개 - - 정보공개는 수정후 일 이내, 까지는 변경이 안됩니다.
    - 이렇게 하는 이유는 잦은 정보공개 수정으로 인하여 쪽지를 보낸 후 받지 않는 경우를 막기 위해서 입니다. -
    - -
    자동등록방지
    - -
    -

    - 작성하신 내용를 발송하시려면 버튼을, 작성을 취소하고 창을 닫으시려면 취소 링크를 누르세요. -

    - - 취소 -
    -
    - - - - - - - - diff --git a/skin/member/shop_basic/register_form_update.tail.skin.php b/skin/member/shop_basic/register_form_update.tail.skin.php deleted file mode 100644 index 6158e7488..000000000 --- a/skin/member/shop_basic/register_form_update.tail.skin.php +++ /dev/null @@ -1,32 +0,0 @@ -SMS_con($default['de_icode_server_ip'], $default['de_icode_id'], $default['de_icode_pw'], $default['de_icode_server_port']); - - $SMS->Add($receive_number, $send_number, $default['de_icode_id'], iconv("utf-8", "euc-kr", stripslashes($sms_contents)), ""); - $SMS->Send(); - } -} -//---------------------------------------------------------- -// SMS 문자전송 끝 -//---------------------------------------------------------- -?> diff --git a/skin/member/shop_basic/register_result.skin.php b/skin/member/shop_basic/register_result.skin.php deleted file mode 100644 index 8c5ff111e..000000000 --- a/skin/member/shop_basic/register_result.skin.php +++ /dev/null @@ -1,45 +0,0 @@ - - - - -
    - - - -

    - 님의 회원가입을 진심으로 축하합니다.
    -

    - - -

    - 회원 가입 시 입력하신 이메일 주소로 인증메일이 발송되었습니다.
    - 발송된 인증메일을 확인하신 후 인증처리를 하시면 사이트를 원활하게 이용하실 수 있습니다. -

    -
    - 아이디 -
    - 이메일 주소 - -
    -

    - 이메일 주소를 잘못 입력하셨다면, 사이트 관리자에게 문의해주시기 바랍니다. -

    - - -

    - 회원님의 패스워드는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다.
    - 아이디, 패스워드 분실시에는 회원가입시 입력하신 이메일 주소를 이용하여 찾을 수 있습니다. -

    - -

    - 회원 탈퇴는 언제든지 가능하며 일정기간이 지난 후, 회원님의 정보는 삭제하고 있습니다.
    - 감사합니다. -

    - - - -
    diff --git a/skin/member/shop_basic/scrap.skin.php b/skin/member/shop_basic/scrap.skin.php deleted file mode 100644 index e39250822..000000000 --- a/skin/member/shop_basic/scrap.skin.php +++ /dev/null @@ -1,39 +0,0 @@ - - - - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - "; ?> - -
    스크랩 목록
    번호게시판제목보관일시삭제
    삭제
    자료가 없습니다.
    - - - - -
    diff --git a/skin/member/shop_basic/scrap_popin.skin.php b/skin/member/shop_basic/scrap_popin.skin.php deleted file mode 100644 index 247f63dbe..000000000 --- a/skin/member/shop_basic/scrap_popin.skin.php +++ /dev/null @@ -1,36 +0,0 @@ - - - - -
    -

    스크랩하기

    - -
    - - - - - - - - - - - - - - - -
    제목 확인 및 댓글 쓰기
    제목
    - -

    - 스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다. -

    - -
    - -
    -
    -
    \ No newline at end of file diff --git a/skin/member/shop_basic/style.css b/skin/member/shop_basic/style.css deleted file mode 100644 index f13592ee9..000000000 --- a/skin/member/shop_basic/style.css +++ /dev/null @@ -1,114 +0,0 @@ -/* 회원가입 약관 */ -#fregister section {margin:0 0 20px;padding:20px 0;border-bottom:3px solid #eee} -#fregister h2 {margin:0 0 20px;text-align:center} -#fregister textarea {display:block;margin-bottom:10px;padding:5px;width:98%;height:150px;border:1px solid #cfded8;background:#f7f7f7} -#fregister textarea:focus {background:#21272e;color:#fff} -.fregister_agree {padding:10px 0 0;text-align:right} -.fregister_agree label {display:inline-block;margin-right:5px} -#fregister p {color:#e8180c;text-align:center} -#fregister .btn_confirm {margin-bottom:20px} - -/* 회원가입 입력 */ -#fregisterform .cbg {margin-bottom:15px;padding:20px} -#fregisterform textarea {height:50px} - -#msg_hp_certify {margin:5px 0 0;padding:5px;border:1px solid #dbecff;background:#eaf4ff;text-align:center} - -/* 회원가입 완료 */ -#reg_result {padding:50px 0 0} -#reg_result_logo {margin-bottom:50px;text-align:center} -#reg_result_email {padding:10px 50px;border-top:1px solid #eee;border-bottom:1px solid #eee;background:#fff;line-height:2em} -#reg_result_email span {display:inline-block;width:150px} -#reg_result_email strong {color:#e8180c;font-size:1.2em} -#reg_result .btn_confirm {margin:50px 0} - -/* 아이디/패스워드 찾기 */ -#find_info #mb_hp_label {display:inline-block;margin-left:10px} -#find_info #captcha {margin:0 auto 20px;width:87%} -#find_info #captcha input {margin-left:5px} -#find_info_fs {margin:0 auto 20px;padding:10px 20px 15px;width:87%;border-right:1px solid #eee;border-bottom:1px solid #eee;background:#fff} - -#find_info_result li {margin:0 0 5px} -#find_info_result span {display:inline-block;width:70px} -#find_info_result strong {color:#ff3061} -#find_info_result_wrap {margin:0 auto 20px;padding:10px 20px 15px;width:87%;border-right:1px solid #eee;border-bottom:1px solid #eee;background:#fff} - -/* 로그인 */ -#mb_login {margin:0 auto;padding:100px 0;width:500px} -#mb_login h1 {margin:0 0 20px;font-size:1.3em} -#mb_login h2 {margin:0} -#mb_login_fs {position:relative;margin:0;padding:20px 20px 20px 95px;border:1px solid #cfded8;border-bottom:0;background:#fff} -#mb_login_fs legend {position:absolute;font-size:0;line-height:0;overflow:hidden} -#mb_login_fs label {letter-spacing:-0.1em} -#mb_login_fs .login_id {position:absolute;top:26px;left:95px} -#mb_login_fs .login_pw {position:absolute;top:52px;left:95px} -#mb_login_fs .frm_input {display:block;margin:0 0 5px 80px} -#mb_login_fs .btn_submit {position:absolute;top:20px;left:335px;height:49px} -#mb_login_info {margin:0 0 30px;padding:20px;border:1px solid #cfded8;background:#f5f6fa} -#mb_login_info div {text-align:right} - -#mb_login_notmb {position:relative;margin:0 0 20px;padding:20px;border:1px solid #cfded8;background:#fff} -#mb_login_notmb #guest_privacy {margin:0 0 10px;padding:10px;height:150px;border:1px solid #e9e9e9;overflow:auto} -#mb_login_notmb .btn_confirm {padding:10px 0 0} - -#mb_login_od {position:relative;margin:0;padding:20px 20px 20px 95px;border:1px solid #cfded8;border-bottom:0;background:#fff} -#mb_login_od legend {position:absolute;font-size:0;line-height:0;overflow:hidden} -#mb_login_od label {letter-spacing:-0.1em} -#mb_login_od .od_id {position:absolute;top:26px;left:95px} -#mb_login_od .od_pwd {position:absolute;top:52px;left:95px} -#mb_login_od .frm_input {display:block;margin:0 0 5px 80px} -#mb_login_od .btn_submit {position:absolute;top:20px;left:335px;width:52px;height:49px} -#mb_login_odinfo {margin:0 0 30px;padding:20px;border:1px solid #cfded8;background:#f5f6fa} -#mb_login_odinfo div {text-align:right} - -/* 쪽지 */ -#memo_view section {margin:0 auto 20px;padding:20px;width:87%} -#memo_view section h2 {width:1px;height:1px;font-size:0;line-height:0;overflow:hidden} -#memo_view_ul {margin:0;padding:0 0 10px;border-bottom:1px solid #eee;list-style:none} -.memo_view_li {position:relative;padding:5px 0} -.memo_view_subj {display:inline-block;width:65px} -#memo_view_ul a {} -#memo_view section p {padding:10px;min-height:150px;height:auto !important;height:150px;background:#fff} - -#memo_write textarea {height:100px} - -/* 스크랩 */ -#scrap_do .cbg {margin:0 auto 20px;padding:20px;width:87%} -#scrap_do table {margin:0 0 10px;width:100%} -#scrap_do textarea {height:100px} - -/* 회원 패스워드 확인 */ -#mb_confirm {margin:0 auto;padding:100px 0;width:500px} -#mb_confirm h1 {margin:0 0 20px;font-size:1.3em} -#mb_confirm p {padding:20px;border:1px solid #cfded8;border-bottom:0;background:#fff} -#mb_confirm p strong {display:block} -#mb_confirm fieldset {margin:0 0 30px;padding:30px 0;border:1px solid #cfded8;background:#f5f6fa;text-align:center} -#mb_confirm label {letter-spacing:-0.1em} -#mb_confirm_id {display:inline-block;margin-right:20px;font-weight:bold} - -/* 비밀글 패스워드 확인 */ -#pw_confirm {margin:0 auto;padding:100px 0;width:500px} -#pw_confirm h1 {margin:0 0 20px;font-size:1.3em} -#pw_confirm p {padding:20px;border:1px solid #cfded8;border-bottom:0;background:#fff} -#pw_confirm p strong {display:block} -#pw_confirm fieldset {margin:0 0 30px;padding:30px 0;border:1px solid #cfded8;background:#f5f6fa;text-align:center} -#pw_confirm label {letter-spacing:-0.1em} -#pw_confirm_id {display:inline-block;margin-right:20px;font-weight:bold} - -/* 폼메일 */ -#formmail textarea {height:100px} - -/* 자기소개 */ -#profile table {margin-bottom:0} -#profile section {margin:0 auto 20px;padding:20px;width:86%} -#profile h2 {margin:0} - -/* 우편번호 검색 */ -#post_code fieldset {margin:0 auto 10px;padding:15px 10px;width:87%;text-align:center} -#post_code dl {margin:0 auto 10px;padding:20px 10px;width:87%;border-right:1px solid #eee;border-bottom:1px solid #eee;background:#fff} -#post_code dt {margin-bottom:15px;color:#000} -#post_code dd {margin:0;padding:0} -#post_code ul {margin:0;padding:0;list-style:none} -#post_code li a {display:block;padding:8px 0 6px;border-bottom:1px solid #eee} -#post_code p {margin:0 auto 30px;width:90%} -.post_code {display:inline-block;width:50px;color:#999} \ No newline at end of file diff --git a/skin/member/shop_basic/zip.skin.php b/skin/member/shop_basic/zip.skin.php deleted file mode 100644 index 2ceff7df4..000000000 --- a/skin/member/shop_basic/zip.skin.php +++ /dev/null @@ -1,63 +0,0 @@ - - - - -
    -

    - -
    - - - - - - -
    - - - -
    - - - - - - 0) { ?> -
    -
    건 가나다순 정렬
    -
    -
      - -
    • -
    • - -
    -
    -
    - -

    검색결과가 끝났습니다.

    - -
    - 창닫기 -
    - - - -
    From 2f2075428a8f0b60d813d5d5d929b46ed514a83b Mon Sep 17 00:00:00 2001 From: gnuboard Date: Tue, 8 Oct 2013 18:15:03 +0900 Subject: [PATCH 16/24] =?UTF-8?q?=ED=98=84=EC=9E=AC=EC=A3=BC=EB=AC=B8?= =?UTF-8?q?=ED=98=84=ED=99=A9=20=EC=B6=94=EA=B0=80=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/index.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/adm/shop_admin/index.php b/adm/shop_admin/index.php index f40285af9..70dfd8ed8 100644 --- a/adm/shop_admin/index.php +++ b/adm/shop_admin/index.php @@ -8,6 +8,7 @@ $g5['title'] = ' 쇼핑몰관리'; include_once (G5_ADMIN_PATH.'/admin.head.php'); $pg_anchor = '
      +
    • 주문현황
    • 입금완료미배송내역
    • 미입금주문내역
    • 사용후기
    • @@ -15,6 +16,23 @@ $pg_anchor = '
      '; ?> +
      +

      주문현황

      + + + + + +
      +

      입금완료 미배송내역

      From ffa41cdfb1ab651c0bda5ab742679d1fa2d70be2 Mon Sep 17 00:00:00 2001 From: chicpro Date: Thu, 10 Oct 2013 09:53:13 +0900 Subject: [PATCH 17/24] =?UTF-8?q?kcp=20site=5Fkey=20=ED=95=84=EB=93=9C=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/personalpayform.php | 1 - 1 file changed, 1 deletion(-) diff --git a/shop/personalpayform.php b/shop/personalpayform.php index c38573413..40a433ae9 100644 --- a/shop/personalpayform.php +++ b/shop/personalpayform.php @@ -129,7 +129,6 @@ function get_intall_file() ?> - Date: Thu, 10 Oct 2013 09:55:40 +0900 Subject: [PATCH 18/24] =?UTF-8?q?=EA=B0=9C=EC=9D=B8=EA=B2=B0=EC=A0=9C=20?= =?UTF-8?q?=EB=93=B1=EB=A1=9D=ED=8F=BC=EC=97=90=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/personalpayform.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/adm/shop_admin/personalpayform.php b/adm/shop_admin/personalpayform.php index a659486fe..5ecbcbed0 100644 --- a/adm/shop_admin/personalpayform.php +++ b/adm/shop_admin/personalpayform.php @@ -90,6 +90,18 @@ $pg_anchor = '
    +
    + + + + + 목록 + + + 삭제 + +
    +

    결제 정보

    From d0b1ffbcf3706fb3a4d3f4cae1e2d40f92a3ddc2 Mon Sep 17 00:00:00 2001 From: chicpro Date: Thu, 10 Oct 2013 10:26:19 +0900 Subject: [PATCH 19/24] =?UTF-8?q?kcp=20site=5Fkey=20=ED=95=84=EB=93=9C=20?= =?UTF-8?q?=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/shop/kcp/order_approval_form.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/mobile/shop/kcp/order_approval_form.php b/mobile/shop/kcp/order_approval_form.php index 58ad6851f..da687279c 100644 --- a/mobile/shop/kcp/order_approval_form.php +++ b/mobile/shop/kcp/order_approval_form.php @@ -238,8 +238,6 @@ - - From 1390e06f368c967679a9437e811baed95516c8fd Mon Sep 17 00:00:00 2001 From: chicpro Date: Thu, 10 Oct 2013 10:30:45 +0900 Subject: [PATCH 20/24] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=20=EC=A3=BC?= =?UTF-8?q?=EB=AC=B8=ED=8F=BC=EC=97=90=EC=84=9C=20=EC=A3=BC=EB=AC=B8?= =?UTF-8?q?=EC=9E=90=EC=99=80=20=EB=8F=99=EC=9D=BC=20=EA=B8=B0=EB=8A=A5=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/shop/orderform.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mobile/shop/orderform.php b/mobile/shop/orderform.php index 53cefb5c5..74aefe710 100644 --- a/mobile/shop/orderform.php +++ b/mobile/shop/orderform.php @@ -418,11 +418,6 @@ ob_end_clean();

    받으시는 분

    -
    - - -
    - Date: Thu, 10 Oct 2013 13:45:52 +0900 Subject: [PATCH 21/24] =?UTF-8?q?canonical=20=EB=B0=8F=20meta=20=EC=B6=9C?= =?UTF-8?q?=EB=A0=A5=20=EC=9C=84=EC=B9=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- head.sub.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/head.sub.php b/head.sub.php index 7609d275b..2b6b47d24 100644 --- a/head.sub.php +++ b/head.sub.php @@ -37,6 +37,9 @@ if (G5_IS_MOBILE) { echo ''.PHP_EOL; echo ''.PHP_EOL; echo ''.PHP_EOL; +} else { + echo ''.PHP_EOL; + echo ''.PHP_EOL; } ?> <?php echo $g5_head_title; ?> @@ -44,16 +47,13 @@ if (G5_IS_MOBILE) { if (defined('G5_IS_ADMIN')) { echo ''.PHP_EOL; } else { + echo ''.PHP_EOL; // canonical 지정 $canonical = ''; - if ($bo_table && $wr_id) $canonical = 'http://'.$_SERVER["HTTP_HOST"].'/bbs/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id; - else $canonical = 'http://'.$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]; - echo ''; - - echo ''.PHP_EOL; + if ($bo_table && $wr_id) $canonical = 'http://'.$_SERVER['HTTP_HOST'].'/bbs/board.php?bo_table='.$bo_table.'&wr_id='.$wr_id; + else $canonical = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; + echo ''.PHP_EOL; } -echo ''; -echo ''; ?>