30require
'../../main.inc.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/class/notify.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
40require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
41require_once DOL_DOCUMENT_ROOT.
'/core/triggers/interface_50_modNotification_Notification.class.php';
43$langs->loadLangs(array(
"companies",
"mails",
"admin",
"other",
"errors"));
46$action =
GETPOST(
'action',
'aZ09');
47$contextpage =
GETPOST(
'contextpage');
48$optioncss =
GETPOST(
'optioncss',
'aZ');
50$contactid =
GETPOST(
'contactid',
'alpha');
55 $socid = $user->socid;
59$hookmanager->initHooks(array(
'thirdpartynotification',
'globalcard'));
62$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
63$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
69 $sortfield =
"n.daten";
71if (empty($page) || $page == -1) {
74$offset = $limit * $page;
88$permissiontoadd = $user->hasRight(
'societe',
'write');
95if (
GETPOST(
'cancel',
'alpha')) {
99$parameters = array(
'id' => $socid);
100$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
105if (empty($reshook)) {
109 if ($action ==
'add' && $permissiontoadd) {
110 if (empty($contactid)) {
111 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Contact")),
null,
'errors');
114 if ($actionid <= 0) {
115 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Action")),
null,
'errors');
123 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"notify_def";
124 $sql .=
" WHERE fk_soc=".((int) $socid).
" AND fk_contact=".((int) $contactid).
" AND fk_action = ".((int) $actionid);
125 if (
$db->query($sql)) {
126 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"notify_def (datec,fk_soc, fk_contact, fk_action)";
127 $sql .=
" VALUES ('".$db->idate($now).
"', ".((int) $socid).
",".((int) $contactid).
",".((int) $actionid).
")";
129 if (!
$db->query($sql)) {
147 if ($action ==
'delete' && $permissiontoadd) {
148 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"notify_def where rowid = ".
GETPOSTINT(
'actid');
161$title = $langs->trans(
"ThirdParty").
' - '.$langs->trans(
"Notification");
163 $title =
$object->name.
' - '.$langs->trans(
"Notification");
165$help_url =
'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
171 $langs->load(
"other");
175 print
dol_get_fiche_head($head,
'notify', $langs->trans(
"ThirdParty"), -1,
'company');
177 $linkback =
'<a href="'.DOL_URL_ROOT.
'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
179 dol_banner_tab($object,
'socid', $linkback, ($user->socid ? 0 : 1),
'rowid',
'nom');
181 print
'<div class="fichecenter">';
183 print
'<div class="underbanner clearboth"></div>';
184 print
'<table class="border centpercent tableforfield">';
187 print
'<tr><td class="titlefield">'.$langs->trans(
'NatureOfThirdParty').
'</td><td>';
192 print
'<tr><td class="titlefield">';
193 print $langs->trans(
'CustomerCode').
'</td><td colspan="3">';
195 $tmpcheck =
$object->check_codeclient();
196 if ($tmpcheck != 0 && $tmpcheck != -5) {
197 print
' <span class="error">('.$langs->trans(
"WrongCustomerCode").
')</span>';
203 print
'<tr><td class="titlefield">';
204 print $langs->trans(
'SupplierCode').
'</td><td colspan="3">';
206 $tmpcheck =
$object->check_codefournisseur();
207 if ($tmpcheck != 0 && $tmpcheck != -5) {
208 print
' <span class="error">('.$langs->trans(
"WrongSupplierCode").
')</span>';
235 print
'<div class="info hideonsmartphone">';
236 print $langs->trans(
"NotificationsDesc");
237 print
'<br>'.$langs->trans(
"NotificationsDescUser");
238 print
'<br>'.$langs->trans(
"NotificationsDescContact").
' - '.$langs->trans(
"YouAreHere");
239 print
'<br>'.$langs->trans(
"NotificationsDescGlobal");
247 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'?socid='.urlencode((
string) $socid).
'" method="POST">';
248 print
'<input type="hidden" name="token" value="'.newToken().
'">';
249 print
'<input type="hidden" name="page_y" value="">';
250 if ($action ==
'create') {
251 print
'<input type="hidden" name="action" id="action" value="add">';
254 $nbtotalofrecords =
'';
257 $sql =
"SELECT n.rowid, n.type,";
258 $sql .=
" a.code, a.label,";
259 $sql .=
" c.rowid as contactid, c.lastname, c.firstname, c.email";
260 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_action_trigger as a,";
261 $sql .=
" ".MAIN_DB_PREFIX.
"notify_def as n,";
262 $sql .=
" ".MAIN_DB_PREFIX.
"socpeople as c";
263 $sql .=
" WHERE a.rowid = n.fk_action";
264 $sql .=
" AND c.rowid = n.fk_contact";
265 $sql .=
" AND c.fk_soc = ".((int)
$object->id);
267 $resql =
$db->query($sql);
269 $nbtotalofrecords =
$db->num_rows($resql);
274 $param =
"&socid=".((int) $socid);
276 $listofemails =
$object->thirdparty_and_contact_email_array();
279 $buttonstatus = $permissiontoadd ? 1 : 0;
280 if (empty($listofemails)) {
282 $helptext = $langs->trans(
"YouMustCreateContactFirst");
286 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'), $helptext,
'fa fa-plus-circle', $_SERVER[
"PHP_SELF"].
'?socid='.
$object->id.
'&action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $buttonstatus);
288 $titlelist = $form->textwithpicto($langs->trans(
"ListOfActiveNotifications"), $langs->trans(
"ListOfActiveNotificationsHelp", $langs->transnoentitiesnoconv(
"Target"), $langs->transnoentitiesnoconv(
"Event")));
290 $num = $nbtotalofrecords;
292 $limitforsubscription = 0;
295 print_barre_liste($titlelist, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder,
'', $num, (empty($nbtotalofrecords) ? -1 : $nbtotalofrecords),
'email', 0, $newcardbutton,
'', $limitforsubscription, 0, 0, 1);
298 print
'<div class="div-table-responsive-no-min">';
299 print
'<table class="noborder centpercent">';
300 print
'<tr class="liste_titre">';
301 print_liste_field_titre(
"Target", $_SERVER[
"PHP_SELF"],
"c.lastname,c.firstname",
'', $param,
'width="45%"', $sortfield, $sortorder);
303 print_liste_field_titre(
"Type", $_SERVER[
"PHP_SELF"],
"n.type",
'', $param,
'width="10%"', $sortfield, $sortorder);
308 if ($action ==
'create') {
309 if (count($listofemails) > 0) {
314 $listofmanagedeventfornotification = $notificationtrigger->getListOfManagedEvents();
316 foreach ($listofmanagedeventfornotification as $managedeventfornotification) {
317 $label = ($langs->trans(
"Notify_".$managedeventfornotification[
'code']) !=
"Notify_".$managedeventfornotification[
'code'] ? $langs->trans(
"Notify_".$managedeventfornotification[
'code']) : $managedeventfornotification[
'label']);
318 $actions[$managedeventfornotification[
'rowid']] = $label;
321 $newlistofemails = array();
322 foreach ($listofemails as $tmpkey => $tmpval) {
323 $labelhtml = str_replace(array(
'<',
'>'), array(
' - <span class="opacitymedium">',
'</span>'), $tmpval);
324 $newlistofemails[$tmpkey] = array(
'label' =>
dol_string_nohtmltag($tmpval),
'id' => $tmpkey,
'data-html' => $labelhtml);
327 print
'<tr class="oddeven nohover">';
328 print
'<td class="nowraponall">';
329 print
img_picto(
'',
'contact',
'', 0, 0, 0,
'',
'paddingright');
330 print $form->selectarray(
"contactid", $newlistofemails,
'', 1, 0, 0,
'', 0, 0, 0,
'',
'minwidth100imp maxwidthonsmartphone');
332 print
'<td class="tdoverflowmax200">';
333 print
img_picto(
'',
'object_action',
'', 0, 0, 0,
'',
'paddingright');
334 print $form->selectarray(
"actionid", $actions,
'', 1, 0, 0,
'', 0, 0, 0,
'',
'minwidth100imp maxwidthonsmartphone');
337 $type = array(
'email' => $langs->trans(
"EMail"));
338 print $form->selectarray(
"typeid", $type,
'', 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth75imp');
340 print
'<td class="right nowraponall">';
341 print
'<input type="submit" class="button button-add small" value="'.$langs->trans(
"Add").
'">';
343 print
'<input type="submit" class="button button-cancel small" name="cancel" value="'.$langs->trans(
"Cancel").
'">';
347 print
'<tr class="oddeven"><td colspan="4" class="opacitymedium">';
348 print $langs->trans(
"YouMustCreateContactFirst");
358 $obj =
$db->fetch_object($resql);
360 $contactstatic->id = $obj->contactid;
361 $contactstatic->lastname = $obj->lastname;
362 $contactstatic->firstname = $obj->firstname;
364 print
'<tr class="oddeven">';
365 print
'<td>'.$contactstatic->getNomUrl(1);
366 if ($obj->type ==
'email') {
368 print
' <'.$obj->email.
'>';
370 $langs->load(
"errors");
371 print
' '.img_warning().
' <span class="warning">'.$langs->trans(
"ErrorBadEMail", $obj->email).
'</span>';
376 $label = ($langs->trans(
"Notify_".$obj->code) !=
"Notify_".$obj->code ? $langs->trans(
"Notify_".$obj->code) : $obj->label);
377 print
'<td class="tdoverflowmax200" title="'.dol_escape_htmltag($label).
'">';
378 print
img_picto(
'',
'object_action',
'', 0, 0, 0,
'',
'pictofixedwidth').$label;
381 if ($obj->type ==
'email') {
382 print $langs->trans(
"Email");
384 if ($obj->type ==
'sms') {
385 print $langs->trans(
"SMS");
388 print
'<td class="right"><a href="card.php?socid='.$socid.
'&action=delete&token='.
newToken().
'&actid='.$obj->rowid.
'">'.
img_delete().
'</a></td>';
394 print
'<tr><td colspan="4"><span class="opacitymedium">'.$langs->trans(
"None").
'</span></td></tr>';
404 print
'<br><br>'.
"\n";
408 $sql =
"SELECT n.rowid, n.daten, n.email, n.objet_type as object_type, n.objet_id as object_id, n.type,";
409 $sql .=
" c.rowid as id, c.lastname, c.firstname, c.email as contactemail,";
410 $sql .=
" a.code, a.label";
411 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_action_trigger as a,";
412 $sql .=
" ".MAIN_DB_PREFIX.
"notify as n ";
413 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"socpeople as c ON n.fk_contact = c.rowid";
414 $sql .=
" WHERE a.rowid = n.fk_action";
415 $sql .=
" AND n.fk_soc = ".((int)
$object->id);
416 $sql .=
$db->order($sortfield, $sortorder);
419 $nbtotalofrecords =
'';
421 $result =
$db->query($sql);
422 $nbtotalofrecords =
$db->num_rows($result);
423 if (($page * $limit) > (int) $nbtotalofrecords) {
429 $sql .=
$db->plimit($limit + 1, $offset);
431 $resql =
$db->query($sql);
433 $num =
$db->num_rows($resql);
438 $param =
'&socid='.$object->id;
439 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
440 $param .=
'&contextpage='.$contextpage;
442 if ($limit > 0 && $limit !=
$conf->liste_limit) {
443 $param .=
'&limit='.$limit;
446 print
'<form method="post" action="'.$_SERVER[
"PHP_SELF"].
'" name="formfilter">';
447 if ($optioncss !=
'') {
448 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
450 print
'<input type="hidden" name="token" value="'.newToken().
'">';
451 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
452 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
453 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
454 print
'<input type="hidden" name="page" value="'.$page.
'">';
455 print
'<input type="hidden" name="socid" value="'.$object->id.
'">';
457 $titlelist = $form->textwithpicto($langs->trans(
"ListOfNotificationsDone"), $langs->trans(
"ListOfNotificationsDoneHelp"));
460 print_barre_liste($titlelist, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder,
'', $num, empty($nbtotalofrecords) ? -1 : $nbtotalofrecords,
'email', 0,
'',
'', $limit,
'');
463 print
'<div class="div-table-responsive-no-min">';
464 print
'<table class="centpercent noborder">';
465 print
'<tr class="liste_titre">';
466 print_liste_field_titre(
"Target", $_SERVER[
"PHP_SELF"],
"c.lastname,c.firstname",
'', $param,
'', $sortfield, $sortorder);
470 print_liste_field_titre(
"Date", $_SERVER[
"PHP_SELF"],
"n.daten",
'', $param,
'', $sortfield, $sortorder,
'right ');
479 $obj =
$db->fetch_object($resql);
481 print
'<tr class="oddeven"><td>';
483 $contactstatic->id = $obj->id;
484 $contactstatic->lastname = $obj->lastname;
485 $contactstatic->firstname = $obj->firstname;
486 print $contactstatic->getNomUrl(1);
487 print $obj->email ?
' <'.$obj->email.
'>' : $langs->trans(
"NoMail");
493 $label = ($langs->trans(
"Notify_".$obj->code) !=
"Notify_".$obj->code ? $langs->trans(
"Notify_".$obj->code) : $obj->label);
497 if ($obj->type ==
'email') {
498 print $langs->trans(
"Email");
500 if ($obj->type ==
'sms') {
501 print $langs->trans(
"Sms");
514 print
'<td class="right">'.dol_print_date(
$db->jdate($obj->daten),
'dayhour').
'</td>';
520 print
'<tr><td colspan="4"><span class="opacitymedium">'.$langs->trans(
"None").
'</span></td></tr>';
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class of triggers for notification module.
Class to manage third parties objects (customers, suppliers, prospects...)
societe_prepare_head(Societe $object, $subtabs='')
Return array of tabs to used on pages for third parties cards.
dol_now($mode='gmt')
Return date for now.
recordNotFound($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Displays an error page when a record is not found.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_liste_field_titre($name, $file="", $field="", $begin="", $param="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
isValidEmail($address, $acceptsupervisorkey=0, $acceptuserkey=0)
Return true if email syntax is ok.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.