Ignore:
Timestamp:
2011/04/16 10:52:17 (13 years ago)
Author:
Seasoft
Message:

#1267 (「数量」の揺らぎ)
#627 (ソース整形・ソースコメントの改善)

Location:
branches/version-2_11-dev/data/class/pages
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php

    r20848 r20849  
    314314        $objFormParam->addParam("お届け日(日)", "shipping_date_day", INT_LEN, 'n', array("MAX_LENGTH_CHECK", "NUM_CHECK")); 
    315315        $objFormParam->addParam("お届け日", "shipping_date", STEXT_LEN, 'KVa', array("SPTAB_CHECK", "MAX_LENGTH_CHECK")); 
    316         $objFormParam->addParam("配送商品数", "shipping_product_quantity", INT_LEN, 'n', array("MAX_LENGTH_CHECK", "NUM_CHECK")); 
     316        $objFormParam->addParam("配送商品数", "shipping_product_quantity", INT_LEN, 'n', array("MAX_LENGTH_CHECK", "NUM_CHECK")); 
    317317 
    318318        $objFormParam->addParam("商品規格ID", "shipment_product_class_id", INT_LEN, 'n', array("MAX_LENGTH_CHECK", "NUM_CHECK")); 
     
    386386         * 
    387387         * $arrShipmentForm['(key)'][$shipping_index][$item_index] = 値 
    388          * $arrProductQuantity[$shipping_index] = 配送先ごとの配送商品数 
     388         * $arrProductQuantity[$shipping_index] = 配送先ごとの配送商品数 
    389389         */ 
    390390        $arrShipmentForm = array(); 
     
    401401                $item_index++; 
    402402            } 
    403             // 配送先ごとの配送商品数を設定 
     403            // 配送先ごとの配送商品数を設定 
    404404            $arrProductQuantity[$shipping_index] = count($arrShipmentItem[$shipping_id]); 
    405405        } 
     
    452452         * 
    453453         * $arrShipmentItem['shipment_(key)'][$shipping_index][$item_index] = 値 
    454          * $arrProductQuantity[$shipping_index] = 配送先ごとの配送商品数 
     454         * $arrProductQuantity[$shipping_index] = 配送先ごとの配送商品数 
    455455         */ 
    456456        $arrProductQuantity = array(); 
  • branches/version-2_11-dev/data/class/pages/admin/total/LC_Page_Admin_Total.php

    r20802 r20849  
    807807                                 '商品名', 
    808808                                 '購入件数', 
    809                                  '点数', 
     809                                 '数量', 
    810810                                 '単価', 
    811811                                 '金額' 
  • branches/version-2_11-dev/data/class/pages/products/LC_Page_Products_Detail.php

    r20764 r20849  
    193193                    $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,$this->tpl_classcat_find1,$this->tpl_classcat_find2); 
    194194 
    195                     // 規格1が設定されてい場合 
     195                    // 規格1が設定されていて、エラーを検出した場合 
    196196                    if($this->tpl_classcat_find1 and $this->arrErr['classcategory_id1']) { 
    197197                        // templateの変更 
     
    211211                    $this->arrErr = $this->lfCheckError($this->mode,$this->objFormParam,$this->tpl_classcat_find1,$this->tpl_classcat_find2); 
    212212 
    213                     // 規格1が設定されている場合 
     213                    // 規格2が設定されていて、エラーを検出した場合 
    214214                    if($this->tpl_classcat_find2 and $this->arrErr['classcategory_id2']) { 
    215215                        // templateの変更 
     
    220220                    $this->tpl_product_class_id = $objProduct->classCategories[$product_id][$this->objFormParam->getValue('classcategory_id1')]['#' . $this->objFormParam->getValue('classcategory_id2')]['product_class_id']; 
    221221 
    222                     // 商品数の選択を行う 
     222                    // 数量の入力を行う 
    223223                    $this->tpl_mainpage = "products/select_item.tpl"; 
    224224                    break; 
Note: See TracChangeset for help on using the changeset viewer.