Index: /branches/comu-ver2/data/class/pages/shopping/LC_Page_Shopping_Complete.php
===================================================================
--- /branches/comu-ver2/data/class/pages/shopping/LC_Page_Shopping_Complete.php	(revision 17994)
+++ /branches/comu-ver2/data/class/pages/shopping/LC_Page_Shopping_Complete.php	(revision 18099)
@@ -630,7 +630,5 @@
         $sqlval['buy_times']++;
         $sqlval['buy_total']+= $arrData['total'];
-        if (USE_POINT !== false) {
-            $sqlval['point'] -= $arrData['use_point'];
-        }
+        $sqlval['point'] = ($sqlval['point'] + $arrData['add_point'] - $arrData['use_point']);
 
         // ポイントが不足している場合
Index: /branches/comu-ver2/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php
===================================================================
--- /branches/comu-ver2/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php	(revision 17741)
+++ /branches/comu-ver2/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php	(revision 18099)
@@ -160,5 +160,4 @@
         $where = 'order_id = ?';
         $arrUpdate = array('update_date' => 'NOW()');
-	$col = 'customer_id, add_point, use_point, status';
 
         $delflg  = '1'; // 削除フラグ
@@ -183,63 +182,4 @@
             foreach ( $arrMove as $val ){
                 if ( $val != "" ) {
-		if ( $status_id == ORDER_DELIV ) {
-        $arrRet = $objQuery->select($col, $table, $where, array($val));
-        $customer_id = $arrRet[0]['customer_id'];
-        $add_point = $arrRet[0]['add_point'];
-        $status = $arrRet[0]['status'];
-        if($customer_id != "" && $customer_id >= 1) {
-            $arrRet = $objQuery->select("point", 'dtb_customer', 'customer_id = ?', array($customer_id));
-            $arrRet[0]['point']+= $add_point;
-            $sqlval['point'] = $arrRet[0]['point'];
-            $objQuery->update('dtb_customer', $sqlval, 'customer_id = ?', array($customer_id));
-          }
-        }
-         elseif ( $status_id == ORDER_CANCEL ) {
-            $arrRet = $objQuery->select($col, $table, $where, array($val));
-            $customer_id = $arrRet[0]['customer_id'];
-            $add_point = $arrRet[0]['add_point'];
-            $use_point = $arrRet[0]['use_point'];
-            $status = $arrRet[0]['status'];
-            if($customer_id != "" && $customer_id >= 1) {
-               if($status == 5) {
-               $arrRet = $objQuery->select("point", 'dtb_customer', 'customer_id = ?', array($customer_id));
-               $arrRet[0]['point']-= $add_point;
-               $arrRet[0]['point']+= $use_point;
-               $sqlval['point'] = $arrRet[0]['point'];
-               $objQuery->update('dtb_customer', $sqlval, 'customer_id = ?', array($customer_id));
-            } else {
-               $arrRet = $objQuery->select("point", 'dtb_customer', 'customer_id = ?', array($customer_id));
-               $arrRet[0]['point']+= $use_point;
-               $sqlval['point'] = $arrRet[0]['point'];
-               $objQuery->update('dtb_customer', $sqlval, 'customer_id = ?', array($customer_id));
-            }
-          }
-        }
-        else {
-            $arrRet = $objQuery->select($col, $table, $where, array($val));
-            $customer_id = $arrRet[0]['customer_id'];
-            $add_point = $arrRet[0]['add_point'];
-            $use_point = $arrRet[0]['use_point'];
-            $status = $arrRet[0]['status'];
-            if($customer_id != "" && $customer_id >= 1) {
-               if($status == 5) {
-               $arrRet = $objQuery->select("point", 'dtb_customer', 'customer_id = ?', array($customer_id));
-               $arrRet[0]['point']-= $add_point;
-               $sqlval['point'] = $arrRet[0]['point'];
-               $objQuery->update('dtb_customer', $sqlval, 'customer_id = ?', array($customer_id));
-            }
-             elseif($status == 3) {
-               $arrRet = $objQuery->select("point", 'dtb_customer', 'customer_id = ?', array($customer_id));
-               $arrRet[0]['point']-= $use_point;
-               $sqlval['point'] = $arrRet[0]['point'];
-               $objQuery->update('dtb_customer', $sqlval, 'customer_id = ?', array($customer_id));
-            }
-            else {
-               $arrRet = $objQuery->select("point", 'dtb_customer', 'customer_id = ?', array($customer_id));
-               $sqlval['point'] = $arrRet[0]['point'];
-               $objQuery->update('dtb_customer', $sqlval, 'customer_id = ?', array($customer_id));
-            }
-          }
-         }
                     $objQuery->update($table, $arrUpdate, $where, array($val));
                 }
