BUG-13636: Error is thrown when adding a case note to a case which... SOLVED
- Al ser tareas Self Service no se tienen usuarios que hubieran reclamado el caso, es por eso que se al enviar los Case Notes se tenias datos en blanco. - Se valido en el archivo AppNotes.php en la funcion addCaseNote donde se agregaban los usuarios para no poner datos en blanco.
This commit is contained in:
@@ -254,7 +254,9 @@ class AppNotes extends BaseAppNotes
|
|||||||
$noteRecipientsList = array();
|
$noteRecipientsList = array();
|
||||||
|
|
||||||
foreach ($p["array"] as $key => $userParticipated) {
|
foreach ($p["array"] as $key => $userParticipated) {
|
||||||
$noteRecipientsList[] = $key;
|
if ($key != '') {
|
||||||
|
$noteRecipientsList[] = $key;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$noteRecipients = implode(",", $noteRecipientsList);
|
$noteRecipients = implode(",", $noteRecipientsList);
|
||||||
|
|||||||
Reference in New Issue
Block a user