HOR-1101: Batch reassignment

.

validacion USR_UID

correccion observacion

soporte multiple plugins
This commit is contained in:
mcuiza
2016-06-15 14:51:44 -04:00
parent 25b77fce04
commit f4be06d7f2
6 changed files with 163 additions and 1 deletions

View File

@@ -1150,4 +1150,20 @@ class Cases extends Api
}
}
/**
* Batch reassign
* @url POST /reassign
*
*/
public function doPostReassign($request_data)
{
try {
$case = new \ProcessMaker\BusinessModel\Cases();
$response = $case->doPostReassign($request_data);
return $response;
} catch (\Exception $e) {
throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage());
}
}
}