34require
'../../main.inc.php';
35require_once DOL_DOCUMENT_ROOT.
'/comm/action/class/actioncomm.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/societe/class/societe.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/user/class/usergroup.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/lib/agenda.lib.php';
41require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
45if (!isset($conf->global->AGENDA_MAX_EVENTS_DAY_VIEW)) {
46 $conf->global->AGENDA_MAX_EVENTS_DAY_VIEW = 3;
49$action =
GETPOST(
'action',
'aZ09');
51$disabledefaultvalues =
GETPOSTINT(
'disabledefaultvalues');
53$filter =
GETPOST(
"search_filter",
'alpha', 3) ?
GETPOST(
"search_filter",
'alpha', 3) :
GETPOST(
"filter",
'alpha', 3);
66$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
67$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
69if (empty($page) || $page == -1) {
73$offset = $limit * $page;
78 $sortfield =
"a.datec";
83 $socid = $user->socid;
90if (!$user->hasRight(
'agenda',
'myactions',
'read')) {
93if (!$user->hasRight(
'agenda',
'allactions',
'read')) {
96if (!$user->hasRight(
'agenda',
'allactions',
'read') || $filter ==
'mine') {
100$mode =
'show_peruser';
106$pid = GETPOSTISSET(
"search_projectid") ?
GETPOSTINT(
"search_projectid", 3) :
GETPOSTINT(
"projectid", 3);
107$status = GETPOSTISSET(
"search_status") ?
GETPOST(
"search_status",
'aZ09') :
GETPOST(
"status",
'aZ09');
108$type = GETPOSTISSET(
"search_type") ?
GETPOST(
"search_type",
'alpha') :
GETPOST(
"type",
'alpha');
109$maxprint = ((
GETPOSTINT(
"maxprint") !=
'') ?
GETPOSTINT(
"maxprint") : $conf->global->AGENDA_MAX_EVENTS_DAY_VIEW);
110$optioncss =
GETPOST(
'optioncss',
'aZ');
113if (
GETPOST(
'search_actioncode',
'array:aZ09')) {
114 $actioncode =
GETPOST(
'search_actioncode',
'array:aZ09', 3);
115 if (!count($actioncode)) {
119 $actioncode =
GETPOST(
"search_actioncode",
"alpha", 3) ?
GETPOST(
"search_actioncode",
"alpha", 3) : (
GETPOST(
"search_actioncode",
"alpha") ==
'0' ?
'0' : ((!
getDolGlobalString(
'AGENDA_DEFAULT_FILTER_TYPE') || $disabledefaultvalues) ?
'' :
getDolGlobalString(
'AGENDA_DEFAULT_FILTER_TYPE')));
123if ($dateselect > 0) {
129$tmp = !
getDolGlobalString(
'MAIN_DEFAULT_WORKING_HOURS') ?
'9-18' : $conf->global->MAIN_DEFAULT_WORKING_HOURS;
130$tmp = str_replace(
' ',
'', $tmp);
131$tmparray = explode(
'-', $tmp);
132$begin_h = GETPOSTISSET(
'begin_h') ?
GETPOSTINT(
'begin_h') : ($tmparray[0] !=
'' ? $tmparray[0] : 9);
133$end_h = GETPOSTISSET(
'end_h') ?
GETPOSTINT(
'end_h') : ($tmparray[1] !=
'' ? $tmparray[1] : 18);
134if ($begin_h < 0 || $begin_h > 23) {
137if ($end_h < 1 || $end_h > 24) {
140if ($end_h <= $begin_h) {
141 $end_h = $begin_h + 1;
144$tmp = !
getDolGlobalString(
'MAIN_DEFAULT_WORKING_DAYS') ?
'1-5' : $conf->global->MAIN_DEFAULT_WORKING_DAYS;
145$tmp = str_replace(
' ',
'', $tmp);
146$tmparray = explode(
'-', $tmp);
147$begin_d = GETPOSTISSET(
'begin_d') ?
GETPOSTINT(
'begin_d') : ($tmparray[0] !=
'' ? $tmparray[0] : 1);
148$end_d = GETPOSTISSET(
'end_d') ?
GETPOSTINT(
'end_d') : ($tmparray[1] !=
'' ? $tmparray[1] : 5);
149if ($begin_d < 1 || $begin_d > 7) {
152if ($end_d < 1 || $end_d > 7) {
155if ($end_d < $begin_d) {
156 $end_d = $begin_d + 1;
159if ($status ==
'' && !GETPOSTISSET(
'search_status')) {
160 $status = ((!
getDolGlobalString(
'AGENDA_DEFAULT_FILTER_STATUS') || $disabledefaultvalues) ?
'' : $conf->global->AGENDA_DEFAULT_FILTER_STATUS);
163if (empty($mode) && !GETPOSTISSET(
'mode')) {
167if (
GETPOST(
'viewcal',
'alpha') && $mode !=
'show_day' && $mode !=
'show_week' && $mode !=
'show_peruser') {
168 $mode =
'show_month';
171if (
GETPOST(
'viewweek',
'alpha') || $mode ==
'show_week') {
173 $week = ($week ? $week : idate(
"W"));
174 $day = ($day ? $day : idate(
"d"));
176if (
GETPOST(
'viewday',
'alpha') || $mode ==
'show_day') {
178 $day = ($day ? $day : idate(
"d"));
184$langs->loadLangs(array(
'users',
'agenda',
'other',
'commercial'));
187$hookmanager->initHooks(array(
'agenda'));
190if ($user->socid && $socid) {
194$search_status = $status;
215 'maxprint' => $maxprint,
217 'filtert' => $filtert,
218 'showbirthday' => $showbirthday,
219 'canedit' => $canedit,
220 'optioncss' => $optioncss,
221 'actioncode' => $actioncode,
223 'resourceid' => $resourceid,
224 'usergroup' => $usergroup,
226$reshook = $hookmanager->executeHooks(
'beforeAgendaPerUser', $parameters, $object, $action);
231$form =
new Form($db);
232$companystatic =
new Societe($db);
234$help_url =
'EN:Module_Agenda_En|FR:Module_Agenda|ES:Módulo_Agenda|DE:Modul_Terminplanung';
235llxHeader(
'', $langs->trans(
"Agenda"), $help_url);
239$nowyear = $nowarray[
'year'];
240$nowmonth = $nowarray[
'mon'];
241$nowday = $nowarray[
'mday'];
245$listofextcals = array();
248$first_day = $prev[
'first_day'];
249$first_month = $prev[
'first_month'];
250$first_year = $prev[
'first_year'];
252$week = $prev[
'week'];
256$next_year = $next[
'year'];
257$next_month = $next[
'month'];
258$next_day = $next[
'day'];
260$max_day_in_month = idate(
"t",
dol_mktime(0, 0, 0, $month, 1, $year));
266$title = $langs->trans(
"DoneAndToDoActions");
267if ($status ==
'done') {
268 $title = $langs->trans(
"DoneActions");
270if ($status ==
'todo') {
271 $title = $langs->trans(
"ToDoActions");
275if ($actioncode || GETPOSTISSET(
'search_actioncode')) {
276 if (is_array($actioncode)) {
277 foreach ($actioncode as $str_action) {
278 $param .=
"&search_actioncode[]=".urlencode($str_action);
281 $param .=
"&search_actioncode=".urlencode($actioncode);
284if ($resourceid > 0) {
285 $param .=
"&search_resourceid=".urlencode((
string) ($resourceid));
288if ($status || GETPOSTISSET(
'status') || GETPOSTISSET(
'search_status')) {
289 $param .=
"&search_status=".urlencode($status);
292 $param .=
"&search_filter=".urlencode($filter);
295 $param .=
"&search_filtert=".urlencode((
string) $filtert);
298 $param .=
"&search_usergroup=".urlencode((
string) ($usergroup));
301 $param .=
"&search_socid=".urlencode((
string) ($socid));
304 $param .=
"&search_showbirthday=1";
307 $param .=
"&search_projectid=".urlencode((
string) ($pid));
310 $param .=
"&search_type=".urlencode($type);
312if ($mode !=
'show_peruser') {
313 $param .=
'&mode='.urlencode((
string) $mode);
316 $param .=
'&begin_h='.((int) $begin_h);
319 $param .=
'&end_h='.((int) $end_h);
322 $param .=
'&begin_d='.((int) $begin_d);
325 $param .=
'&end_d='.((int) $end_d);
327if ($search_categ_cus != 0) {
328 $param .=
'&search_categ_cus='.urlencode((
string) ($search_categ_cus));
330$param .=
"&maxprint=".urlencode((
string) ($maxprint));
332$paramnoactionodate = $param;
337$prev_year = $prev[
'prev_year'];
338$prev_month = $prev[
'prev_month'];
339$prev_day = $prev[
'prev_day'];
340$first_day = $prev[
'first_day'];
341$first_month = $prev[
'first_month'];
342$first_year = $prev[
'first_year'];
344$week = $prev[
'week'];
348$next_year = $next[
'year'];
349$next_month = $next[
'month'];
350$next_day = $next[
'day'];
354$firstdaytoshow =
dol_mktime(0, 0, 0, $first_month, $first_day, $first_year,
'tzuserrel');
355$nb_weeks_to_show = (
getDolGlobalString(
'AGENDA_NB_WEEKS_IN_VIEW_PER_USER')) ? ((
int) $conf->global->AGENDA_NB_WEEKS_IN_VIEW_PER_USER * 7) : 7;
361$max_day_in_month = idate(
"t",
dol_mktime(0, 0, 0, $month, 1, $year,
'gmt'));
364$picto =
'calendarweek';
367$nav =
'<div class="navselectiondate inline-block nowraponall">';
368$nav .=
"<a href=\"?year=".$prev_year.
"&month=".$prev_month.
"&day=".$prev_day.$param.
"\"><i class=\"fa fa-chevron-left\" title=\"".
dol_escape_htmltag($langs->trans(
"Previous")).
"\"></i></a> \n";
369$nav .=
" <span id=\"month_name\">".dol_print_date(
dol_mktime(0, 0, 0, $first_month, $first_day, $first_year),
"%Y").
", ".$langs->trans(
"Week").
" ".$week;
371$nav .=
" <a href=\"?year=".$next_year.
"&month=".$next_month.
"&day=".$next_day.$param.
"\"><i class=\"fa fa-chevron-right\" title=\"".
dol_escape_htmltag($langs->trans(
"Next")).
"\"></i></a>\n";
372if (empty($conf->dol_optimize_smallscreen)) {
373 $nav .=
" <a href=\"?year=".$nowyear.
"&month=".$nowmonth.
"&day=".$nowday.$param.
'" class="datenowlink">'.$langs->trans(
"Today").
'</a> ';
376$nav .= $form->selectDate($dateselect,
'dateselect', 0, 0, 1,
'', 1, 0);
377$nav .=
' <button type="submit" class="liste_titre button_search" name="button_search_x" value="x"><span class="fa fa-search"></span></button>';
380$param .=
'&year='.urlencode((
string) ($year)).
'&month='.urlencode((
string) ($month)).($day ?
'&day='.urlencode((
string) ($day)) :
'');
384$paramnoaction = preg_replace(
'/action=[a-z_]+/',
'', $param);
388print
'<form method="POST" id="searchFormList" class="listactionsfilter" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
390$showextcals = $listofextcals;
392if ($conf->use_javascript_ajax) {
394 $s .=
'<script type="text/javascript">'.
"\n";
395 $s .=
'jQuery(document).ready(function () {'.
"\n";
396 $s .=
'jQuery("#check_mytasks").click(function() { jQuery(".family_mytasks").toggle(); jQuery(".family_other").toggle(); });'.
"\n";
397 $s .=
'jQuery("#check_birthday").click(function() { jQuery(".family_birthday").toggle(); });'.
"\n";
398 $s .=
'jQuery(".family_birthday").toggle();'.
"\n";
399 if ($mode ==
"show_week" || $mode ==
"show_month" || empty($mode)) {
400 $s .=
'jQuery( "td.sortable" ).sortable({connectWith: ".sortable",placeholder: "ui-state-highlight",items: "div:not(.unsortable)", receive: function( event, ui ) {';
403 $s .=
'</script>'.
"\n";
404 if (!empty($conf->use_javascript_ajax)) {
405 $s .=
'<div class="nowrap clear float"><input type="checkbox" id="check_mytasks" name="check_mytasks" checked disabled> '.$langs->trans(
"LocalAgenda").
' </div>';
406 if (is_array($showextcals) && count($showextcals) > 0) {
407 foreach ($showextcals as $val) {
408 $htmlname = md5($val[
'name']);
409 $s .=
'<script type="text/javascript">'.
"\n";
410 $s .=
'jQuery(document).ready(function () {'.
"\n";
411 $s .=
' jQuery("#check_ext'.$htmlname.
'").click(function() {';
412 $s .=
' /* alert("'.$htmlname.
'"); */';
413 $s .=
' jQuery(".family_ext'.$htmlname.
'").toggle();';
416 $s .=
'</script>'.
"\n";
417 $s .=
'<div class="nowrap float"><input type="checkbox" id="check_ext'.$htmlname.
'" name="check_ext'.$htmlname.
'" checked> '.$val [
'name'].
' </div>';
424 $parameters = array();
425 $reshook = $hookmanager->executeHooks(
'addCalendarChoice', $parameters, $object, $action);
426 if (empty($reshook)) {
427 $s .= $hookmanager->resPrint;
428 } elseif ($reshook > 1) {
429 $s = $hookmanager->resPrint;
434$mode =
'show_peruser';
435$massactionbutton =
'';
438$viewmode =
'<div class="navmode inline-block">';
440$viewmode .=
'<a class="btnTitle'.($mode ==
'list' ?
' btnTitleSelected' :
'').
' reposition" href="'.DOL_URL_ROOT.
'/comm/action/list.php?mode=show_list&restore_lastsearch_values=1'.$paramnoactionodate.
'">';
442$viewmode .=
img_picto($langs->trans(
"List"),
'object_calendarlist',
'class="imgforviewmode pictoactionview block"');
444$viewmode .=
'<span class="valignmiddle text-plus-circle btnTitle-label hideonsmartphone inline-block width75 divoverflow">'.$langs->trans(
"ViewList").
'</span></a>';
446$viewmode .=
'<a class="btnTitle'.($mode ==
'show_month' ?
' btnTitleSelected' :
'').
' reposition" href="'.DOL_URL_ROOT.
'/comm/action/index.php?mode=show_month&year='.
dol_print_date(
$object->datep,
'%Y').
'&month='.
dol_print_date(
$object->datep,
'%m').
'&day='.
dol_print_date(
$object->datep,
'%d').$paramnoactionodate.
'">';
448$viewmode .=
img_picto($langs->trans(
"ViewCal"),
'object_calendarmonth',
'class="pictoactionview block"');
450$viewmode .=
'<span class="valignmiddle text-plus-circle btnTitle-label hideonsmartphone inline-block width75 divoverflow">'.$langs->trans(
"ViewCal").
'</span></a>';
452$viewmode .=
'<a class="btnTitle'.($mode ==
'show_week' ?
' btnTitleSelected' :
'').
' reposition" href="'.DOL_URL_ROOT.
'/comm/action/index.php?mode=show_week&year='.
dol_print_date(
$object->datep,
'%Y').
'&month='.
dol_print_date(
$object->datep,
'%m').
'&day='.
dol_print_date(
$object->datep,
'%d').$paramnoactionodate.
'">';
454$viewmode .=
img_picto($langs->trans(
"ViewWeek"),
'object_calendarweek',
'class="pictoactionview block"');
456$viewmode .=
'<span class="valignmiddle text-plus-circle btnTitle-label hideonsmartphone inline-block width75 divoverflow">'.$langs->trans(
"ViewWeek").
'</span></a>';
458$viewmode .=
'<a class="btnTitle'.($mode ==
'show_day' ?
' btnTitleSelected' :
'').
' reposition" href="'.DOL_URL_ROOT.
'/comm/action/index.php?mode=show_day&year='.
dol_print_date(
$object->datep,
'%Y').
'&month='.
dol_print_date(
$object->datep,
'%m').
'&day='.
dol_print_date(
$object->datep,
'%d').$paramnoactionodate.
'">';
460$viewmode .=
img_picto($langs->trans(
"ViewDay"),
'object_calendarday',
'class="pictoactionview block"');
462$viewmode .=
'<span class="valignmiddle text-plus-circle btnTitle-label hideonsmartphone inline-block width75 divoverflow">'.$langs->trans(
"ViewDay").
'</span></a>';
464$viewmode .=
'<a class="btnTitle'.($mode ==
'show_peruser' ?
' btnTitleSelected' :
'').
' reposition marginrightonly" href="'.DOL_URL_ROOT.
'/comm/action/peruser.php?mode=show_peruser&year='.
dol_print_date(
$object->datep,
'%Y').
'&month='.
dol_print_date(
$object->datep,
'%m').
'&day='.
dol_print_date(
$object->datep,
'%d').$paramnoactionodate.
'">';
466$viewmode .=
img_picto($langs->trans(
"ViewPerUser"),
'object_calendarperuser',
'class="pictoactionview block"');
468$viewmode .=
'<span class="valignmiddle text-plus-circle btnTitle-label hideonsmartphone inline-block width75 divoverflow" title="'.dolPrintHTML($langs->trans(
"ViewPerUser")).
'">'.$langs->trans(
"ViewPerUser").
'</span></a>';
471$parameters = array();
473$reshook = $hookmanager->executeHooks(
'addCalendarView', $parameters, $object, $action);
474if (empty($reshook)) {
475 $viewmode .= $hookmanager->resPrint;
476} elseif ($reshook > 1) {
477 $viewmode = $hookmanager->resPrint;
480$viewmode .=
'</div>';
482$viewmode .=
'<span class="marginrightonly"></span>';
487if ($user->hasRight(
'agenda',
'myactions',
'create') || $user->hasRight(
'agenda',
'allactions',
'create')) {
490 $newparam .=
'&month='.urlencode(str_pad((
string) $month, 2,
"0", STR_PAD_LEFT)).
'&year='.((int) $tmpforcreatebutton[
'year']);
491 if ($begin_h !==
'') {
492 $newparam .=
'&begin_h='.((int) $begin_h);
495 $newparam .=
'&end_h='.((int) $end_h);
497 if ($begin_d !==
'') {
498 $newparam .=
'&begin_d='.((int) $begin_d);
501 $newparam .=
'&end_d='.((int) $end_d);
504 $urltocreateaction = DOL_URL_ROOT.
'/comm/action/card.php?action=create';
505 $urltocreateaction .=
'&apyear='.$tmpforcreatebutton[
'year'].
'&apmonth='.$tmpforcreatebutton[
'mon'].
'&apday='.$tmpforcreatebutton[
'mday'].
'&aphour='.$tmpforcreatebutton[
'hours'].
'&apmin='.$tmpforcreatebutton[
'minutes'];
506 $urltocreateaction .=
'&backtopage='.urlencode($_SERVER[
"PHP_SELF"].($newparam ?
'?'.$newparam :
''));
508 $newcardbutton .=
dolGetButtonTitle($langs->trans(
"AddAction"),
'',
'fa fa-plus-circle', $urltocreateaction);
513print_barre_liste($langs->trans(
"Agenda"), $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, -1,
'object_action', 0, $nav.
'<span class="marginleftonly"></span>'.$newcardbutton,
'', $limit, 1, 0, 1, $viewmode);
519$s .=
"\n".
'<!-- Div to calendars selectors -->'.
"\n";
522$newtitle =
'<div class="nowrap clear inline-block minheight30">';
523$newtitle .=
'<input type="checkbox" id="check_mytasks" name="check_mytasks" checked disabled> '.$langs->trans(
"LocalAgenda").
' ';
524$newtitle .=
'</div>';
530$parameters = array();
531$reshook = $hookmanager->executeHooks(
'addCalendarChoice', $parameters, $object, $action);
532if (empty($reshook)) {
533 $s .= $hookmanager->resPrint;
534} elseif ($reshook > 1) {
535 $s = $hookmanager->resPrint;
538$s .=
"\n".
'<!-- End div to calendars selectors -->'.
"\n";
542print
'<div class="liste_titre liste_titre_bydiv centpercent">';
543print_actions_filter($form, $canedit, $search_status, $year, $month, $day, $showbirthday,
'', $filtert,
'', $pid, $socid, $action, -1, $actioncode, $usergroup,
'', $resourceid, $search_categ_cus);
548$eventarray = array();
556$sql .=
" a.id, a.label,";
559$sql .=
" a.percent,";
560$sql .=
" a.fk_user_author,a.fk_user_action,";
561$sql .=
" a.transparency, a.priority, a.fulldayevent, a.location,";
562$sql .=
" a.fk_soc, a.fk_contact, a.fk_element, a.elementtype, a.fk_project,";
563$sql .=
" ca.code, ca.libelle as type_label, ca.color, ca.type as type_type, ca.picto as type_picto";
564$sql .=
" FROM ".MAIN_DB_PREFIX.
"c_actioncomm as ca, ".MAIN_DB_PREFIX.
"actioncomm as a";
566if ($resourceid > 0) {
567 $sql .=
", ".MAIN_DB_PREFIX.
"element_resources as r";
570if ($filtert > 0 || $usergroup > 0) {
571 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"actioncomm_resources as ar";
572 $sql .=
" ON ar.fk_actioncomm = a.id AND ar.element_type='user'";
574 $sql .=
" AND ar.fk_element = ".((int) $filtert);
576 if ($usergroup > 0) {
577 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"usergroup_user as ugu ON ugu.fk_user = ar.fk_element AND ugu.fk_usergroup = ".((int) $usergroup);
581$sql .=
" WHERE a.fk_action = ca.id";
582$sql .=
" AND a.entity IN (".getEntity(
'agenda').
")";
584if (!empty($actioncode)) {
586 if ($actioncode ==
'AC_NON_AUTO') {
587 $sql .=
" AND ca.type != 'systemauto'";
588 } elseif ($actioncode ==
'AC_ALL_AUTO') {
589 $sql .=
" AND ca.type = 'systemauto'";
591 if ($actioncode ==
'AC_OTH') {
592 $sql .=
" AND ca.type != 'systemauto'";
594 if ($actioncode ==
'AC_OTH_AUTO') {
595 $sql .=
" AND ca.type = 'systemauto'";
599 if ($actioncode ==
'AC_NON_AUTO') {
600 $sql .=
" AND ca.type != 'systemauto'";
601 } elseif ($actioncode ==
'AC_ALL_AUTO') {
602 $sql .=
" AND ca.type = 'systemauto'";
604 if (is_array($actioncode)) {
605 $sql .=
" AND ca.code IN (".$db->sanitize(
"'".implode(
"','", $actioncode).
"'", 1).
")";
607 $sql .=
" AND ca.code IN (".$db->sanitize(
"'".implode(
"','", explode(
',', $actioncode)).
"'", 1).
")";
612if ($resourceid > 0) {
613 $sql .=
" AND r.element_type = 'action' AND r.element_id = a.id AND r.resource_id = ".((int) $resourceid);
616 $sql .=
" AND a.fk_project = ".((int) $pid);
620if (!$user->hasRight(
'societe',
'client',
'voir')) {
621 $search_sale = $user->id;
624if ($search_sale && $search_sale !=
'-1') {
625 if ($search_sale == -2) {
626 $sql .=
" AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = a.fk_soc)";
627 } elseif ($search_sale > 0) {
628 $sql .=
" AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = a.fk_soc AND sc.fk_user = ".((int) $search_sale).
")";
633 $sql .=
" AND a.fk_soc = ".((int) $socid);
636if ($mode ==
'show_day') {
638 $sql .=
" (a.datep BETWEEN '".$db->idate(
dol_mktime(0, 0, 0, $month, $day, $year,
'tzuserrel')).
"'";
639 $sql .=
" AND '".$db->idate(
dol_mktime(23, 59, 59, $month, $day, $year,
'tzuserrel')).
"')";
641 $sql .=
" (a.datep2 BETWEEN '".$db->idate(
dol_mktime(0, 0, 0, $month, $day, $year,
'tzuserrel')).
"'";
642 $sql .=
" AND '".$db->idate(
dol_mktime(23, 59, 59, $month, $day, $year,
'tzuserrel')).
"')";
644 $sql .=
" (a.datep < '".$db->idate(
dol_mktime(0, 0, 0, $month, $day, $year,
'tzuserrel')).
"'";
645 $sql .=
" AND a.datep2 > '".$db->idate(
dol_mktime(23, 59, 59, $month, $day, $year,
'tzuserrel')).
"')";
650 $sql .=
" (a.datep BETWEEN '".$db->idate($firstdaytoshow - (60 * 60 * 24 * 2)).
"'";
651 $sql .=
" AND '".$db->idate($lastdaytoshow + (60 * 60 * 24 * 2)).
"')";
653 $sql .=
" (a.datep2 BETWEEN '".$db->idate($firstdaytoshow - (60 * 60 * 24 * 2)).
"'";
654 $sql .=
" AND '".$db->idate($lastdaytoshow + (60 * 60 * 24 * 2)).
"')";
656 $sql .=
" (a.datep < '".$db->idate($firstdaytoshow - (60 * 60 * 24 * 2)).
"'";
657 $sql .=
" AND a.datep2 > '".$db->idate($lastdaytoshow + (60 * 60 * 24 * 2)).
"')";
661 $sql .=
" AND ca.id = ".((int) $type);
664 $sql .=
" AND a.percent = 0";
666if ($status ===
'na') {
668 $sql .=
" AND a.percent = -1";
670if ($status ==
'50') {
672 $sql .=
" AND (a.percent > 0 AND a.percent < 100)";
674if ($status ==
'done' || $status ==
'100') {
675 $sql .=
" AND (a.percent = 100)";
677if ($status ==
'todo') {
678 $sql .=
" AND (a.percent >= 0 AND a.percent < 100)";
681if ($search_categ_cus != -1) {
682 if ($search_categ_cus == -2) {
683 $sql .=
" AND NOT EXISTS (SELECT ca.fk_actioncomm FROM ".MAIN_DB_PREFIX.
"categorie_actioncomm as ca WHERE ca.fk_actioncomm = a.id)";
684 } elseif ($search_categ_cus > 0) {
685 $sql .=
" AND EXISTS (SELECT ca.fk_actioncomm FROM ".MAIN_DB_PREFIX.
"categorie_actioncomm as ca WHERE ca.fk_actioncomm = a.id AND ca.fk_categorie IN (".$db->sanitize($search_categ_cus).
"))";
689$sql .= $db->order(
"fk_user_action, datep");
692dol_syslog(
"comm/action/peruser.php", LOG_DEBUG);
693$resql = $db->query($sql);
695 $num = $db->num_rows($resql);
699 $obj = $db->fetch_object($resql);
708 $datep = $db->jdate($obj->datep);
709 $datep2 = $db->jdate($obj->datep2);
714 $event->id = $obj->id;
715 $event->datep = $datep;
716 $event->datef = $datep2;
717 $event->type_code = $obj->code;
718 $event->type_color = $obj->color;
719 $event->label = $obj->label;
720 $event->percentage = $obj->percent;
721 $event->authorid = $obj->fk_user_author;
722 $event->userownerid = $obj->fk_user_action;
723 $event->priority = $obj->priority;
724 $event->fulldayevent = $obj->fulldayevent;
725 $event->location = $obj->location;
726 $event->transparency = $obj->transparency;
728 $event->fk_project = $obj->fk_project;
730 $event->socid = $obj->fk_soc;
731 $event->contact_id = $obj->fk_contact;
733 $event->fk_element = $obj->fk_element;
734 $event->elementid = $obj->fk_element;
735 $event->elementtype = $obj->elementtype;
739 $event->date_start_in_calendar = $datep;
740 if ($datep2 !=
'' && $datep2 >= $datep) {
741 $event->date_end_in_calendar = $datep2;
743 $event->date_end_in_calendar = $datep;
749 if ($event->date_end_in_calendar < $firstdaytoshow ||
750 $event->date_start_in_calendar >= $lastdaytoshow) {
755 $event->fetch_userassigned();
757 if ($event->date_start_in_calendar < $firstdaytoshow) {
758 $event->date_start_in_calendar = $firstdaytoshow;
760 if ($event->date_end_in_calendar >= $lastdaytoshow) {
761 $event->date_end_in_calendar = ($lastdaytoshow - 1);
765 $daycursor = $event->date_start_in_calendar;
774 $daykey =
dol_mktime(0, 0, 0, $mois, $jour, $annee,
'gmt');
778 $eventarray[$daykey][] = $event;
781 $daykey += 60 * 60 * 24;
782 if ($daykey > $event->date_end_in_calendar) {
798$cachethirdparties = array();
799$cachecontacts = array();
800$cacheusers = array();
803$color_file = DOL_DOCUMENT_ROOT.
"/theme/".$conf->theme.
"/theme_vars.inc.php";
804if (is_readable($color_file)) {
807if (!is_array($theme_datacolor)) {
808 $theme_datacolor = array(array(120, 130, 150), array(200, 160, 180), array(190, 190, 220));
813$newparam = preg_replace(
'/showbirthday=/i',
'showbirthday_=', $newparam);
814$newparam = preg_replace(
'/mode=show_month&?/i',
'', $newparam);
815$newparam = preg_replace(
'/mode=show_week&?/i',
'', $newparam);
816$newparam = preg_replace(
'/day=[0-9]+&?/i',
'', $newparam);
817$newparam = preg_replace(
'/month=[0-9]+&?/i',
'', $newparam);
818$newparam = preg_replace(
'/year=[0-9]+&?/i',
'', $newparam);
819$newparam = preg_replace(
'/viewweek=[0-9]+&?/i',
'', $newparam);
820$newparam = preg_replace(
'/showbirthday_=/i',
'showbirthday=', $newparam);
821$newparam .=
'&viewweek=1';
823echo
'<input type="hidden" name="actionmove" value="mupdate">';
824echo
'<input type="hidden" name="backtopage" value="'.dol_escape_htmltag($_SERVER[
'PHP_SELF']).
'?'.
dol_escape_htmltag($_SERVER[
'QUERY_STRING']).
'">';
825echo
'<input type="hidden" name="newdate" id="newdate">';
832$currentdaytoshow = $firstdaytoshow;
833echo
'<div class="div-table-responsive">';
836$colorsbytype = array();
838while ($currentdaytoshow < $lastdaytoshow) {
839 echo
'<table class="centpercent noborder nocellnopadd cal_month listwithfilterbefore">';
841 echo
'<tr class="liste_titre">';
842 echo
'<td class="nopaddingtopimp nopaddingbottomimp nowraponsmartphone">';
844 if ($canedit && $mode ==
'show_peruser') {
846 print
'<span class="hideonsmartphone" title="'.$langs->trans(
"VisibleDaysRange").
'">';
847 print
img_picto(
'',
'clock',
'class="fawidth30 inline-block marginleftonly"');
848 print $langs->trans(
"DaysOfWeek").
'</span>';
850 print
'<div class="ui-grid-a inline-block"><div class="ui-block-a nowraponall">';
851 print
'<input type="number" class="short" name="begin_d" value="'.$begin_d.
'" min="1" max="7">';
852 if (empty($conf->dol_use_jmobile)) {
855 print
'</div><div class="ui-block-b">';
857 print
'<input type="number" class="short" name="end_d" value="'.$end_d.
'" min="1" max="7">';
858 print
'</div></div>';
864 if (($i + 1) < $begin_d || ($i + 1) > $end_d) {
868 echo
'<td align="center" colspan="'.($end_h - $begin_h).
'">';
869 echo
'<span class="bold spandayofweek">'.$langs->trans(
"Day".(($i + (isset($conf->global->MAIN_START_WEEK) ? $conf->global->MAIN_START_WEEK : 1)) % 7)).
'</span>';
881 echo
'<tr class="liste_titre">';
885 print
'<span class="hideonsmartphone" title="'.$langs->trans(
"VisibleTimeRange").
'">';
886 print
img_picto(
'',
'clock',
'class="fawidth30 inline-block marginleftonly"');
887 print $langs->trans(
"Hours").
'</span>';
889 print
'<div class="ui-grid-a inline-block"><div class="ui-block-a nowraponall">';
890 print
'<input type="number" class="short" name="begin_h" value="'.$begin_h.
'" min="0" max="23">';
891 if (empty($conf->dol_use_jmobile)) {
894 print
'</div><div class="ui-block-b">';
896 print
'<input type="number" class="short" name="end_h" value="'.$end_h.
'" min="1" max="24">';
897 if (empty($conf->dol_use_jmobile)) {
898 print
' '.$langs->trans(
"H");
900 print
'</div></div>';
905 if (($i + 1) < $begin_d || ($i + 1) > $end_d) {
909 for ($h = $begin_h; $h < $end_h; $h++) {
910 echo
'<td class="center">';
911 print
'<small style="font-family: courier">'.sprintf(
"%02d", $h).
'</small>';
921 $usernames = array();
922 $usernamesid = array();
925 foreach ($eventarray as $daykey => $notused) {
927 foreach ($eventarray[$daykey] as $index => $event) {
928 $event->fetch_userassigned();
929 $listofuserid = $event->userassigned;
930 foreach ($listofuserid as $userid => $tmp) {
931 if (!in_array($userid, $usernamesid)) {
932 $usernamesid[$userid] = $userid;
939 $sql =
"SELECT u.rowid, u.lastname as lastname, u.firstname, u.statut, u.login, u.admin, u.entity";
940 $sql .=
" FROM ".$db->prefix().
"user as u";
941 if (isModEnabled(
'multicompany') &&
getDolGlobalInt(
'MULTICOMPANY_TRANSVERSE_MODE')) {
942 $sql .=
" WHERE u.rowid IN (";
943 $sql .=
" SELECT ug.fk_user FROM ".$db->prefix().
"usergroup_user as ug";
944 $sql .=
" WHERE ug.entity IN (".getEntity(
'usergroup').
")";
945 if ($usergroup > 0) {
946 $sql .=
" AND ug.fk_usergroup = ".((int) $usergroup);
950 if ($usergroup > 0) {
951 $sql .=
" LEFT JOIN ".$db->prefix().
"usergroup_user as ug ON u.rowid = ug.fk_user";
953 $sql .=
" WHERE u.entity IN (".getEntity(
'user').
")";
954 if ($usergroup > 0) {
955 $sql .=
" AND ug.fk_usergroup = ".((int) $usergroup);
958 $sql .=
" AND u.statut = 1";
960 $sql .=
" AND u.rowid = ".((int) $filtert);
962 if ($usergroup > 0) {
963 $sql .=
" AND ug.fk_usergroup = ".((int) $usergroup);
965 if ($user->socid > 0) {
967 $sql .=
" AND u.fk_soc = ".((int) $user->socid);
971 $resql = $db->query($sql);
973 $num = $db->num_rows($resql);
977 $obj = $db->fetch_object($resql);
978 $usernamesid[$obj->rowid] = $obj->rowid;
987 foreach ($usernamesid as
$id) {
988 $tmpuser =
new User($db);
989 $result = $tmpuser->fetch(
$id);
990 $usernames[] = $tmpuser;
994 $labelbytype = array();
995 $sql =
"SELECT code, color, libelle as label FROM ".MAIN_DB_PREFIX.
"c_actioncomm ORDER BY position";
996 $resql = $db->query($sql);
997 while ($obj = $db->fetch_object($resql)) {
998 $colorsbytype[$obj->code] = $obj->color;
999 $labelbytype[$obj->code] = $obj->label;
1007 foreach ($usernames as $username) {
1013 echo
'<td class="tdoverflowmax100 cal_current_month cal_peruserviewname'.($var ?
' cal_impair' :
'').
'">';
1014 print
'<span class="paddingrightimp">';
1015 print $username->getNomUrl(-1,
'', 0, 0, 20, 1,
'',
'paddingleft');
1022 for ($iter_day = 0; $iter_day < 8; $iter_day++) {
1023 if (($i + 1) < $begin_d || ($i + 1) > $end_d) {
1036 $style =
'cal_current_month';
1037 if ($iter_day == 6) {
1038 $style .=
' cal_other_month';
1041 if ($todayarray[
'mday'] == $tmpday && $todayarray[
'mon'] == $tmpmonth && $todayarray[
'year'] == $tmpyear) {
1045 $style =
'cal_today_peruser';
1048 show_day_events2($username, $tmpday, $tmpmonth, $tmpyear, 0, $style, $eventarray, 0, $maxnbofchar, $newparam, 1, 300, $showheader, $colorsbytype, $var);
1053 $showheader =
false;
1065 $langs->load(
"commercial");
1066 print
'<br>'.$langs->trans(
"Legend").
': <br>';
1067 foreach ($colorsbytype as $code => $color) {
1069 print
'<div style="float: left; padding: 2px; margin-right: 6px;"><div style="'.($color ?
'background: #'.$color.
';' :
'').
'width:16px; float: left; margin-right: 4px;"> </div>';
1070 print $langs->trans(
"Action".$code) !=
"Action".$code ? $langs->trans(
"Action".$code) : $labelbytype[$code];
1076 print
'<div style="float: left; padding: 2px; margin-right: 6px;"><div class="peruser_busy" style="width:16px; float: left; margin-right: 4px;"> </div>';
1077 print $langs->trans(
"Other");
1086print
"\n".
'</form>';
1090print
'<script type="text/javascript">
1091jQuery(document).ready(function() {
1092 jQuery(".onclickopenref").click(function() {
1093 console.log("We click on a class onclickopenref");
1095 var ref=$(this).attr(\'ref\');
1096 var res = ref.split("_");
1097 var userid = res[1];
1104 if (ids == \'none\') /* No event */
1106 /* alert(\'no event\'); */
1107 url = "'.DOL_URL_ROOT.
'/comm/action/card.php?action=create&assignedtouser="+userid+"&datep="+year+month+day+hour+min+"00&backtopage='.urlencode($_SERVER[
"PHP_SELF"].
'?year='.$year.
'&month='.$month.
'&day='.$day.($begin_h !==
'' ?
'&begin_h='.$begin_h :
'').($end_h !==
'' ?
'&end_h='.$end_h :
'').($begin_d !==
'' ?
'&begin_d='.$begin_d :
'').($end_d !==
'' ?
'&end_d='.$end_d :
'')).
'"
1108 window.location.href = url;
1110 else if (ids.indexOf(",") > -1) /* There is several events */
1112 /* alert(\'several events\'); */
1113 url = "'.DOL_URL_ROOT.
'/comm/action/list.php?mode=show_list&search_actioncode="+jQuery("#search_actioncode").val()+"&search_status="+jQuery("#selectsearch_status").val()+"&filtert="+userid+"&dateselectyear="+year+"&dateselectmonth="+month+"&dateselectday="+day;
1114 window.location.href = url;
1116 else /* One event */
1118 /* alert(\'one event\'); */
1119 url = "'.DOL_URL_ROOT.
'/comm/action/card.php?action=view&id="+ids
1120 window.location.href = url;
1153function show_day_events2($username, $day, $month, $year, $monthshown, $style, &$eventarray, $maxprint = 0, $maxnbofchar = 16, $newparam =
'', $showinfo = 0, $minheight = 60, $showheader =
false, $colorsbytype = array(), $var =
false)
1156 global $user, $conf, $langs, $hookmanager, $action;
1157 global $filter, $filtert, $status, $actioncode;
1158 global $theme_datacolor;
1159 global $cachethirdparties, $cachecontacts, $cacheusers, $cacheprojects, $colorindexused;
1160 global $begin_h, $end_h;
1171 $numicals = array();
1174 $colorindexused[$user->id] = 0;
1175 $nextindextouse = count($colorindexused);
1182 foreach ($eventarray as $daykey => $notused) {
1189 if ($day == $jour && (
int) $month == (
int) $mois && $year == $annee) {
1193 foreach ($eventarray[$daykey] as $index => $event) {
1197 $keysofuserassigned = array_keys($event->userassigned);
1198 $ponct = ($event->date_start_in_calendar == $event->date_end_in_calendar);
1200 if (!in_array($username->id, $keysofuserassigned)) {
1205 $parameters = array();
1206 $reshook = $hookmanager->executeHooks(
'formatEvent', $parameters, $event, $action);
1215 if (in_array($user->id, $keysofuserassigned)) {
1216 $cssclass =
'family_mytasks';
1218 if (empty($cacheusers[$event->userownerid])) {
1219 $newuser =
new User($db);
1220 $newuser->fetch($event->userownerid);
1221 $cacheusers[$event->userownerid] = $newuser;
1226 if (!empty($cacheusers[$event->userownerid]->color)) {
1227 $color = $cacheusers[$event->userownerid]->color;
1231 $color = $event->type_color;
1233 } elseif ($event->type_code ==
'ICALEVENT') {
1235 if (!empty($event->icalname)) {
1242 $color = $event->icalcolor;
1243 $cssclass = (!empty($event->icalname) ?
'family_ext'.md5($event->icalname) :
'family_other unsortable');
1244 } elseif ($event->type_code ==
'BIRTHDAY') {
1247 $cssclass =
'family_birthday unsortable';
1248 $color = sprintf(
"%02x%02x%02x", $theme_datacolor[$colorindex][0], $theme_datacolor[$colorindex][1], $theme_datacolor[$colorindex][2]);
1251 $color = ($event->icalcolor ? $event->icalcolor : -1);
1252 $cssclass = (!empty($event->icalname) ?
'family_ext'.md5($event->icalname) :
'family_other');
1254 if (empty($cacheusers[$event->userownerid])) {
1255 $newuser =
new User($db);
1256 $newuser->fetch($event->userownerid);
1257 $cacheusers[$event->userownerid] = $newuser;
1262 if (!empty($cacheusers[$event->userownerid]->color)) {
1263 $color = $cacheusers[$event->userownerid]->color;
1267 $color = $event->type_color;
1273 $idusertouse = ($event->userownerid ? $event->userownerid : 0);
1274 if (isset($colorindexused[$idusertouse])) {
1275 $colorindex = $colorindexused[$idusertouse];
1277 $colorindex = $nextindextouse;
1278 $colorindexused[$idusertouse] = $colorindex;
1279 if (!empty($theme_datacolor[$nextindextouse + 1])) {
1284 $color = sprintf(
"%02x%02x%02x", $theme_datacolor[$colorindex][0], $theme_datacolor[$colorindex][1], $theme_datacolor[$colorindex][2]);
1288 for ($h = $begin_h; $h < $end_h; $h++) {
1291 if (empty($event->fulldayevent)) {
1292 $a =
dol_mktime((
int) $h, 0, 0, $month, $day, $year,
'tzuserrel', 0);
1293 $b =
dol_mktime((
int) $h, 15, 0, $month, $day, $year,
'tzuserrel', 0);
1294 $b1 =
dol_mktime((
int) $h, 30, 0, $month, $day, $year,
'tzuserrel', 0);
1295 $b2 =
dol_mktime((
int) $h, 45, 0, $month, $day, $year,
'tzuserrel', 0);
1296 $c =
dol_mktime((
int) $h + 1, 0, 0, $month, $day, $year,
'tzuserrel', 0);
1298 $dateendtouse = $event->date_end_in_calendar;
1299 if ($dateendtouse == $event->date_start_in_calendar) {
1305 if ($event->date_start_in_calendar < $b && $dateendtouse > $a) {
1306 $busy = $event->transparency;
1307 $cases1[$h][$event->id][
'busy'] = $busy;
1308 $cases1[$h][$event->id][
'string'] =
dol_print_date($event->date_start_in_calendar,
'dayhour',
'tzuserrel');
1309 if ($event->date_end_in_calendar && $event->date_end_in_calendar != $event->date_start_in_calendar) {
1310 $tmpa =
dol_getdate($event->date_start_in_calendar,
true);
1311 $tmpb =
dol_getdate($event->date_end_in_calendar,
true);
1312 if ($tmpa[
'mday'] == $tmpb[
'mday'] && $tmpa[
'mon'] == $tmpb[
'mon'] && $tmpa[
'year'] == $tmpb[
'year']) {
1313 $cases1[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'hour',
'tzuserrel');
1315 $cases1[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'dayhour',
'tzuserrel');
1318 if ($event->label) {
1319 $cases1[$h][$event->id][
'string'] .=
' - '.$event->label;
1321 $cases1[$h][$event->id][
'typecode'] = $event->type_code;
1322 $cases1[$h][$event->id][
'color'] = $color;
1323 if ($event->fk_project > 0) {
1324 if (empty($cacheprojects[$event->fk_project])) {
1326 $tmpproj->fetch($event->fk_project);
1327 $cacheprojects[$event->fk_project] = $tmpproj;
1329 $cases1[$h][$event->id][
'string'] .=
', '.$langs->trans(
"Project").
': '.$cacheprojects[$event->fk_project]->ref.
' - '.$cacheprojects[$event->fk_project]->title;
1331 if ($event->socid > 0) {
1332 if (empty($cachethirdparties[$event->socid])) {
1333 $tmpthirdparty =
new Societe($db);
1334 $tmpthirdparty->fetch($event->socid);
1335 $cachethirdparties[$event->socid] = $tmpthirdparty;
1337 $cases1[$h][$event->id][
'string'] .=
', '.$cachethirdparties[$event->socid]->name;
1339 if ($event->contact_id > 0) {
1340 if (empty($cachecontacts[$event->contact_id])) {
1341 $tmpcontact =
new Contact($db);
1342 $tmpcontact->fetch($event->contact_id);
1343 $cachecontacts[$event->contact_id] = $tmpcontact;
1345 $cases1[$h][$event->id][
'string'] .=
', '.$cachecontacts[$event->contact_id]->getFullName($langs);
1348 if ($event->date_start_in_calendar < $b1 && $dateendtouse > $b) {
1349 $busy = $event->transparency;
1350 $cases2[$h][$event->id][
'busy'] = $busy;
1351 $cases2[$h][$event->id][
'string'] =
dol_print_date($event->date_start_in_calendar,
'dayhour',
'tzuserrel');
1352 if ($event->date_end_in_calendar && $event->date_end_in_calendar != $event->date_start_in_calendar) {
1353 $tmpa =
dol_getdate($event->date_start_in_calendar,
true);
1354 $tmpb =
dol_getdate($event->date_end_in_calendar,
true);
1355 if ($tmpa[
'mday'] == $tmpb[
'mday'] && $tmpa[
'mon'] == $tmpb[
'mon'] && $tmpa[
'year'] == $tmpb[
'year']) {
1356 $cases2[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'hour',
'tzuserrel');
1358 $cases2[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'dayhour',
'tzuserrel');
1361 if ($event->label) {
1362 $cases2[$h][$event->id][
'string'] .=
' - '.$event->label;
1364 $cases2[$h][$event->id][
'typecode'] = $event->type_code;
1365 $cases2[$h][$event->id][
'color'] = $color;
1366 if ($event->fk_project > 0) {
1367 if (empty($cacheprojects[$event->fk_project])) {
1369 $tmpproj->fetch($event->fk_project);
1370 $cacheprojects[$event->fk_project] = $tmpproj;
1372 $cases2[$h][$event->id][
'string'] .=
', '.$langs->trans(
"Project").
': '.$cacheprojects[$event->fk_project]->ref.
' - '.$cacheprojects[$event->fk_project]->title;
1374 if ($event->socid > 0) {
1375 if (empty($cachethirdparties[$event->socid])) {
1376 $tmpthirdparty =
new Societe($db);
1377 $tmpthirdparty->fetch($event->socid);
1378 $cachethirdparties[$event->socid] = $tmpthirdparty;
1380 $cases2[$h][$event->id][
'string'] .=
', '.$cachethirdparties[$event->socid]->name;
1382 if ($event->contact_id > 0) {
1383 if (empty($cachecontacts[$event->contact_id])) {
1384 $tmpcontact =
new Contact($db);
1385 $tmpcontact->fetch($event->contact_id);
1386 $cachecontacts[$event->contact_id] = $tmpcontact;
1388 $cases2[$h][$event->id][
'string'] .=
', '.$cachecontacts[$event->contact_id]->getFullName($langs);
1391 if ($event->date_start_in_calendar < $b2 && $dateendtouse > $b1) {
1392 $busy = $event->transparency;
1393 $cases3[$h][$event->id][
'busy'] = $busy;
1394 $cases3[$h][$event->id][
'string'] =
dol_print_date($event->date_start_in_calendar,
'dayhour',
'tzuserrel');
1395 if ($event->date_end_in_calendar && $event->date_end_in_calendar != $event->date_start_in_calendar) {
1396 $tmpa =
dol_getdate($event->date_start_in_calendar,
true);
1397 $tmpb =
dol_getdate($event->date_end_in_calendar,
true);
1398 if ($tmpa[
'mday'] == $tmpb[
'mday'] && $tmpa[
'mon'] == $tmpb[
'mon'] && $tmpa[
'year'] == $tmpb[
'year']) {
1399 $cases3[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'hour',
'tzuserrel');
1401 $cases3[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'dayhour',
'tzuserrel');
1404 if ($event->label) {
1405 $cases3[$h][$event->id][
'string'] .=
' - '.$event->label;
1407 $cases3[$h][$event->id][
'typecode'] = $event->type_code;
1408 $cases3[$h][$event->id][
'color'] = $color;
1409 if ($event->fk_project > 0) {
1410 if (empty($cacheprojects[$event->fk_project])) {
1412 $tmpproj->fetch($event->fk_project);
1413 $cacheprojects[$event->fk_project] = $tmpproj;
1415 $cases3[$h][$event->id][
'string'] .=
', '.$langs->trans(
"Project").
': '.$cacheprojects[$event->fk_project]->ref.
' - '.$cacheprojects[$event->fk_project]->title;
1417 if ($event->socid > 0) {
1418 if (empty($cachethirdparties[$event->socid])) {
1419 $tmpthirdparty =
new Societe($db);
1420 $tmpthirdparty->fetch($event->socid);
1421 $cachethirdparties[$event->socid] = $tmpthirdparty;
1423 $cases3[$h][$event->id][
'string'] .=
', '.$cachethirdparties[$event->socid]->name;
1425 if ($event->contact_id > 0) {
1426 if (empty($cachecontacts[$event->contact_id])) {
1427 $tmpcontact =
new Contact($db);
1428 $tmpcontact->fetch($event->contact_id);
1429 $cachecontacts[$event->contact_id] = $tmpcontact;
1431 $cases2[$h][$event->id][
'string'] .=
', '.$cachecontacts[$event->contact_id]->getFullName($langs);
1434 if ($event->date_start_in_calendar < $c && $dateendtouse > $b2) {
1435 $busy = $event->transparency;
1436 $cases4[$h][$event->id][
'busy'] = $busy;
1437 $cases4[$h][$event->id][
'string'] =
dol_print_date($event->date_start_in_calendar,
'dayhour',
'tzuserrel');
1438 if ($event->date_end_in_calendar && $event->date_end_in_calendar != $event->date_start_in_calendar) {
1439 $tmpa =
dol_getdate($event->date_start_in_calendar,
true);
1440 $tmpb =
dol_getdate($event->date_end_in_calendar,
true);
1441 if ($tmpa[
'mday'] == $tmpb[
'mday'] && $tmpa[
'mon'] == $tmpb[
'mon'] && $tmpa[
'year'] == $tmpb[
'year']) {
1442 $cases4[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'hour',
'tzuserrel');
1444 $cases4[$h][$event->id][
'string'] .=
'-'.dol_print_date($event->date_end_in_calendar,
'dayhour',
'tzuserrel');
1447 if ($event->label) {
1448 $cases4[$h][$event->id][
'string'] .=
' - '.$event->label;
1450 $cases4[$h][$event->id][
'typecode'] = $event->type_code;
1451 $cases4[$h][$event->id][
'color'] = $color;
1452 if ($event->fk_project > 0) {
1453 if (empty($cacheprojects[$event->fk_project])) {
1455 $tmpproj->fetch($event->fk_project);
1456 $cacheprojects[$event->fk_project] = $tmpproj;
1458 $cases4[$h][$event->id][
'string'] .=
', '.$langs->trans(
"Project").
': '.$cacheprojects[$event->fk_project]->ref.
' - '.$cacheprojects[$event->fk_project]->title;
1460 if ($event->socid > 0) {
1461 if (empty($cachethirdparties[$event->socid])) {
1462 $tmpthirdparty =
new Societe($db);
1463 $tmpthirdparty->fetch($event->socid);
1464 $cachethirdparties[$event->socid] = $tmpthirdparty;
1466 $cases4[$h][$event->id][
'string'] .=
', '.$cachethirdparties[$event->socid]->name;
1468 if ($event->contact_id > 0) {
1469 if (empty($cachecontacts[$event->contact_id])) {
1470 $tmpcontact =
new Contact($db);
1471 $tmpcontact->fetch($event->contact_id);
1472 $cachecontacts[$event->contact_id] = $tmpcontact;
1474 $cases4[$h][$event->id][
'string'] .=
', '.$cachecontacts[$event->contact_id]->getFullName($langs);
1478 $busy = $event->transparency;
1479 $cases1[$h][$event->id][
'busy'] = $busy;
1480 $cases2[$h][$event->id][
'busy'] = $busy;
1481 $cases3[$h][$event->id][
'busy'] = $busy;
1482 $cases4[$h][$event->id][
'busy'] = $busy;
1483 $cases1[$h][$event->id][
'string'] = $event->label;
1484 $cases2[$h][$event->id][
'string'] = $event->label;
1485 $cases3[$h][$event->id][
'string'] = $event->label;
1486 $cases4[$h][$event->id][
'string'] = $event->label;
1487 $cases1[$h][$event->id][
'typecode'] = $event->type_code;
1488 $cases2[$h][$event->id][
'typecode'] = $event->type_code;
1489 $cases3[$h][$event->id][
'typecode'] = $event->type_code;
1490 $cases4[$h][$event->id][
'typecode'] = $event->type_code;
1491 $cases1[$h][$event->id][
'color'] = $color;
1492 $cases2[$h][$event->id][
'color'] = $color;
1493 $cases3[$h][$event->id][
'color'] = $color;
1494 $cases4[$h][$event->id][
'color'] = $color;
1505 for ($h = $begin_h; $h < $end_h; $h++) {
1514 $string1 =
' ';
1515 $string2 =
' ';
1516 $string3 =
' ';
1517 $string4 =
' ';
1522 if (isset($cases1[$h]) && $cases1[$h] !=
'') {
1524 if (count($cases1[$h]) > 1) {
1525 $title1 .= count($cases1[$h]).
' '.(count($cases1[$h]) == 1 ? $langs->trans(
"Event") : $langs->trans(
"Events"));
1529 $style1 =
'peruser_notbusy';
1531 $style1 =
'peruser_busy';
1533 foreach ($cases1[$h] as
$id => $ev) {
1535 $style1 =
'peruser_busy';
1539 if (isset($cases2[$h]) && $cases2[$h] !=
'') {
1541 if (count($cases2[$h]) > 1) {
1542 $title2 .= count($cases2[$h]).
' '.(count($cases2[$h]) == 1 ? $langs->trans(
"Event") : $langs->trans(
"Events"));
1546 $style2 =
'peruser_notbusy';
1548 $style2 =
'peruser_busy';
1550 foreach ($cases2[$h] as
$id => $ev) {
1552 $style2 =
'peruser_busy';
1556 if (isset($cases3[$h]) && $cases3[$h] !=
'') {
1558 if (count($cases3[$h]) > 1) {
1559 $title3 .= count($cases3[$h]).
' '.(count($cases3[$h]) == 1 ? $langs->trans(
"Event") : $langs->trans(
"Events"));
1563 $style3 =
'peruser_notbusy';
1565 $style3 =
'peruser_busy';
1567 foreach ($cases3[$h] as
$id => $ev) {
1569 $style3 =
'peruser_busy';
1573 if (isset($cases4[$h]) && $cases4[$h] !=
'') {
1575 if (count($cases4[$h]) > 1) {
1576 $title4 .= count($cases4[$h]).
' '.(count($cases4[$h]) == 1 ? $langs->trans(
"Event") : $langs->trans(
"Events"));
1580 $style4 =
'peruser_notbusy';
1582 $style4 =
'peruser_busy';
1584 foreach ($cases4[$h] as
$id => $ev) {
1586 $style4 =
'peruser_busy';
1595 if (!empty($cases1[$h]) && is_array($cases1[$h]) && count($cases1[$h]) && array_keys($cases1[$h])) {
1596 $ids1 = implode(
', ', array_keys($cases1[$h]));
1598 if (!empty($cases2[$h]) && is_array($cases2[$h]) && count($cases2[$h]) && array_keys($cases2[$h])) {
1599 $ids2 = implode(
', ', array_keys($cases2[$h]));
1601 if (!empty($cases3[$h]) && is_array($cases3[$h]) && count($cases3[$h]) && array_keys($cases3[$h])) {
1602 $ids3 = implode(
',', array_keys($cases3[$h]));
1604 if (!empty($cases4[$h]) && is_array($cases4[$h]) && count($cases4[$h]) && array_keys($cases4[$h])) {
1605 $ids4 = implode(
',', array_keys($cases4[$h]));
1608 if ($h == $begin_h) {
1609 echo
'<td class="'.$style.
'_peruserleft cal_peruser'.($var ?
' cal_impair '.$style.
'_impair' :
'').
'">';
1611 echo
'<td class="'.$style.
' cal_peruser'.($var ?
' cal_impair '.$style.
'_impair' :
'').
'">';
1614 if (!empty($cases1[$h]) && is_array($cases1[$h]) && count($cases1[$h]) == 1) {
1615 $output = array_slice($cases1[$h], 0, 1);
1616 $title1 = $langs->trans(
"Ref").
' '.$ids1.($title1 ?
' - '.$title1 :
'');
1617 if ($output[0][
'string']) {
1618 $title1 .= ($title1 ?
' - ' :
'').$output[0][
'string'];
1620 if ($output[0][
'color']) {
1621 $color1 = $output[0][
'color'];
1623 } elseif (!empty($cases1[$h]) && is_array($cases1[$h]) && count($cases1[$h]) > 1) {
1624 $title1 = $langs->trans(
"Ref").
' '.$ids1.($title1 ?
' - '.$title1 :
'');
1629 if (!empty($cases2[$h]) && is_array($cases2[$h]) && count($cases2[$h]) == 1) {
1630 $output = array_slice($cases2[$h], 0, 1);
1631 $title2 = $langs->trans(
"Ref").
' '.$ids2.($title2 ?
' - '.$title2 :
'');
1632 if ($output[0][
'string']) {
1633 $title2 .= ($title2 ?
' - ' :
'').$output[0][
'string'];
1635 if ($output[0][
'color']) {
1636 $color2 = $output[0][
'color'];
1638 } elseif (!empty($cases2[$h]) && is_array($cases2[$h]) && count($cases2[$h]) > 1) {
1639 $title2 = $langs->trans(
"Ref").
' '.$ids2.($title2 ?
' - '.$title2 :
'');
1644 if (!empty($cases3[$h]) && is_array($cases3[$h]) && count($cases3[$h]) == 1) {
1645 $output = array_slice($cases3[$h], 0, 1);
1646 $title3 = $langs->trans(
"Ref").
' '.$ids3.($title3 ?
' - '.$title3 :
'');
1647 if ($output[0][
'string']) {
1648 $title3 .= ($title3 ?
' - ' :
'').$output[0][
'string'];
1650 if ($output[0][
'color']) {
1651 $color3 = $output[0][
'color'];
1653 } elseif (!empty($cases3[$h]) && is_array($cases3[$h]) && count($cases3[$h]) > 1) {
1654 $title3 = $langs->trans(
"Ref").
' '.$ids3.($title3 ?
' - '.$title3 :
'');
1659 if (!empty($cases4[$h]) && is_array($cases4[$h]) && count($cases4[$h]) == 1) {
1660 $output = array_slice($cases4[$h], 0, 1);
1661 $title4 = $langs->trans(
"Ref").
' '.$ids3.($title4 ?
' - '.$title4 :
'');
1662 if ($output[0][
'string']) {
1663 $title4 .= ($title4 ?
' - ' :
'').$output[0][
'string'];
1665 if ($output[0][
'color']) {
1666 $color4 = $output[0][
'color'];
1668 } elseif (!empty($cases4[$h]) && is_array($cases4[$h]) && count($cases4[$h]) > 1) {
1669 $title4 = $langs->trans(
"Ref").
' '.$ids4.($title4 ?
' - '.$title4 :
'');
1673 print
'<table class="nobordernopadding case centpercent">';
1676 if ($style1 ==
'peruser_notbusy') {
1677 print
'style="border: 1px solid #'.($color1 ? $color1 :
"888").
' !important" ';
1678 } elseif ($color1) {
1679 print($color1 ?
'style="background: #'.$color1.
';"' :
'');
1682 print($style1 ? $style1.
' ' :
'');
1683 print
'onclickopenref center'.($title2 ?
' classfortooltip' :
'').($title1 ?
' cursorpointer' :
'').
'" ref="ref_'.$username->id.
'_'.sprintf(
"%04d", $year).
'_'.sprintf(
"%02d", $month).
'_'.sprintf(
"%02d", $day).
'_'.sprintf(
"%02d", $h).
'_00_'.($ids1 ? $ids1 :
'none').
'"'.($title1 ?
' title="'.$title1.
'"' :
'').
'>';
1688 if ($style2 ==
'peruser_notbusy') {
1689 print
'style="border: 1px solid #'.($color2 ? $color2 :
"888").
' !important" ';
1690 } elseif ($color2) {
1691 print($color2 ?
'style="background: #'.$color2.
';"' :
'');
1694 print($style2 ? $style2.
' ' :
'');
1695 print
'onclickopenref center'.($title2 ?
' classfortooltip' :
'').($title1 ?
' cursorpointer' :
'').
'" ref="ref_'.$username->id.
'_'.sprintf(
"%04d", $year).
'_'.sprintf(
"%02d", $month).
'_'.sprintf(
"%02d", $day).
'_'.sprintf(
"%02d", $h).
'_15_'.($ids2 ? $ids2 :
'none').
'"'.($title2 ?
' title="'.$title2.
'"' :
'').
'>';
1700 if ($style3 ==
'peruser_notbusy') {
1701 print
'style="border: 1px solid #'.($color3 ? $color3 :
"888").
' !important" ';
1702 } elseif ($color3) {
1703 print($color3 ?
'style="background: #'.$color3.
';"' :
'');
1706 print($style3 ? $style3.
' ' :
'');
1707 print
'onclickopenref center'.($title2 ?
' classfortooltip' :
'').($title3 ?
' cursorpointer' :
'').
'" ref="ref_'.$username->id.
'_'.sprintf(
"%04d", $year).
'_'.sprintf(
"%02d", $month).
'_'.sprintf(
"%02d", $day).
'_'.sprintf(
"%02d", $h).
'_30_'.($ids3 ? $ids3 :
'none').
'"'.($title3 ?
' title="'.$title3.
'"' :
'').
'>';
1712 if ($style4 ==
'peruser_notbusy') {
1713 print
'style="border: 1px solid #'.($color4 ? $color4 :
"888").
' !important" ';
1714 } elseif ($color4) {
1715 print($color4 ?
'style="background: #'.$color4.
';"' :
'');
1718 print($style4 ? $style4.
' ' :
'');
1719 print
'onclickopenref center'.($title3 ?
' classfortooltip' :
'').($title4 ?
' cursorpointer' :
'').
'" ref="ref_'.$username->id.
'_'.sprintf(
"%04d", $year).
'_'.sprintf(
"%02d", $month).
'_'.sprintf(
"%02d", $day).
'_'.sprintf(
"%02d", $h).
'_45_'.($ids4 ? $ids4 :
'none').
'"'.($title4 ?
' title="'.$title4.
'"' :
'').
'>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
print_actions_filter( $form, $canedit, $status, $year, $month, $day, $showbirthday, $filtera, $filtert, $filtered, $pid, $socid, $action, $showextcals=array(), $actioncode='', $usergroupid=0, $excludetype='', $resourceid=0, $search_categ_cus=0)
Show filter form in agenda view.
calendars_prepare_head($param)
Define head array for tabs of agenda setup pages.
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 to manage agenda events (actions)
Class to manage projects.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
dol_get_next_week($day, $week, $month, $year)
Return next week.
dol_get_first_day_week($day, $month, $year, $gm=false)
Return first day of week for a date.
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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_string_nospecial($str, $newstr='_', $badcharstoreplace='', $badcharstoremove='', $keepspaces=0)
Clean a string from all punctuation characters to use it as a ref or login.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.