Ignore:
Timestamp:
2009/05/15 16:30:40 (15 years ago)
Author:
kajiwara
Message:

2.4.0 正式版のコミット。コミット内容の詳細はこちら(http://svn.ec-cube.net/open_trac/query?status=closed&milestone=EC-CUBE2.4.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/pages/shopping/LC_Page_Shopping_Complete.php

    r17493 r18007  
    630630        $sqlval['buy_times']++; 
    631631        $sqlval['buy_total']+= $arrData['total']; 
    632         $sqlval['point'] = ($sqlval['point'] + $arrData['add_point'] - $arrData['use_point']); 
     632        if (USE_POINT === false) { 
     633            $sqlval['point'] = $sqlval['point']; 
     634        } else { 
     635            //$sqlval['point'] = ($sqlval['point'] - $arrData['use_point']); 
     636            $sqlval['point'] = ($sqlval['point'] + $arrData['add_point'] - $arrData['use_point']); 
     637        } 
    633638 
    634639        // ポイントが不足している場合 
Note: See TracChangeset for help on using the changeset viewer.