Ignore:
Timestamp:
2013/09/19 11:49:03 (11 years ago)
Author:
m_uehara
Message:

#2363 r23177, r23181 - r23186, r23188 - r23191, r23194, r23197, r23199 - r23218, r23220, r23223 - r23225 をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/SC_Product.php

    r23176 r23230  
    405405        $arrRes = $this->getProductsClassByQuery($objQuery, $productClassId); 
    406406 
    407         return (array) $arrRes[0]; 
     407        $arrProduct = (array) $arrRes[0]; 
     408 
     409        // 税込計算 
     410        if(!SC_Utils_Ex::isBlank($arrProduct['price01'])) { 
     411            $arrProduct['price01_inctax'] = SC_Helper_TaxRule_Ex::sfCalcIncTax($arrProduct['price01'], $arrProduct['product_id'], $productClassId);         
     412        } 
     413        if(!SC_Utils_Ex::isBlank($arrProduct['price02'])) { 
     414            $arrProduct['price02_inctax'] = SC_Helper_TaxRule_Ex::sfCalcIncTax($arrProduct['price02'], $arrProduct['product_id'], $productClassId);         
     415        } 
     416 
     417        return $arrProduct; 
    408418    } 
    409419 
Note: See TracChangeset for help on using the changeset viewer.