Add documentation

This commit is contained in:
Paula Quispe
2017-11-10 16:49:01 -04:00
parent dcfb954c4c
commit ac4cf8259a

View File

@@ -5449,6 +5449,8 @@ class Cases
if (!isset($arrayData['TAS_ID'])) { if (!isset($arrayData['TAS_ID'])) {
$task= new Task(); $task= new Task();
$taskId = $task->load($arrayData['TASK'])['TAS_ID']; $taskId = $task->load($arrayData['TASK'])['TAS_ID'];
} else {
$taskId = $arrayData['TAS_ID'];
} }
$oSpool->setConfig($dataLastEmail['configuration']); $oSpool->setConfig($dataLastEmail['configuration']);
@@ -5483,12 +5485,16 @@ class Cases
} }
/** /**
* This function send an email notification when tas_send_last_email = true
* The users assigned to the next task will receive a custom email message when the case is routed
*
* @param $taskUid * @param $taskUid
* @param $arrayTask * @param $arrayTask
* @param $arrayData * @param $arrayData
* @param $applicationUid * @param $applicationUid
* @param $delIndex * @param $delIndex
* @param string $from * @param string $from
*
* @return bool * @return bool
* @throws Exception * @throws Exception
*/ */