예제 #1
0
 function createStatusHistory()
 {
     $history = eZOrderStatusHistory::create($this->OrderNr, $this->StatusID, $this->StatusModifierID, $this->StatusModified);
     $history->store();
     return $history;
 }
예제 #2
0
 function createStatusHistory()
 {
     $history = eZOrderStatusHistory::create( $this->OrderNr, // Note: Use the order nr, not id
                                              $this->StatusID,
                                              $this->StatusModifierID,
                                              $this->StatusModified );
     $history->store();
     return $history;
 }