From 4a8da7836852bae556fded581523f942049de0f6 Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 22 Apr 2013 15:32:32 +0900 Subject: [PATCH] =?UTF-8?q?csv=20=EB=B0=B0=EC=86=A1=EC=9D=BC=EA=B4=84?= =?UTF-8?q?=EC=B2=98=EB=A6=AC=20=ED=8C=8C=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/shop_admin/invoicebundle.php | 110 ------------------------- adm/shop_admin/invoicebundleupdate.php | 73 ---------------- 2 files changed, 183 deletions(-) delete mode 100644 adm/shop_admin/invoicebundle.php delete mode 100644 adm/shop_admin/invoicebundleupdate.php diff --git a/adm/shop_admin/invoicebundle.php b/adm/shop_admin/invoicebundle.php deleted file mode 100644 index c078b4ffe..000000000 --- a/adm/shop_admin/invoicebundle.php +++ /dev/null @@ -1,110 +0,0 @@ - - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
CSV 파일 - -
주문내역출력에서 다운로드 받은 CSV 파일에 운송장번호만 입력하신 후 저장하여, - 반드시 이 CSV 파일로만 업로드 하시기 바랍니다. -
배송회사 - -
배송일시 - - " - onclick="if (this.checked == true) this.form.od_invoice_time.value=this.form.od_invoice_chk.value; else this.form.od_invoice_time.value = this.form.od_invoice_time.defaultValue;">현재 시간 -
주문상품 상태 - - 주문상품의 상태를 일괄 변경합니다. -
업데이트 - 이미 입력된 배송정보를 모두 새로 업데이트 합니다. -
- -

- - -

- -
- - - - diff --git a/adm/shop_admin/invoicebundleupdate.php b/adm/shop_admin/invoicebundleupdate.php deleted file mode 100644 index 745a970b2..000000000 --- a/adm/shop_admin/invoicebundleupdate.php +++ /dev/null @@ -1,73 +0,0 @@ -"; - //print_r2($row); - if (!$row['od_id']) continue; - - // 이미 입력된 운송장번호를 모두 새로 수정하지 않는다면... - if ($row['dl_id'] && $row['od_invoice'] && !$re) - continue; - - $sql = " update {$g4['shop_order_table']} - set od_invoice = '$od_invoice', - od_invoice_time = '$od_invoice_time', - dl_id = '{$_POST['dl_id']}' - where od_id = '$od_id' "; - sql_query($sql); - - if ($ct_status) - { - $sql = " update {$g4['shop_cart_table']} - set ct_status = '$ct_status' - where uq_id = '{$row['uq_id']}' - and ct_status in ('주문', '준비', '배송', '완료') "; - sql_query($sql); - } - - $i++; - $msg .= sprintf("%05d", $i) . ". 주문번호 : $od_id -> 송장번호 : $od_invoice
"; - } -} - -$g4['title'] = "배송일괄등록 처리결과"; -include_once (G4_ADMIN_PATH.'/admin.head.php'); - -//echo subtitle($g4['title']); -echo "

"; - -if ($msg) -{ - echo $msg; - echo "업데이트 완료
"; -} -else - echo "처리 내역이 없습니다."; -echo "

[끝]"; - -include_once (G4_ADMIN_PATH.'/admin.tail.php'); -?> \ No newline at end of file