Ignore:
Timestamp:
2009/02/18 15:29:44 (17 years ago)
Author:
kishida
Message:

#292 管理画面から新規注文入力/注文編集機能の対応で、ポイントON/OFFを考慮した内容を反映させる

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_4/data/class/util/SC_Utils.php

    r17516 r17803  
    903903    /* 加算ポイントの計算式 */ 
    904904    function sfGetAddPoint($totalpoint, $use_point, $arrInfo) { 
     905        if( USE_POINT === false ) return ; 
    905906        // 購入商品の合計ポイントから利用したポイントのポイント換算価値を引く方式 
    906907        $add_point = $totalpoint - intval($use_point * ($arrInfo['point_rate'] / 100)); 
     
    19931994        for($i = 0; $i < $cnt; $i++) { 
    19941995            $html.= "<tr>"; 
    1995             foreach($array[$i] as $val) { 
     1996          foreach($array[$i] as $val) { 
    19961997                $html.="<td>$val</td>"; 
    19971998            } 
Note: See TracChangeset for help on using the changeset viewer.