Пример #1
0
 /**
  * Return Informaction User for derivate
  * assignment Users
  *
  * @url GET /task/:tas_uid/case/:app_uid/:del_index/assignment
  *
  * @param string $tas_uid {@min 32}{@max 32}
  * @param string $app_uid {@min 32}{@max 32}
  * @param string $del_index
  */
 public function doGetPrepareInformation($tas_uid, $app_uid, $del_index = null)
 {
     try {
         $usr_uid = $this->getUserId();
         $oMobile = new \ProcessMaker\BusinessModel\Light();
         $response = $oMobile->getPrepareInformation($usr_uid, $tas_uid, $app_uid, $del_index);
     } catch (\Exception $e) {
         throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
     }
     return $response;
 }