diff --git a/adm/admin.menu400.shop_1of2.php b/adm/admin.menu400.shop_1of2.php
index 098d45c20..cf32523c5 100644
--- a/adm/admin.menu400.shop_1of2.php
+++ b/adm/admin.menu400.shop_1of2.php
@@ -5,8 +5,6 @@ $menu['menu400'] = array (
array('400000', '쇼핑몰관리', G5_ADMIN_URL.'/shop_admin/', 'shop_config'),
array('400100', '쇼핑몰설정', G5_ADMIN_URL.'/shop_admin/configform.php', 'scf_config'),
array('400400', '주문내역', G5_ADMIN_URL.'/shop_admin/orderlist.php', 'scf_order', 1),
- array('400410', '주문개별내역', G5_ADMIN_URL.'/shop_admin/orderstatuslist.php', 'scf_order_by', 1),
- array('400420', '주문통합내역', G5_ADMIN_URL.'/shop_admin/orderlist2.php', 'scf_order_all', 1),
array('400440', '개인결제관리', G5_ADMIN_URL.'/shop_admin/personalpaylist.php', 'scf_personalpay', 1),
array('400200', '분류관리', G5_ADMIN_URL.'/shop_admin/categorylist.php', 'scf_cate'),
array('400300', '상품관리', G5_ADMIN_URL.'/shop_admin/itemlist.php', 'scf_item'),
@@ -16,7 +14,6 @@ $menu['menu400'] = array (
array('400610', '상품유형관리', G5_ADMIN_URL.'/shop_admin/itemtypelist.php', 'scf_item_type'),
array('400500', '상품옵션재고관리', G5_ADMIN_URL.'/shop_admin/optionstocklist.php', 'scf_item_option'),
array('400650', '쿠폰관리', G5_ADMIN_URL.'/shop_admin/couponlist.php', 'scf_coupon'),
- array('400500', '배송일괄처리', G5_ADMIN_URL.'/shop_admin/deliverylist.php', 'scf_deli', 1),
array('400750', '추가배송비관리', G5_ADMIN_URL.'/shop_admin/sendcostlist.php', 'scf_sendcost', 1)
);
?>
\ No newline at end of file
diff --git a/adm/shop_admin/deliverylist.php b/adm/shop_admin/deliverylist.php
deleted file mode 100644
index bb4da94ba..000000000
--- a/adm/shop_admin/deliverylist.php
+++ /dev/null
@@ -1,235 +0,0 @@
-선택하세요'.PHP_EOL;
-$sql = " select * from {$g5['g5_shop_delivery_table']} order by dl_order ";
-$result = sql_query($sql);
-for($i=0; $row=sql_fetch_array($result); $i++) {
- $delivery_options .= ''.PHP_EOL;
-}
-// 배송회사리스트 end ---------------------------------------------
-
-$where = " where ";
-$sql_search = "";
-if ($search != "") {
- if ($sel_field != "") {
- $sql_search .= " $where $sel_field like '%$search%' ";
- $where = " and ";
- }
-}
-
-$sql_search .= " $where od_status in ('준비', '배송') ";
-
-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 ";
-
-// 테이블의 전체 레코드수만 얻음
-if ($chk_misu) {
- $sql = " select * $sql_common where od_misu <= 0 ";
- $result = sql_query($sql);
- $total_count = mysql_num_rows($result);
-}
-else {
- $row = sql_fetch("select count(od_id) as cnt from {$g5['g5_shop_order_table']} $sql_search ");
- $total_count = $row['cnt'];
-}
-
-$rows = $config['cf_page_rows'];
-$total_page = ceil($total_count / $rows); // 전체 페이지 계산
-if ($page == "") { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지)
-$from_record = ($page - 1) * $rows; // 시작 열을 구함
-
-if (!$sort1) {
- $sort1 = "od_id";
-}
-
-if (!$sort2) {
- $sort2 = "desc";
-}
-
-if ($sort2 == "desc") {
- $unsort2 == "asc";
-} else {
- $unsort2 == "desc";
-}
-
-$qstr1 = 'sel_ca_id='.$sel_ca_id.'&sel_field='.$sel_field.'&search='.$search.'&chk_misu='.$chk_misu;
-$qstr = $qstr1.'&sort1='.$sort1.'&sort2='.$sort2.'&page='.$page;
-
-$listall = '전체목록';
-?>
-
-
-
- 전체 주문내역 건
-
-
-
-
-
-
- - 주문액은 취소, 반품, 품절이 포함된 금액이 아닙니다.
- - 입금액은 환불/취소가 포함된 금액이 아닙니다.
- - 배송일시, 배송회사는 입력의 편의성을 위하여 기본값으로 설정되어 있습니다. 운송장번호만 없는것이 미배송 주문자료입니다.
-
-
-
-
-
-
-
-
-
-
diff --git a/adm/shop_admin/deliverylistupdate.php b/adm/shop_admin/deliverylistupdate.php
deleted file mode 100644
index 9ad245a8f..000000000
--- a/adm/shop_admin/deliverylistupdate.php
+++ /dev/null
@@ -1,138 +0,0 @@
-SMS_con($config['cf_icode_server_ip'], $config['cf_icode_id'], $config['cf_icode_pw'], $config['cf_icode_server_port']);
-}
-
-if($_POST['send_escrow']) {
- $sql = " select dl_id, dl_company from {$g5['g5_shop_delivery_table']} order by dl_id asc ";
- $result = sql_query($sql);
- $dl_comp = array();
- for($i=0; $row=sql_fetch_array($result); $i++) {
- if($row['dl_id'] && $row['dl_company'])
- $dl_comp[$row['dl_id']] = $row['dl_company'];
- }
-
- $arr_tno = array();
- $arr_corp = array();
- $arr_numb = array();
- $arr_idx = 0;
-}
-
-for ($m=0; $mAdd($receive_number, $send_number, $config['cf_icode_id'], stripslashes($sms_contents), "");
- }
- }
- //---------------------------------------
-
- // 에스크로배송연동
- if($_POST['send_escrow'] && $_POST['od_tno'][$m] && $_POST['od_escrow'][$m]) {
- $arr_tno[$arr_idx] = $_POST['od_tno'][$m];
- $arr_numb[$arr_idx] = $_POST['od_invoice'][$m];
- $arr_corp[$arr_idx] = $dl_comp[$_POST['dl_id'][$m]];
- $arr_idx++;
- }
- }
- }
- else
- {
- $sql = "update {$g5['g5_shop_order_table']}
- set od_invoice_time = '',
- dl_id = '',
- od_invoice = ''
- where od_id = '{$_POST['od_id'][$m]}' ";
- sql_query($sql);
- }
-}
-
-if ($config['cf_sms_use'] == "icode")
-{
- $SMS->Send();
-}
-
-if($_POST['send_escrow']) {
- $cust_ip = getenv('REMOTE_ADDR');
- include_once('./orderescrow.inc.php');
-}
-
-goto_url("./deliverylist.php?sort1=$sort1&sort2=$sort2&sel_ca_id=$sel_ca_id&sel_field=$sel_field&search=$search&page=$page");
-?>
diff --git a/adm/shop_admin/orderlist2.php b/adm/shop_admin/orderlist2.php
deleted file mode 100644
index 29d15a7c2..000000000
--- a/adm/shop_admin/orderlist2.php
+++ /dev/null
@@ -1,304 +0,0 @@
-전체목록';
-?>
-
-
-
- 전체 주문내역 건
-
-
-
-
-
-
- 주의! 주문번호를 클릭하여 나오는 주문상세내역의 주소를 외부에서 조회가 가능한곳에 올리지 마십시오.
-
-
-
-
-
-
-
-
- 목록
-
- 0)
- $s_receipt_way .= $s_br.'포인트';
-
- $od_mobile = '';
- if($row['od_mobile'])
- $od_mobile = '(M)';
-
- $tot_itemcount += $row['od_cart_count'];
- $tot_orderprice += ($row['od_cart_price'] + $row['od_send_cost'] + $row['od_send_cost2']);
- $tot_ordercancel += $row['od_cancel_price'];
- $tot_receiptprice += $row['od_receipt_price'];
- $tot_couponprice += $row['couponprice'];
- $tot_misu += $row['od_misu'];
-
- $uid = md5($row['od_id'].$row['od_time'].$row['od_ip']);
- ?>
-
-
- - 주문번호
- -
-
-
-
-
-
- - 주문일시
-
- - 건수
- - 건
-
-
-
- - 주문자
- -
-
- ()
-
-
-
- - 입금자
-
-
-
-
-
- - 주문합계
-
- - 입금합계
-
- - 결제수단
-
- - 쿠폰사용
-
- - 주문취소
-
- - 미수금
-
-
-
-
-
- 상품 옵션 목록
-
-
- | 상품명 |
- 옵션 |
- 판매가 |
- 수량 |
- 포인트 |
- 소계 |
- 배송비 |
- 상태 |
-
-
-
-
-
-
-
-
-
- | 새창 |
-
- |
- |
- |
- |
- |
- |
- |
-
-
-
-
-
-
-
-
-
-
-
-
-
- 자료가 한건도 없습니다.';
- ?>
-
-
-
-
- 합계
-
-
-
-
- 주문내역 합계
-
-
- | 주문건수 |
- 주문액 |
- 쿠폰 |
- 취소 |
- 입금완료 |
- 미수금 |
-
-
-
-
- | 건 |
- |
- |
- |
- |
- |
-
-
-
-
-
-
-
-
-
diff --git a/adm/shop_admin/orderstatuslist.php b/adm/shop_admin/orderstatuslist.php
deleted file mode 100644
index 6ea25bbeb..000000000
--- a/adm/shop_admin/orderstatuslist.php
+++ /dev/null
@@ -1,196 +0,0 @@
-전체목록';
-?>
-
-
-
- 전체 주문내역 건
-
-
-
-
-
-
-
-
-
-
- 목록
-
-
- | ">주문번호 |
- ">상품명 |
- ">주문자 |
- ">회원ID |
- ">판매가 |
- ">수량 |
- ">소계 |
- ">포인트 |
- ">상태 |
- 관리 |
-
-
- | 주문일시 |
- 옵션 |
- 입금자 |
-
-
-
- '.cut_str($row['it_name'],35).'
';
-
- $od_mobile = '';
- if($row['od_mobile'])
- $od_mobile = '(M)';
-
- $tr_bg = 'tr_bg'.($i%2);
- ?>
-
- |
-
-
- |
- |
-
-
- |
- |
- |
- |
- |
- |
- |
- 수정 |
-
- >
- |
- |
- |
-
- 자료가 한건도 없습니다. | ';
- ?>
-
-
-
- | 합 계
- | |
- |
- |
- |
- |
-
-
-
-
-
-
-
-
-
diff --git a/install/gnuboard5shop.sql b/install/gnuboard5shop.sql
index a991d1f5f..a8dbeee47 100644
--- a/install/gnuboard5shop.sql
+++ b/install/gnuboard5shop.sql
@@ -580,22 +580,6 @@ CREATE TABLE IF NOT EXISTS `g5_shop_new_win` (
-- --------------------------------------------------------
---
--- Table structure for table `g5_shop_onlinecalc`
---
-
-DROP TABLE IF EXISTS `g5_shop_onlinecalc`;
-CREATE TABLE IF NOT EXISTS `g5_shop_onlinecalc` (
- `oc_id` int(11) NOT NULL AUTO_INCREMENT,
- `oc_subject` varchar(255) NOT NULL DEFAULT '',
- `oc_category` text NOT NULL,
- `oc_head_html` text NOT NULL,
- `oc_tail_html` text NOT NULL,
- PRIMARY KEY (`oc_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
--- --------------------------------------------------------
-
--
-- Table structure for table `g5_shop_order`
--
diff --git a/install/install_db.php b/install/install_db.php
index f9edea829..3cebe0f7b 100644
--- a/install/install_db.php
+++ b/install/install_db.php
@@ -189,9 +189,6 @@ if($g5_shop_install) {
@mysql_query(" insert into `{$g5_shop_prefix}content` set co_id = 'privacy', co_html = '1', co_subject = '개인정보 취급방침', co_content= '개인정보 취급방침에 대한 내용을 입력하십시오.
' ") or die(mysql_error() . "" . $sql);
@mysql_query(" insert into `{$g5_shop_prefix}content` set co_id = 'provision', co_html = '1', co_subject = '서비스 이용약관', co_content= '
서비스 이용약관에 대한 내용을 입력하십시오.
' ") or die(mysql_error() . "" . $sql);
- // 온라인견적
- @mysql_query(" insert into `{$g5_shop_prefix}onlinecalc` set oc_id = '1', oc_subject = '온라인견적' ") or die(mysql_error() . "
" . $sql);
-
// FAQ Master
@mysql_query(" insert into `{$g5_shop_prefix}faq_master` set fm_id = '1', fm_subject = '자주하시는 질문' ") or die(mysql_error() . "
" . $sql);
@@ -421,8 +418,7 @@ if($g5_shop_install) {
$data_path.'/content',
$data_path.'/event',
$data_path.'/faq',
- $data_path.'/item',
- $data_path.'/onlinecalc'
+ $data_path.'/item'
);
for ($i=0; $i