Index: branches/dev/html/shopping/complete.php
===================================================================
--- branches/dev/html/shopping/complete.php	(revision 231)
+++ branches/dev/html/shopping/complete.php	(revision 343)
@@ -62,7 +62,13 @@
 
 	//¤½¤ÎÂ¾¾ðÊó¤Î¼èÆÀ
-	$other_data = $objQuery->get("dtb_order", "memo02", "order_id = ? ", array($order_id));
-	if($other_data != "") {
-		$arrOther = unserialize($other_data);
+	//$other_data = $objQuery->get("dtb_order", "memo02", "order_id = ? ", array($order_id));
+	$arrResults = $objQuery->getall("SELECT memo02, memo05 FROM dtb_order order_id = ?", array($order_id));	
+	$cnt = count($arrResults);
+	
+	if($cnt != 0) {
+		// ´°Î»²èÌÌ¤ÇÉ½¼¨¤¹¤ë·èºÑÆâÍÆ
+		$arrOther = unserialize($arrResults[0]["memo02"]);
+		// ´°Î»²èÌÌ¤«¤éÁ÷¿®¤¹¤ë·èºÑÆâÍÆ
+		$arrModuleParam = unserialize($arrResults[0]["memo05"]);
 		
 		// ¥Ç¡¼¥¿¤òÊÔ½¸
@@ -75,5 +81,5 @@
 				
 		$objPage->arrOther = $arrOther;
-		
+		$objPage->arrModuleParam = $arrModuleParam;
 	}
 	
