Changeset 343


Ignore:
Timestamp:
2007/02/22 15:40:08 (17 years ago)
Author:
inoue
Message:

決済情報を送信するロジックに対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/shopping/complete.php

    r231 r343  
    6262 
    6363    //¤½¤Î¾¾ðÊó¤Î¼èÆÀ 
    64     $other_data = $objQuery->get("dtb_order", "memo02", "order_id = ? ", array($order_id)); 
    65     if($other_data != "") { 
    66         $arrOther = unserialize($other_data); 
     64    //$other_data = $objQuery->get("dtb_order", "memo02", "order_id = ? ", array($order_id)); 
     65    $arrResults = $objQuery->getall("SELECT memo02, memo05 FROM dtb_order order_id = ?", array($order_id));  
     66    $cnt = count($arrResults); 
     67     
     68    if($cnt != 0) { 
     69        // ´°Î»²èÌ̤Çɽ¼¨¤¹¤ë·èºÑÆâÍÆ 
     70        $arrOther = unserialize($arrResults[0]["memo02"]); 
     71        // ´°Î»²èÌ̤«¤éÁ÷¿®¤¹¤ë·èºÑÆâÍÆ 
     72        $arrModuleParam = unserialize($arrResults[0]["memo05"]); 
    6773         
    6874        // ¥Ç¡¼¥¿¤òÊÔ½¸ 
     
    7581                 
    7682        $objPage->arrOther = $arrOther; 
    77          
     83        $objPage->arrModuleParam = $arrModuleParam; 
    7884    } 
    7985     
Note: See TracChangeset for help on using the changeset viewer.