PMCORE-2892
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use \ProcessMaker\BusinessModel\Cases;
|
use Cases as ClassesCases;
|
||||||
|
use ProcessMaker\BusinessModel\Cases;
|
||||||
|
|
||||||
class adhocUserProxy extends HttpProxyController
|
class adhocUserProxy extends HttpProxyController
|
||||||
{
|
{
|
||||||
@@ -41,13 +42,19 @@ class adhocUserProxy extends HttpProxyController
|
|||||||
$this->data = $aData;
|
$this->data = $aData;
|
||||||
|
|
||||||
}
|
}
|
||||||
//assign user adhoc
|
|
||||||
function reassignCase ($params)
|
/**
|
||||||
|
* Reassign a user adhoc to the case
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function reassignCase()
|
||||||
{
|
{
|
||||||
$cases = new Cases();
|
$cases = new ClassesCases();
|
||||||
$cases->reassignCase( $_SESSION['APPLICATION'], $_SESSION['INDEX'], $_SESSION['USER_LOGGED'], $_POST['USR_UID'], $_POST['THETYPE'] );
|
$cases->reassignCase($_SESSION['APPLICATION'], $_SESSION['INDEX'], $_SESSION['USER_LOGGED'], $_POST['USR_UID'], $_POST['THETYPE']);
|
||||||
$this->success = true;
|
$this->success = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete case from the actions menu
|
* Delete case from the actions menu
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user