123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- <?php
- /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2010-2014 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/societe/notify/card.php
- * \ingroup societe notification
- * \brief Tab for notifications of third party
- */
- // Load Dolibarr environment
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/triggers/interface_50_modNotification_Notification.class.php';
- $langs->loadLangs(array("companies", "mails", "admin", "other", "errors"));
- $socid = GETPOST("socid", 'int');
- $action = GETPOST('action', 'aZ09');
- $contactid = GETPOST('contactid', 'alpha'); // May be an int or 'thirdparty'
- $actionid = GETPOST('actionid', 'int');
- $optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
- // Security check
- if ($user->socid) {
- $socid = $user->socid;
- }
- $result = restrictedArea($user, 'societe', '', '');
- $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
- $sortfield = GETPOST('sortfield', 'aZ09comma');
- $sortorder = GETPOST('sortorder', 'aZ09comma');
- $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
- if (!$sortorder) {
- $sortorder = "DESC";
- }
- if (!$sortfield) {
- $sortfield = "n.daten";
- }
- if (empty($page) || $page == -1) {
- $page = 0;
- }
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- $now = dol_now();
- $object = new Societe($db);
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $hookmanager->initHooks(array('thirdpartynotification', 'globalcard'));
- /*
- * Actions
- */
- $parameters = array('id'=>$socid);
- $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if ($reshook < 0) {
- setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
- }
- if (empty($reshook)) {
- $error = 0;
- // Add a notification
- if ($action == 'add') {
- if (empty($contactid)) {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Contact")), null, 'errors');
- $error++;
- }
- if ($actionid <= 0) {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Action")), null, 'errors');
- $error++;
- }
- if (!$error) {
- $db->begin();
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."notify_def";
- $sql .= " WHERE fk_soc=".((int) $socid)." AND fk_contact=".((int) $contactid)." AND fk_action=".((int) $actionid);
- if ($db->query($sql)) {
- $sql = "INSERT INTO ".MAIN_DB_PREFIX."notify_def (datec,fk_soc, fk_contact, fk_action)";
- $sql .= " VALUES ('".$db->idate($now)."',".((int) $socid).",".((int) $contactid).",".((int) $actionid).")";
- if (!$db->query($sql)) {
- $error++;
- dol_print_error($db);
- }
- } else {
- dol_print_error($db);
- }
- if (!$error) {
- $db->commit();
- } else {
- $db->rollback();
- }
- }
- }
- // Remove a notification
- if ($action == 'delete') {
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."notify_def where rowid=".GETPOST('actid', 'int');
- $db->query($sql);
- }
- }
- /*
- * View
- */
- $form = new Form($db);
- $object = new Societe($db);
- $result = $object->fetch($socid);
- $title = $langs->trans("ThirdParty").' - '.$langs->trans("Notification");
- if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/thirdpartynameonly/', $conf->global->MAIN_HTML_TITLE) && $object->name) {
- $title = $object->name.' - '.$langs->trans("Notification");
- }
- $help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
- llxHeader('', $title, $help_url);
- if ($result > 0) {
- $langs->load("other");
- $head = societe_prepare_head($object);
- print dol_get_fiche_head($head, 'notify', $langs->trans("ThirdParty"), -1, 'company');
- $linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
- dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom');
- print '<div class="fichecenter">';
- print '<div class="underbanner clearboth"></div>';
- print '<table class="border centpercent tableforfield">';
- // Type Prospect/Customer/Supplier
- print '<tr><td class="titlefield">'.$langs->trans('NatureOfThirdParty').'</td><td>';
- print $object->getTypeUrl(1);
- print '</td></tr>';
- // Prefix
- if (getDolGlobalString('SOCIETE_USEPREFIX')) { // Old not used prefix field
- print '<tr><td class="titlefield">'.$langs->trans('Prefix').'</td><td colspan="3">'.$object->prefix_comm.'</td></tr>';
- }
- if ($object->client) {
- print '<tr><td class="titlefield">';
- print $langs->trans('CustomerCode').'</td><td colspan="3">';
- print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_client));
- $tmpcheck = $object->check_codeclient();
- if ($tmpcheck != 0 && $tmpcheck != -5) {
- print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
- }
- print '</td></tr>';
- }
- if ((isModEnabled("supplier_order") || isModEnabled("supplier_invoice")) && $object->fournisseur && $user->hasRight('fournisseur', 'lire')) {
- print '<tr><td class="titlefield">';
- print $langs->trans('SupplierCode').'</td><td colspan="3">';
- print showValueWithClipboardCPButton(dol_escape_htmltag($object->code_fournisseur));
- $tmpcheck = $object->check_codefournisseur();
- if ($tmpcheck != 0 && $tmpcheck != -5) {
- print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
- }
- print '</td></tr>';
- }
- /*print '<tr><td class="titlefield">'.$langs->trans("NbOfActiveNotifications").'</td>'; // Notification for this thirdparty
- print '<td colspan="3">';
- $nbofrecipientemails=0;
- $notify=new Notify($db);
- $tmparray = $notify->getNotificationsArray('', $object->id, null, 0, array('thirdparty'));
- foreach($tmparray as $tmpkey => $tmpval)
- {
- if (!empty($tmpkey)) $nbofrecipientemails++;
- }
- print $nbofrecipientemails;
- print '</td></tr>';*/
- print '</table>';
- print '</div>';
- print dol_get_fiche_end();
- print "\n";
- // Help
- print '<div class="opacitymedium hideonsmartphone">';
- print $langs->trans("NotificationsDesc");
- print '<br>'.$langs->trans("NotificationsDescUser");
- print '<br>'.$langs->trans("NotificationsDescContact");
- print '<br>'.$langs->trans("NotificationsDescGlobal");
- print '<br>';
- print '</div>';
- print '<br>'."\n";
- // List of notifications enabled for contacts
- $sql = "SELECT n.rowid, n.type,";
- $sql .= " a.code, a.label,";
- $sql .= " c.rowid as contactid, c.lastname, c.firstname, c.email";
- $sql .= " FROM ".MAIN_DB_PREFIX."c_action_trigger as a,";
- $sql .= " ".MAIN_DB_PREFIX."notify_def as n,";
- $sql .= " ".MAIN_DB_PREFIX."socpeople c";
- $sql .= " WHERE a.rowid = n.fk_action";
- $sql .= " AND c.rowid = n.fk_contact";
- $sql .= " AND c.fk_soc = ".((int) $object->id);
- $resql = $db->query($sql);
- if ($resql) {
- $num = $db->num_rows($resql);
- } else {
- dol_print_error($db);
- }
- // Add notification form
- print load_fiche_titre($langs->trans("ListOfActiveNotifications").' <span class="opacitymedium colorblack paddingleft">('.$num.')</span>', '', '');
- print '<form action="'.$_SERVER["PHP_SELF"].'?socid='.$socid.'" method="post">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="add">';
- $param = "&socid=".$socid;
- // Line with titles
- print '<div class="div-table-responsive-no-min">';
- print '<table class="centpercent noborder">';
- print '<tr class="liste_titre">';
- print_liste_field_titre("Target", $_SERVER["PHP_SELF"], "c.lastname,c.firstname", '', $param, 'width="45%"', $sortfield, $sortorder);
- print_liste_field_titre("Action", $_SERVER["PHP_SELF"], "", '', $param, 'width="35%"', $sortfield, $sortorder);
- print_liste_field_titre("Type", $_SERVER["PHP_SELF"], "n.type", '', $param, 'width="10%"', $sortfield, $sortorder);
- print_liste_field_titre('');
- print "</tr>\n";
- // Line to add a new subscription
- $listofemails = $object->thirdparty_and_contact_email_array();
- if (count($listofemails) > 0) {
- $actions = array();
- // Load array of available notifications
- $notificationtrigger = new InterfaceNotification($db);
- $listofmanagedeventfornotification = $notificationtrigger->getListOfManagedEvents();
- foreach ($listofmanagedeventfornotification as $managedeventfornotification) {
- $label = ($langs->trans("Notify_".$managedeventfornotification['code']) != "Notify_".$managedeventfornotification['code'] ? $langs->trans("Notify_".$managedeventfornotification['code']) : $managedeventfornotification['label']);
- $actions[$managedeventfornotification['rowid']] = $label;
- }
- print '<tr class="oddeven nohover">';
- print '<td class="nowraponall">';
- print img_picto('', 'contact', '', false, 0, 0, '', 'paddingright').$form->selectarray("contactid", $listofemails, '', 1, 0, 0, '', 0, 0, 0, '', 'minwidth100imp maxwidthonsmartphone');
- print '</td>';
- print '<td class="nowraponall">';
- print img_picto('', 'object_action', '', false, 0, 0, '', 'paddingright').$form->selectarray("actionid", $actions, '', 1, 0, 0, '', 0, 0, 0, '', 'minwidth100imp maxwidthonsmartphone');
- print '</td>';
- print '<td>';
- $type = array('email'=>$langs->trans("EMail"));
- print $form->selectarray("typeid", $type, '', 0, 0, 0, '', 0, 0, 0, '', 'minwidth75imp');
- print '</td>';
- print '<td class="right"><input type="submit" class="button button-add" value="'.$langs->trans("Add").'"></td>';
- print '</tr>';
- } else {
- print '<tr class="oddeven"><td colspan="4" class="opacitymedium">';
- print $langs->trans("YouMustCreateContactFirst");
- print '</td></tr>';
- }
- if ($num) {
- $i = 0;
- $contactstatic = new Contact($db);
- while ($i < $num) {
- $obj = $db->fetch_object($resql);
- $contactstatic->id = $obj->contactid;
- $contactstatic->lastname = $obj->lastname;
- $contactstatic->firstname = $obj->firstname;
- print '<tr class="oddeven">';
- print '<td>'.$contactstatic->getNomUrl(1);
- if ($obj->type == 'email') {
- if (isValidEmail($obj->email)) {
- print ' <'.$obj->email.'>';
- } else {
- $langs->load("errors");
- print ' '.img_warning().' <span class="warning">'.$langs->trans("ErrorBadEMail", $obj->email).'</span>';
- }
- }
- print '</td>';
- print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($label).'">';
- $label = ($langs->trans("Notify_".$obj->code) != "Notify_".$obj->code ? $langs->trans("Notify_".$obj->code) : $obj->label);
- print img_picto('', 'object_action', '', false, 0, 0, '', 'paddingright').$label;
- print '</td>';
- print '<td>';
- if ($obj->type == 'email') {
- print $langs->trans("Email");
- }
- if ($obj->type == 'sms') {
- print $langs->trans("SMS");
- }
- print '</td>';
- print '<td class="right"><a href="card.php?socid='.$socid.'&action=delete&token='.newToken().'&actid='.$obj->rowid.'">'.img_delete().'</a></td>';
- print '</tr>';
- $i++;
- }
- $db->free($resql);
- }
- // List of notifications enabled for fixed email
- /*
- foreach($conf->global as $key => $val)
- {
- if (! preg_match('/^NOTIFICATION_FIXEDEMAIL_(.*)/', $key, $reg)) continue;
- print '<tr class="oddeven"><td>';
- $listtmp=explode(',',$val);
- $first=1;
- foreach($listtmp as $keyemail => $valemail)
- {
- if (! $first) print ', ';
- $first=0;
- $valemail=trim($valemail);
- //print $keyemail.' - '.$valemail.' - '.$reg[1].'<br>';
- if (isValidEmail($valemail, 1))
- {
- if ($valemail == '__SUPERVISOREMAIL__') print $valemail;
- else print ' <'.$valemail.'>';
- }
- else
- {
- $langs->load("errors");
- print ' '.img_warning().' <span class="warning">'.$langs->trans("ErrorBadEMail",$valemail).'</span>;
- }
- }
- print '</td>';
- print '<td>';
- $notifcode=preg_replace('/_THRESHOLD_.*$/','',$reg[1]);
- $notifcodecond=preg_replace('/^.*_(THRESHOLD_)/','$1',$reg[1]);
- $label=($langs->trans("Notify_".$notifcode)!="Notify_".$notifcode?$langs->trans("Notify_".$notifcode):$notifcode);
- print $label;
- if (preg_match('/^THRESHOLD_HIGHER_(.*)$/',$notifcodecond,$regcond) && ($regcond[1] > 0))
- {
- print ' - '.$langs->trans("IfAmountHigherThan",$regcond[1]);
- }
- print '</td>';
- print '<td>';
- print $langs->trans("Email");
- print '</td>';
- print '<td class="right">'.$langs->trans("SeeModuleSetup", $langs->transnoentitiesnoconv("Module600Name")).'</td>';
- print '</tr>';
- }*/
- /*if ($user->admin)
- {
- print '<tr class="oddeven"><td colspan="4">';
- print '+ <a href="'.DOL_URL_ROOT.'/admin/notification.php">'.$langs->trans("SeeModuleSetup", $langs->transnoentitiesnoconv("Module600Name")).'</a>';
- print '</td></tr>';
- }*/
- print '</table>';
- print '</div>';
- print '</form>';
- print '<br><br>'."\n";
- // List
- $sql = "SELECT n.rowid, n.daten, n.email, n.objet_type as object_type, n.objet_id as object_id, n.type,";
- $sql .= " c.rowid as id, c.lastname, c.firstname, c.email as contactemail,";
- $sql .= " a.code, a.label";
- $sql .= " FROM ".MAIN_DB_PREFIX."c_action_trigger as a,";
- $sql .= " ".MAIN_DB_PREFIX."notify as n ";
- $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."socpeople as c ON n.fk_contact = c.rowid";
- $sql .= " WHERE a.rowid = n.fk_action";
- $sql .= " AND n.fk_soc = ".((int) $object->id);
- $sql .= $db->order($sortfield, $sortorder);
- // Count total nb of records
- $nbtotalofrecords = '';
- if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
- $result = $db->query($sql);
- $nbtotalofrecords = $db->num_rows($result);
- if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
- $page = 0;
- $offset = 0;
- }
- }
- $sql .= $db->plimit($limit + 1, $offset);
- $resql = $db->query($sql);
- if ($resql) {
- $num = $db->num_rows($resql);
- } else {
- dol_print_error($db);
- }
- $param = '&socid='.$object->id;
- if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
- $param .= '&contextpage='.$contextpage;
- }
- if ($limit > 0 && $limit != $conf->liste_limit) {
- $param .= '&limit='.$limit;
- }
- print '<form method="post" action="'.$_SERVER["PHP_SELF"].'" name="formfilter">';
- if ($optioncss != '') {
- print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
- }
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
- print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
- print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
- print '<input type="hidden" name="page" value="'.$page.'">';
- print '<input type="hidden" name="socid" value="'.$object->id.'">';
- // List of active notifications
- print_barre_liste($langs->trans("ListOfNotificationsDone"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, '', 0, '', '', $limit);
- // Line with titles
- print '<div class="div-table-responsive-no-min">';
- print '<table class="centpercent noborder">';
- print '<tr class="liste_titre">';
- print_liste_field_titre("Target", $_SERVER["PHP_SELF"], "c.lastname,c.firstname", '', $param, '', $sortfield, $sortorder);
- print_liste_field_titre("Action", $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder);
- print_liste_field_titre("Type", $_SERVER["PHP_SELF"], "n.type", '', $param, '', $sortfield, $sortorder);
- //print_liste_field_titre("Object",$_SERVER["PHP_SELF"],"",'',$param,'"',$sortfield,$sortorder);
- print_liste_field_titre("Date", $_SERVER["PHP_SELF"], "n.daten", '', $param, '', $sortfield, $sortorder, 'right ');
- print '</tr>';
- if ($num > 0) {
- $i = 0;
- $contactstatic = new Contact($db);
- while ($i < $num) {
- $obj = $db->fetch_object($resql);
- print '<tr class="oddeven"><td>';
- if ($obj->id > 0) {
- $contactstatic->id = $obj->id;
- $contactstatic->lastname = $obj->lastname;
- $contactstatic->firstname = $obj->firstname;
- print $contactstatic->getNomUrl(1);
- print $obj->email ? ' <'.$obj->email.'>' : $langs->trans("NoMail");
- } else {
- print $obj->email;
- }
- print '</td>';
- print '<td>';
- $label = ($langs->trans("Notify_".$obj->code) != "Notify_".$obj->code ? $langs->trans("Notify_".$obj->code) : $obj->label);
- print $label;
- print '</td>';
- print '<td>';
- if ($obj->type == 'email') {
- print $langs->trans("Email");
- }
- if ($obj->type == 'sms') {
- print $langs->trans("Sms");
- }
- print '</td>';
- // TODO Add link to object here for other types
- /*print '<td>';
- if ($obj->object_type == 'order')
- {
- $orderstatic->id=$obj->object_id;
- $orderstatic->ref=...
- print $orderstatic->getNomUrl(1);
- }
- print '</td>';*/
- // print
- print'<td class="right">'.dol_print_date($db->jdate($obj->daten), 'dayhour').'</td>';
- print '</tr>';
- $i++;
- }
- $db->free($resql);
- } else {
- print '<tr><td colspan="4"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
- }
- print '</table>';
- print '</div>';
- print '</form>';
- } else {
- dol_print_error('', 'RecordNotFound');
- }
- // End of page
- llxFooter();
- $db->close();
|