Ejemplo n.º 1
0
 public function getLastPartStatus()
 {
     if ($this->_lastPartStatus === null && $this->parts !== null) {
         if ($this->parts[0]->status_id != PartStatus::COMPLETED) {
             $this->_lastPartStatus = PartStatus::getStatus($this->parts[0]->status_id);
         } else {
             $this->_lastPartStatus = '';
         }
     }
     return $this->_lastPartStatus;
 }