Changeset 20487 for branches/version-2_5-dev/data/class/SC_CartSession.php
- Timestamp:
- 2011/03/04 20:25:06 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/SC_CartSession.php
r20312 r20487 226 226 // カートへの商品追加 227 227 function addProduct($product_class_id, $quantity) { 228 $objProduct = new SC_Product ();228 $objProduct = new SC_Product_Ex(); 229 229 $arrProduct = $objProduct->getProductsClass($product_class_id); 230 230 $productTypeId = $arrProduct['product_type_id']; … … 292 292 293 293 function getCartList($productTypeId) { 294 $objProduct = new SC_Product ();294 $objProduct = new SC_Product_Ex(); 295 295 $max = $this->getMax($productTypeId); 296 296 $arrRet = array(); … … 445 445 */ 446 446 function checkProducts($productTypeId) { 447 $objProduct = new SC_Product ();447 $objProduct = new SC_Product_Ex(); 448 448 $tpl_message = ""; 449 449
Note: See TracChangeset
for help on using the changeset viewer.
