Ignore:
Timestamp:
2010/02/12 18:13:28 (14 years ago)
Author:
kajiwara
Message:

Ver2.4.3にアップデート

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/helper/SC_Helper_DB.php

    r18432 r18561  
    315315                        $limit = $arrData['sale_limit']; 
    316316                    } else { 
    317                         $limit = $arrData['stock']; 
     317                        // 購入制限数を在庫数に 
     318                        #$limit = $arrData['stock']; 
     319                        // 購入制限数をSALE_LIMIT_MAXに 
     320                        $limit = SALE_LIMIT_MAX; 
    318321                    } 
    319322                } else { 
     
    322325                    } 
    323326                    if ($arrData['stock_unlimited'] != '1') { 
    324                         $limit = $arrData['stock']; 
     327                        // 購入制限数を在庫数に 
     328                        #$limit = $arrData['stock']; 
     329                        // 購入制限数をSALE_LIMIT_MAXに 
     330                        $limit = SALE_LIMIT_MAX; 
    325331                    } 
    326332                } 
     
    13781384 
    13791385    /** 
    1380      * 配送時間を取得する. 
     1386     * お届け時間を取得する. 
    13811387     * 
    13821388     * @param integer $payment_id 支払い方法ID 
    1383      * @return array 配送時間の配列 
     1389     * @return array お届け時間の配列 
    13841390     */ 
    13851391    function sfGetDelivTime($payment_id = "") { 
Note: See TracChangeset for help on using the changeset viewer.