Changeset 18055


Ignore:
Timestamp:
2009/06/09 11:30:46 (15 years ago)
Author:
Seasoft
Message:

merge r17804
・取得元: version-2_4
【取得元のログメッセージ】

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

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php

    r18054 r18055  
    150150            // 入力値の変換 
    151151            $this->objFormParam->convParam(); 
    152             $this->arrErr = $this->lfCheek(); 
    153152            $this->arrErr = $this->lfCheckError(); 
     153            $this->arrErr = array_merge((array)$this->arrErr, (array)$this->lfCheek()); 
     154 
    154155            if(count($this->arrErr) == 0) { 
    155156                #if(count($this->arrErr) == 0) { 
     
    196197                } 
    197198            } 
    198             $this->lfReCheek($arrData); 
     199            // 情報上書き 
     200            $this->objFormParam->setParam($arrData); 
     201            // 入力値の変換 
     202            $this->objFormParam->convParam(); 
    199203            break; 
    200204        /* 商品追加ポップアップより商品選択後、商品情報取得*/ 
     
    215219                } 
    216220            } 
    217             $this->lfReCheek($arrData); 
     221            // 情報上書き 
     222            $this->objFormParam->setParam($arrData); 
     223            // 入力値の変換 
     224            $this->objFormParam->convParam(); 
    218225            break; 
    219226        /* F-REGI決済モジュール連携用 */ 
Note: See TracChangeset for help on using the changeset viewer.