Merge branch '14.0' of git@github.com:Dolibarr/dolibarr.git into 15.0
This commit is contained in:
commit
ac27f5ef74
@ -1138,7 +1138,7 @@ class FormTicket
|
|||||||
$langs->loadLangs(array('other', 'mails'));
|
$langs->loadLangs(array('other', 'mails'));
|
||||||
|
|
||||||
// Clear temp files. Must be done at beginning, before call of triggers
|
// Clear temp files. Must be done at beginning, before call of triggers
|
||||||
if (GETPOST('mode', 'alpha') == 'init' || (GETPOST('modelmailselected', 'alpha') && GETPOST('modelmailselected', 'alpha') != '-1')) {
|
if (GETPOST('mode', 'alpha') == 'init' || (GETPOST('modelselected') && GETPOST('modelmailselected', 'alpha') && GETPOST('modelmailselected', 'alpha') != '-1')) {
|
||||||
$this->clear_attached_files();
|
$this->clear_attached_files();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1171,10 +1171,10 @@ class FormTicket
|
|||||||
$listofmimes = array();
|
$listofmimes = array();
|
||||||
$keytoavoidconflict = empty($this->trackid) ? '' : '-'.$this->trackid; // this->trackid must be defined
|
$keytoavoidconflict = empty($this->trackid) ? '' : '-'.$this->trackid; // this->trackid must be defined
|
||||||
|
|
||||||
if (GETPOST('mode', 'alpha') == 'init' || (GETPOST('modelmailselected', 'alpha') && GETPOST('modelmailselected', 'alpha') != '-1')) {
|
if (GETPOST('mode', 'alpha') == 'init' || (GETPOST('modelselected') && GETPOST('modelmailselected', 'alpha') && GETPOST('modelmailselected', 'alpha') != '-1')) {
|
||||||
if (!empty($arraydefaultmessage->joinfiles) && is_array($this->param['fileinit'])) {
|
if (!empty($arraydefaultmessage->joinfiles) && !empty($this->param['fileinit']) && is_array($this->param['fileinit'])) {
|
||||||
foreach ($this->param['fileinit'] as $file) {
|
foreach ($this->param['fileinit'] as $file) {
|
||||||
$this->add_attached_files($file, basename($file), dol_mimetype($file));
|
$formmail->add_attached_files($file, basename($file), dol_mimetype($file));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2371,7 +2371,7 @@ class Ticket extends CommonObject
|
|||||||
$maxheightmini = 72;
|
$maxheightmini = 72;
|
||||||
|
|
||||||
$formmail = new FormMail($this->db);
|
$formmail = new FormMail($this->db);
|
||||||
|
$formmail->trackid = 'tic'.$this->id;
|
||||||
$attachedfiles = $formmail->get_attached_files();
|
$attachedfiles = $formmail->get_attached_files();
|
||||||
|
|
||||||
$filepath = $attachedfiles['paths'];
|
$filepath = $attachedfiles['paths'];
|
||||||
@ -2538,24 +2538,24 @@ class Ticket extends CommonObject
|
|||||||
$assigned_user = new User($this->db);
|
$assigned_user = new User($this->db);
|
||||||
$assigned_user->fetch($this->fk_user_assign);
|
$assigned_user->fetch($this->fk_user_assign);
|
||||||
if (!empty($assigned_user->email)) {
|
if (!empty($assigned_user->email)) {
|
||||||
$sendto[] = $assigned_user->getFullName($langs)." <".$assigned_user->email.">";
|
$sendto[$assigned_user->email] = $assigned_user->getFullName($langs)." <".$assigned_user->email.">";
|
||||||
} else {
|
} else {
|
||||||
$assigned_user_dont_have_email = $assigned_user->getFullName($langs);
|
$assigned_user_dont_have_email = $assigned_user->getFullName($langs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (empty($sendto)) {
|
if (empty($sendto)) {
|
||||||
if (!empty($conf->global->TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL)) {
|
if (!empty($conf->global->TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL)) {
|
||||||
$sendto[] = $conf->global->TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL;
|
$sendto[$conf->global->TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL] = $conf->global->TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL;
|
||||||
} elseif (!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO)) {
|
} elseif (!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO)) {
|
||||||
$sendto[] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
$sendto[$conf->global->TICKET_NOTIFICATION_EMAIL_TO] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add global email address recipient
|
// Add global email address recipient
|
||||||
if (!empty($conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS) &&
|
if (!empty($conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS) &&
|
||||||
!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO) && !in_array($conf->global->TICKET_NOTIFICATION_EMAIL_TO, $sendto)
|
!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO) && !array_key_exists($conf->global->TICKET_NOTIFICATION_EMAIL_TO, $sendto)
|
||||||
) {
|
) {
|
||||||
$sendto[] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
$sendto[$conf->global->TICKET_NOTIFICATION_EMAIL_TO] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($sendto)) {
|
if (!empty($sendto)) {
|
||||||
@ -2639,7 +2639,7 @@ class Ticket extends CommonObject
|
|||||||
|
|
||||||
if ($info_sendto['email'] != '') {
|
if ($info_sendto['email'] != '') {
|
||||||
if (!empty($info_sendto['email'])) {
|
if (!empty($info_sendto['email'])) {
|
||||||
$sendto[] = trim($info_sendto['firstname']." ".$info_sendto['lastname'])." <".$info_sendto['email'].">";
|
$sendto[$info_sendto['email']] = trim($info_sendto['firstname']." ".$info_sendto['lastname'])." <".$info_sendto['email'].">";
|
||||||
}
|
}
|
||||||
|
|
||||||
//Contact type
|
//Contact type
|
||||||
@ -2655,9 +2655,9 @@ class Ticket extends CommonObject
|
|||||||
$message .= '<br>'.$langs->trans('TicketNotificationEmailBodyInfosTrackUrlinternal').' : <a href="'.$url_internal_ticket.'">'.$object->track_id.'</a><br>';
|
$message .= '<br>'.$langs->trans('TicketNotificationEmailBodyInfosTrackUrlinternal').' : <a href="'.$url_internal_ticket.'">'.$object->track_id.'</a><br>';
|
||||||
|
|
||||||
// Add global email address recipient
|
// Add global email address recipient
|
||||||
if ($conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS && !in_array($conf->global->TICKET_NOTIFICATION_EMAIL_TO, $sendto)) {
|
if ($conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS && !array_key_exists($conf->global->TICKET_NOTIFICATION_EMAIL_TO, $sendto)) {
|
||||||
if (!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO)) {
|
if (!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO)) {
|
||||||
$sendto[] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
$sendto[$conf->global->TICKET_NOTIFICATION_EMAIL_TO] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2717,7 +2717,7 @@ class Ticket extends CommonObject
|
|||||||
|
|
||||||
if ($info_sendto['email'] != '' && $info_sendto['email'] != $object->origin_email) {
|
if ($info_sendto['email'] != '' && $info_sendto['email'] != $object->origin_email) {
|
||||||
if (!empty($info_sendto['email'])) {
|
if (!empty($info_sendto['email'])) {
|
||||||
$sendto[] = trim($info_sendto['firstname']." ".$info_sendto['lastname'])." <".$info_sendto['email'].">";
|
$sendto[$info_sendto['email']] = trim($info_sendto['firstname']." ".$info_sendto['lastname'])." <".$info_sendto['email'].">";
|
||||||
}
|
}
|
||||||
|
|
||||||
$recipient = dolGetFirstLastname($info_sendto['firstname'], $info_sendto['lastname'], '-1').' ('.strtolower($info_sendto['libelle']).')';
|
$recipient = dolGetFirstLastname($info_sendto['firstname'], $info_sendto['lastname'], '-1').' ('.strtolower($info_sendto['libelle']).')';
|
||||||
@ -2737,21 +2737,21 @@ class Ticket extends CommonObject
|
|||||||
$message .= '<br>'.$message_signature;
|
$message .= '<br>'.$message_signature;
|
||||||
|
|
||||||
if (!empty($object->origin_email)) {
|
if (!empty($object->origin_email)) {
|
||||||
$sendto[] = $object->origin_email;
|
$sendto[$object->origin_email] = $object->origin_email;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($object->fk_soc > 0 && !in_array($object->origin_email, $sendto)) {
|
if ($object->fk_soc > 0 && !array_key_exists($object->origin_email, $sendto)) {
|
||||||
$object->socid = $object->fk_soc;
|
$object->socid = $object->fk_soc;
|
||||||
$object->fetch_thirdparty();
|
$object->fetch_thirdparty();
|
||||||
if (!empty($object->thirdparty->email)) {
|
if (!empty($object->thirdparty->email)) {
|
||||||
$sendto[] = $object->thirdparty->email;
|
$sendto[$object->thirdparty->email] = $object->thirdparty->email;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// altairis: Add global email address reciepient
|
// altairis: Add global email address reciepient
|
||||||
if ($conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS && !in_array($conf->global->TICKET_NOTIFICATION_EMAIL_TO, $sendto)) {
|
if ($conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS && !array_key_exists($conf->global->TICKET_NOTIFICATION_EMAIL_TO, $sendto)) {
|
||||||
if (!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO)) {
|
if (!empty($conf->global->TICKET_NOTIFICATION_EMAIL_TO)) {
|
||||||
$sendto[] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
$sendto[$conf->global->TICKET_NOTIFICATION_EMAIL_TO] = $conf->global->TICKET_NOTIFICATION_EMAIL_TO;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user