123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- <?php
- /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
- *
- * 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 2 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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/societe/notify/fiche.php
- * \ingroup societe notification
- * \brief Tab for notifications of third party
- */
- require("../../main.inc.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->load("companies");
- $langs->load("mails");
- $langs->load("admin");
- $langs->load("other");
- $socid = GETPOST("socid",'int');
- $action = GETPOST('action');
- $contactid=GETPOST('contactid'); // May be an int or 'thirdparty'
- $actionid=GETPOST('actionid');
- // Security check
- if ($user->societe_id) $socid=$user->societe_id;
- $result = restrictedArea($user, 'societe','','');
- $sortfield = GETPOST("sortfield",'alpha');
- $sortorder = GETPOST("sortorder",'alpha');
- $page = GETPOST("page",'int');
- if ($page == -1) { $page = 0; }
- $offset = $conf->liste_limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if (! $sortorder) $sortorder="ASC";
- if (! $sortfield) $sortfield="c.name";
- $now=dol_now();
- /*
- * Actions
- */
- // Add a notification
- if ($action == 'add')
- {
- $error=0;
- if (empty($contactid))
- {
- $mesg='<div class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Contact")).'</div>';
- $error++;
- }
- if ($actionid <= 0)
- {
- $mesg='<div class="error">'.$langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("Action")).'</div>';
- $error++;
- }
- if (! $error)
- {
- $db->begin();
- $sql = "DELETE FROM ".MAIN_DB_PREFIX."notify_def";
- $sql .= " WHERE fk_soc=".$socid." AND fk_contact=".$contactid." AND fk_action=".$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)."',".$socid.",".$contactid.",".$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=".$_GET["actid"];
- $db->query($sql);
- }
- /*
- * View
- */
- $form = new Form($db);
- llxHeader();
- $object = new Societe($db);
- $result=$object->fetch($socid);
- if ($result > 0)
- {
- $form = new Form($db);
- $langs->load("other");
- $head = societe_prepare_head($object);
- dol_fiche_head($head, 'notify', $langs->trans("ThirdParty"),0,'company');
- print '<table class="border"width="100%">';
- print '<tr><td width="20%">'.$langs->trans("ThirdPartyName").'</td><td colspan="3">';
- print $form->showrefnav($object,'socid','',($user->societe_id?0:1),'rowid','nom');
- print '</td></tr>';
- // Prefix
- if (! empty($conf->global->SOCIETE_USEPREFIX)) // Old not used prefix field
- {
- print '<tr><td>'.$langs->trans('Prefix').'</td><td colspan="3">'.$object->prefix_comm.'</td></tr>';
- }
- if ($object->client)
- {
- print '<tr><td>';
- print $langs->trans('CustomerCode').'</td><td colspan="3">';
- print $object->code_client;
- if ($object->check_codeclient() <> 0) print ' <font class="error">('.$langs->trans("WrongCustomerCode").')</font>';
- print '</td></tr>';
- }
- if ($object->fournisseur)
- {
- print '<tr><td>';
- print $langs->trans('SupplierCode').'</td><td colspan="3">';
- print $object->code_fournisseur;
- if ($object->check_codefournisseur() <> 0) print ' <font class="error">('.$langs->trans("WrongSupplierCode").')</font>';
- print '</td></tr>';
- }
- print '<tr><td width="30%">'.$langs->trans("NbOfActiveNotifications").'</td>';
- print '<td colspan="3">';
- $sql = "SELECT COUNT(n.rowid) as nb";
- $sql.= " FROM ".MAIN_DB_PREFIX."notify_def as n";
- $sql.= " WHERE fk_soc = ".$object->id;
- $resql=$db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- $i = 0;
- while ($i < $num)
- {
- $obj = $db->fetch_object($resql);
- $nb=$obj->nb;
- $i++;
- }
- }
- else {
- dol_print_error($db);
- }
- print $nb;
- print '</td></tr>';
- print '</table>';
- // Help
- print '<br>'.$langs->trans("NotificationsDesc").'<br>';
- dol_fiche_end();
- print "\n";
- // Add notification form
- print_fiche_titre($langs->trans("AddNewNotification"),'','');
- print '<form action="fiche.php?socid='.$socid.'" method="post">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="add">';
- $param="&socid=".$socid;
- // Line with titles
- print '<table width="100%" class="noborder">';
- print '<tr class="liste_titre">';
- print_liste_field_titre($langs->trans("Contact"),"fiche.php","c.name",'',$param,'"width="45%"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Action"),"fiche.php","a.titre",'',$param,'"width="35%"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Type"),"fiche.php","",'',$param,'"width="10%"',$sortfield,$sortorder);
- print_liste_field_titre('');
- print '</tr>';
- $var=false;
- $listofemails=$object->thirdparty_and_contact_email_array();
- if (count($listofemails) > 0)
- {
- $actions=array();
- // Load array of available notifications
- $notificationtrigger=new InterfaceNotification($db);
- $listofnotifiedevents=$notificationtrigger->getListOfManagedEvents();
- foreach($listofnotifiedevents as $notifiedevent)
- {
- $label=$langs->trans("Notify_".$notifiedevent['code'])!=$langs->trans("Notify_".$notifiedevent['code'])?$langs->trans("Notify_".$notifiedevent['code']):$notifiedevent['label'];
- $actions[$notifiedevent['rowid']]=$label;
- }
- print '<tr '.$bc[$var].'><td>';
- print $form->selectarray("contactid",$listofemails);
- print '</td>';
- print '<td>';
- print $form->selectarray("actionid",$actions,'',1);
- print '</td>';
- print '<td>';
- $type=array('email'=>$langs->trans("EMail"));
- print $form->selectarray("typeid",$type);
- print '</td>';
- print '<td align="right"><input type="submit" class="button" value="'.$langs->trans("Add").'"></td>';
- print '</tr>';
- }
- else
- {
- print '<tr '.$bc[$var].'><td colspan="4">';
- print $langs->trans("YouMustCreateContactFirst");
- print '</td></tr>';
- }
- print '</table>';
- print '</form>';
- print '<br>';
- dol_htmloutput_mesg($mesg);
- // List of active notifications
- print_fiche_titre($langs->trans("ListOfActiveNotifications"),'','');
- $var=true;
- // Line with titles
- print '<table width="100%" class="noborder">';
- print '<tr class="liste_titre">';
- print_liste_field_titre($langs->trans("Contact"),"fiche.php","c.name",'',$param,'"width="45%"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Action"),"fiche.php","a.titre",'',$param,'"width="35%"',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Type"),"fiche.php","",'',$param,'"width="10%"',$sortfield,$sortorder);
- print_liste_field_titre('','','');
- print '</tr>';
- // List of notifications for contacts
- $sql = "SELECT n.rowid, n.type,";
- $sql.= " a.code, a.label,";
- $sql.= " c.rowid as contactid, c.name, 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 = ".$object->id;
- $resql=$db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- $i = 0;
- $contactstatic=new Contact($db);
- while ($i < $num)
- {
- $var = !$var;
- $obj = $db->fetch_object($resql);
- $contactstatic->id=$obj->contactid;
- $contactstatic->name=$obj->name;
- $contactstatic->firstname=$obj->firstname;
- print '<tr '.$bc[$var].'><td>'.$contactstatic->getNomUrl(1);
- if ($obj->type == 'email')
- {
- if (isValidEmail($obj->email))
- {
- print ' <'.$obj->email.'>';
- }
- else
- {
- $langs->load("errors");
- print ' '.img_warning().' '.$langs->trans("ErrorBadEMail",$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>';
- print '<td align="right"><a href="fiche.php?socid='.$socid.'&action=delete&actid='.$obj->rowid.'">'.img_delete().'</a></td>';
- print '</tr>';
- $i++;
- }
- $db->free($resql);
- }
- else
- {
- dol_print_error($db);
- }
- print '</table>';
- print '<br>';
- // List of notifications done
- print_fiche_titre($langs->trans("ListOfNotificationsDone"),'','');
- $var=true;
- // Line with titles
- print '<table width="100%" class="noborder">';
- print '<tr class="liste_titre">';
- print_liste_field_titre($langs->trans("Contact"),"fiche.php","c.name",'',$param,'',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Action"),"fiche.php","a.titre",'',$param,'',$sortfield,$sortorder);
- print_liste_field_titre($langs->trans("Date"),"fiche.php","a.daten",'',$param,'align="right"',$sortfield,$sortorder);
- print '</tr>';
- // List
- $sql = "SELECT n.rowid, n.daten, n.email, n.objet_type, n.objet_id,";
- $sql.= " c.rowid as id, c.name, c.firstname, c.email,";
- $sql.= " a.code, a.label";
- $sql.= " FROM ".MAIN_DB_PREFIX."c_action_trigger as a,";
- $sql.= " ".MAIN_DB_PREFIX."notify as n, ";
- $sql.= " ".MAIN_DB_PREFIX."socpeople as c";
- $sql.= " WHERE a.rowid = n.fk_action";
- $sql.= " AND c.rowid = n.fk_contact";
- $sql.= " AND c.fk_soc = ".$object->id;
- $resql=$db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- $i = 0;
- $contactstatic=new Contact($db);
- while ($i < $num)
- {
- $var = !$var;
- $obj = $db->fetch_object($resql);
- $contactstatic->id=$obj->id;
- $contactstatic->name=$obj->name;
- $contactstatic->firstname=$obj->firstname;
- print '<tr '.$bc[$var].'><td>'.$contactstatic->getNomUrl(1);
- print $obj->email?' <'.$obj->email.'>':$langs->trans("NoMail");
- print '</td>';
- print '<td>';
- $label=($langs->trans("Notify_".$obj->code)!="Notify_".$obj->code?$langs->trans("Notify_".$obj->code):$obj->label);
- print $label;
- print '</td>';
- // TODO Add link to object here
- // print
- print'<td align="right">'.dol_print_date($db->jdate($obj->daten), 'dayhour').'</td>';
- print '</tr>';
- $i++;
- }
- $db->free($resql);
- }
- else
- {
- dol_print_error($db);
- }
- print '</table>';
- }
- else dol_print_error('','RecordNotFound');
- $db->close();
- llxFooter();
- ?>
|