/**
  * Change the Stage and Status of a claim
  * 
  * @author David Stansfield
  * @public
  * @return null
  */
 public function changeStageStatus($stageID = 0, $statusID = 0)
 {
     if ($stageID == 0 || $statusID == 0) {
         return;
     }
     \Crm\Ppi\Ppi_model::setStage($this->_claimID, $stageID);
     \Crm\Ppi\Ppi_model::setStatus($this->_claimID, $stageID, $statusID);
 }