Changeset 17804


Ignore:
Timestamp:
2009/02/18 17:54:04 (15 years ago)
Author:
kishida
Message:

#292 管理画面から新規注文入力/注文編集機能の対応で、ポイントON/OFFを考慮した内容を反映させる

File:
1 edited

Legend:

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

    r17803 r17804  
    152152            // 入力値の変換 
    153153            $this->objFormParam->convParam(); 
    154             $this->arrErr = $this->lfCheek($arrInfo); 
    155154            $this->arrErr = $this->lfCheckError(); 
     155            $this->arrErr = array_merge( (array) $this->arrErr, (array)$this->lfCheek($arrInfo) ); 
     156 
    156157            if(count($this->arrErr) == 0) { 
    157158                #if(count($this->arrErr) == 0) { 
     
    198199                } 
    199200            } 
    200             $this->lfReCheek($arrData, $arrInfo); 
     201            // 情報上書き 
     202            $this->objFormParam->setParam($arrData); 
     203            // 入力値の変換 
     204            $this->objFormParam->convParam(); 
    201205            break; 
    202206        /* 商品追加ポップアップより商品選択後、商品情報取得*/ 
     
    217221                } 
    218222            } 
    219             $this->lfReCheek($arrData, $arrInfo); 
     223            // 情報上書き 
     224            $this->objFormParam->setParam($arrData); 
     225            // 入力値の変換 
     226            $this->objFormParam->convParam(); 
    220227            break; 
    221228        /* F-REGI決済モジュール連携用 */ 
Note: See TracChangeset for help on using the changeset viewer.