Changeset 18823


Ignore:
Timestamp:
2010/09/27 02:48:24 (14 years ago)
Author:
Seasoft
Message:

#628(未使用処理・定義の削除)

  • 販売価格(price02)は必須となっており、NULL を考慮する必要は無い。また、他の実装で、考慮はしていないため一貫性が無い。
File:
1 edited

Legend:

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

    r18820 r18823  
    315315 
    316316                // 価格の登録 
    317                 if ($arrData['price02'] != "") { 
    318                     $objCartSess->setProductValue($arrCart['id'], 'price', $arrData['price02']); 
    319                     $objPage->arrProductsClass[$cnt]['uniq_price'] = $arrData['price02']; 
    320                 } else { 
    321                     $objCartSess->setProductValue($arrCart['id'], 'price', $arrData['price01']); 
    322                     $objPage->arrProductsClass[$cnt]['uniq_price'] = $arrData['price01']; 
    323                 } 
     317                $objCartSess->setProductValue($arrCart['id'], 'price', $arrData['price02']); 
     318                $objPage->arrProductsClass[$cnt]['uniq_price'] = $arrData['price02']; 
    324319                // ポイント付与率の登録 
    325320                if (USE_POINT !== false) { 
Note: See TracChangeset for help on using the changeset viewer.