Changeset 17764


Ignore:
Timestamp:
2009/02/13 16:35:45 (15 years ago)
Author:
Seasoft
Message:

送料無料の購入数が設定されている場合のみ、商品の合計数量を算出するように改善。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/helper/SC_Helper_DB.php

    r17755 r17764  
    14861486        if (!isset($arrData['use_point'])) $arrData['use_point'] = ""; 
    14871487 
    1488         // 商品の合計数量 
    1489         $total_quantity = $objCartSess->getTotalQuantity(true); 
    1490  
    14911488        // 税金の取得 
    14921489        $arrData['tax'] = $objPage->tpl_total_tax; 
     
    15091506 
    15101507        // 送料無料の購入数が設定されている場合 
    1511         if(DELIV_FREE_AMOUNT > 0) { 
     1508        if (DELIV_FREE_AMOUNT > 0) { 
     1509            // 商品の合計数量 
     1510            $total_quantity = $objCartSess->getTotalQuantity(true); 
     1511             
    15121512            if($total_quantity >= DELIV_FREE_AMOUNT) { 
    15131513                $arrData['deliv_fee'] = 0; 
Note: See TracChangeset for help on using the changeset viewer.