Index: /branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_History.php
===================================================================
--- /branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_History.php	(revision 22206)
+++ /branches/version-2_12-dev/data/class/pages/mypage/LC_Page_Mypage_History.php	(revision 22271)
@@ -74,4 +74,5 @@
         $objDb          = new SC_Helper_DB_Ex();
         $objPurchase = new SC_Helper_Purchase_Ex();
+        $objProduct  = new SC_Product();
 
         if (!SC_Utils_Ex::sfIsInt($_GET['order_id'])) {
@@ -79,5 +80,6 @@
         }
 
-        $order_id        = $_GET['order_id'];
+        $order_id               = $_GET['order_id'];
+        $this->is_price_change  = false;
 
         //受注データの取得
@@ -95,4 +97,13 @@
         // 受注商品明細の取得
         $this->tpl_arrOrderDetail = $objPurchase->getOrderDetail($order_id);
+        foreach ($this->tpl_arrOrderDetail as $product_index => $arrOrderProductDetail) {
+            //必要なのは商品の販売金額のみなので、遅い場合は、別途SQL作成した方が良い
+            $arrTempProductDetail = $objProduct->getProductsClass($arrOrderProductDetail['product_class_id']); 
+            if($this->tpl_arrOrderDetail[$product_index]['price'] != $arrTempProductDetail['price02']) {
+                $this->is_price_change = true;
+            }
+            $this->tpl_arrOrderDetail[$product_index]['product_price'] = ($arrTempProductDetail['price02'])?$arrTempProductDetail['price02']:0;
+        }
+        
         $this->tpl_arrOrderDetail = $this->setMainListImage($this->tpl_arrOrderDetail);
         $objPurchase->setDownloadableFlgTo($this->tpl_arrOrderDetail);
Index: /branches/version-2_12-dev/data/Smarty/templates/default/mypage/history.tpl
===================================================================
--- /branches/version-2_12-dev/data/Smarty/templates/default/mypage/history.tpl	(revision 22218)
+++ /branches/version-2_12-dev/data/Smarty/templates/default/mypage/history.tpl	(revision 22271)
@@ -33,4 +33,7 @@
                 <span class="st">注文番号：&nbsp;</span><!--{$tpl_arrOrderData.order_id}--><br />
                 <span class="st">お支払い方法：&nbsp;</span><!--{$arrPayment[$tpl_arrOrderData.payment_id]|h}-->
+                <!--{if $is_price_change == true}-->    
+                    <div class="attention" Align="right">※金額が変更されている商品があるため、再注文時はご注意ください。</div>
+                <!--{/if}-->
             </p>
             <form action="order.php" method="post">
@@ -84,11 +87,16 @@
                     <!--{/if}-->
                     </td>
-                    <!--{assign var=price value=`$orderDetail.price`}-->
+                    <!--{assign var=order_price   value=`$orderDetail.price`}-->
+                    <!--{assign var=product_price value=`$orderDetail.product_price`}-->
                     <!--{assign var=quantity value=`$orderDetail.quantity`}-->
                     <!--{assign var=tax_rate value=`$orderDetail.tax_rate`}-->
                     <!--{assign var=tax_rule value=`$orderDetail.tax_rule`}-->
-                    <td class="alignR"><!--{$price|sfCalcIncTax:$tax_rate:$tax_rule|number_format|h}-->円</td>
+                    <td class="alignR"><!--{$order_price|sfCalcIncTax:$tax_rate:$tax_rule|number_format|h}-->円
+                    <!--{if $order_price != $product_price}-->
+                        <div class="attention">【現在価格】</div><span class="attention"><!--{$product_price|sfCalcIncTax:$tax_rate:$tax_rule|number_format|h}-->円</span>
+                    <!--{/if}-->
+                    </td>
                     <td class="alignR"><!--{$quantity|h}--></td>
-                    <td class="alignR"><!--{$price|sfCalcIncTax:$tax_rate:$tax_rule|sfMultiply:$quantity|number_format}-->円</td>
+                    <td class="alignR"><!--{$order_price|sfCalcIncTax:$tax_rate:$tax_rule|sfMultiply:$quantity|number_format}-->円</td>
                 </tr>
             <!--{/foreach}-->
