Ignore:
Timestamp:
2007/05/30 17:57:58 (19 years ago)
Author:
matsumoto
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/admin/order/mail.php

    r13830 r13831  
    4343 
    4444// DB¤«¤é¼õÃí¾ðÊó¤òÆÉ¤ß¹þ¤à 
    45 lfGetCustomerData($_POST['order_id']); 
     45lfGetOrderData($_POST['order_id']); 
    4646 
    4747 
     
    126126} 
    127127 
    128 function lfGetCustomerData($order_id) { 
     128function lfGetOrderData($order_id) { 
    129129    global $objFormParam; 
    130130    global $objPage; 
     
    133133        $objQuery = new SC_Query(); 
    134134        $where = "order_id = ?"; 
    135         $arrRet = $objQuery->select("*", "dtb_customer", $where, array($order_id)); 
     135        $arrRet = $objQuery->select("*", "dtb_order", $where, array($order_id)); 
    136136        $objFormParam->setParam($arrRet[0]); 
    137137        list($point, $total_point) = sfGetCustomerPoint($order_id, $arrRet[0]['use_point'], $arrRet[0]['add_point']); 
Note: See TracChangeset for help on using the changeset viewer.