BUG 6564 Group value based Self service Assignment Rule SOLVED

- Add a new Assignment Rule, to use a variable to designe dynamicly the group for the self service
This commit is contained in:
Julio Cesar Laura
2012-10-05 11:16:37 -04:00
parent a44eec6a93
commit c1670185ea
11 changed files with 373 additions and 186 deletions

View File

@@ -142,10 +142,11 @@ try {
$_SESSION['CURRENT_TASK'] = $aFields['TAS_UID'];
//if the task is in the valid selfservice tasks for this user, then catch the case, else just view the resume
if( $oCase->isSelfService($_SESSION['USER_LOGGED'], $aFields['TAS_UID']) ) {
if( $oCase->isSelfService($_SESSION['USER_LOGGED'], $aFields['TAS_UID'], $sAppUid) ) {
require_once (PATH_METHODS . 'cases' . PATH_SEP . 'cases_CatchSelfService.php');
} else
} else {
require_once (PATH_METHODS . 'cases' . PATH_SEP . 'cases_Resume.php');
}
exit;
}