BUG 15243 "Email Notification from Subprocess" SOLVED

- Email Notification from Subprocess.
- Problema resuelto, cuando se tiene un subproceso que tiene notificacion en la ultima tarea y este debe retornar al proceso
  principal, entonces la notificacion se enviara al usuario del proceso principal.
This commit is contained in:
Luis Fernando Saisa Lopez
2014-07-03 15:42:28 -04:00
parent a87c3186b9
commit fdbc289b3c
2 changed files with 17 additions and 15 deletions

View File

@@ -3970,7 +3970,7 @@ class Cases
if (SubApplicationPeer::doCount($oCriteria2) > 0) { if (SubApplicationPeer::doCount($oCriteria2) > 0) {
G::LoadClass('derivation'); G::LoadClass('derivation');
$oDerivation = new Derivation(); $oDerivation = new Derivation();
$oDerivation->verifyIsCaseChild($sApplicationUID); $oDerivation->verifyIsCaseChild($sApplicationUID, $iIndex);
} }
//update searchindex //update searchindex

View File

@@ -854,14 +854,15 @@ class Derivation
); );
$this->derivate( $currentDelegation2, $nextDelegations2 ); $this->derivate( $currentDelegation2, $nextDelegations2 );
if($delIndex > 0 ) {
// Send notifications - Start // Send notifications - Start
$oUser = new Users(); $oUser = new Users();
$aUser = $oUser->load($appFields["CURRENT_USER_UID"]);
$aUser = $oUser->load($appFields["APP_DATA"]["USER_LOGGED"]);
$sFromName = $aUser["USR_FIRSTNAME"] . " " . $aUser["USR_LASTNAME"] . ($aUser["USR_EMAIL"] != "" ? " <" . $aUser["USR_EMAIL"] . ">" : ""); $sFromName = $aUser["USR_FIRSTNAME"] . " " . $aUser["USR_LASTNAME"] . ($aUser["USR_EMAIL"] != "" ? " <" . $aUser["USR_EMAIL"] . ">" : "");
try { try {
$oCase->sendNotifications($appFields["APP_DATA"]["TASK"], $oCase->sendNotifications($appFields["TAS_UID"],
$nextDelegations2, $nextDelegations2,
$appFields["APP_DATA"], $appFields["APP_DATA"],
$sApplicationUID, $sApplicationUID,
@@ -877,6 +878,7 @@ class Derivation
} }
} }
} }
}
/* getDerivatedCases /* getDerivatedCases
* get all derivated cases and subcases from any task, * get all derivated cases and subcases from any task,