Ignore:
Timestamp:
2013/06/08 16:35:27 (11 years ago)
Author:
Seasoft
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • 主に空白・空白行の調整。もう少し整えたいが、一旦現状コミット。
File:
1 edited

Legend:

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

    r22833 r22856  
    3131class SC_Product 
    3232{ 
    33  
    3433    /** 規格名一覧 */ 
    3534    var $arrClassName; 
     
    158157    } 
    159158 
    160  
    161159    /** 
    162160     * 商品IDを指定し、商品一覧を取得する 
     
    247245    function setProductsClassByProductIds($arrProductId, $has_deleted = false) 
    248246    { 
    249  
    250247        foreach ($arrProductId as $productId) { 
    251248            $arrProductClasses = $this->getProductsClassFullByProductId($productId, $has_deleted); 
     
    481478    function setProductStatus($productId, $productStatusIds) 
    482479    { 
    483  
    484480        $val['product_id'] = $productId; 
    485481        $val['creator_id'] = $_SESSION['member_id']; 
     
    534530    function reduceStock($productClassId, $quantity) 
    535531    { 
    536  
    537532        if ($quantity == 0) { 
    538533            return false; 
     
    776771    function getProductDispConditions($tablename = null) { 
    777772        $tablename = ($tablename) ? $tablename . '.' : null; 
     773 
    778774        return $tablename . 'del_flg = 0 AND ' . $tablename . 'status = 1 '; 
    779775    } 
Note: See TracChangeset for help on using the changeset viewer.