Changeset 17764
- Timestamp:
- 2009/02/13 16:35:45 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/comu-ver2/data/class/helper/SC_Helper_DB.php
r17755 r17764 1486 1486 if (!isset($arrData['use_point'])) $arrData['use_point'] = ""; 1487 1487 1488 // 商品の合計数量1489 $total_quantity = $objCartSess->getTotalQuantity(true);1490 1491 1488 // 税金の取得 1492 1489 $arrData['tax'] = $objPage->tpl_total_tax; … … 1509 1506 1510 1507 // 送料無料の購入数が設定されている場合 1511 if(DELIV_FREE_AMOUNT > 0) { 1508 if (DELIV_FREE_AMOUNT > 0) { 1509 // 商品の合計数量 1510 $total_quantity = $objCartSess->getTotalQuantity(true); 1511 1512 1512 if($total_quantity >= DELIV_FREE_AMOUNT) { 1513 1513 $arrData['deliv_fee'] = 0;
Note: See TracChangeset
for help on using the changeset viewer.