モバイルでポイント反映する--「かごの中をみる」「購入履歴のページ」 
        
      かごの中をみる 
      cube/data/Smarty/templates/default/mobile/cart/index.tpl 
      合計金額の後、70行目らあたりに 
      
        
          <p>             <!--{if $tpl_login == 1}--> 
■現在の所持ポイントは「<!--{$tpl_user_point|default:0}--> pt」です。 
<!--{/if}--><br />  </p> 
今回の取得ポイント「<!--{$arrData.add_point|number_format}-->pt」です。<br>
  | 
         
       
        
        
      -------------------------------------------------------------- 
        MYページ 購入履歴詳細 
         
        履歴詳細ページに使用ポイントと加算ポイント、現在のポイントを記載
      cube/data/Smarty/templates/default/mobile/mypage/history_detail.php 
      58行目くらいの「商品合計金額」と「送料」の間に 
        
      
        
           <!--{assign var=point_discount value="`$arrDisp.use_point*$smarty.const.POINT_VALUE`"}--> 
  <!--{if $point_discount > 0}--> 
ポイント値引き:<!--{$point_discount|number_format}-->円<br> 
<!--{/if}--> 
<!--{assign var=key value="discount"}--> 
<!--{if $arrDisp[$key] != "" && $arrDisp[$key] > 0}--> 
値引き:<!--{$arrDisp[$key]|number_format}-->円<br> 
<!--{/if}--> | 
         
       
        
       合計の最後に  78行目くらい?に 
      
        
          ご利用ポイント  
<!--{assign var=key value="use_point"}--><!--{$arrDisp[$key]|number_format|default:0}-->pt<br> 
              加算されたポイント  
<!--{$arrDisp.add_point|number_format|default:0}-->pt<br><br> 
★現在のポイント <em><!--{$CustomerPoint|number_format|escape|default:"0"}-->pt</em>です 
                      | 
         
       
                 
        
     |