123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- <?php
- /* Copyright (C) 2008-2010 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
- * Copyright (C) 2011 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 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 <http://www.gnu.org/licenses/>.
- * or see http://www.gnu.org/
- */
- /**
- * \file htdocs/core/lib/agenda.lib.php
- * \brief Set of function for the agenda module
- */
- /**
- * Show filter form in agenda view
- *
- * @param Object $form Form object
- * @param int $canedit Can edit filter fields
- * @param int $status Status
- * @param int $year Year
- * @param int $month Month
- * @param int $day Day
- * @param int $showbirthday Show birthday
- * @param string $filtera Filter on create by user
- * @param string $filtert Filter on assigned to user
- * @param string $filterd Filter of done by user
- * @param int $pid Product id
- * @param int $socid Third party id
- * @param array $showextcals Array with list of external calendars, or -1 to show no legend
- * @param string $actioncode Preselected value of actioncode for filter on type
- * @return void
- */
- function print_actions_filter($form, $canedit, $status, $year, $month, $day, $showbirthday, $filtera, $filtert, $filterd, $pid, $socid, $showextcals=array(), $actioncode='') {
- global $conf, $user, $langs, $db;
- // Filters
- print '<form name="listactionsfilter" class="listactionsfilter" action="' . $_SERVER["PHP_SELF"] . '" method="POST">';
- print '<input type="hidden" name="token" value="' . $_SESSION ['newtoken'] . '">';
- print '<input type="hidden" name="status" value="' . $status . '">';
- print '<input type="hidden" name="year" value="' . $year . '">';
- print '<input type="hidden" name="month" value="' . $month . '">';
- print '<input type="hidden" name="day" value="' . $day . '">';
- print '<input type="hidden" name="showbirthday" value="' . $showbirthday . '">';
- print '<table class="nobordernopadding" width="100%">';
- print '<tr><td class="nowrap">';
- print '<table class="nobordernopadding">';
- if ($canedit)
- {
- print '<tr>';
- print '<td class="nowrap">';
- print $langs->trans("ActionsAskedBy");
- print ' </td><td class="nowrap maxwidthonsmartphone">';
- print $form->select_dolusers($filtera, 'userasked', 1, '', ! $canedit);
- print '</td>';
- print '</tr>';
- print '<tr>';
- print '<td class="nowrap">';
- print $langs->trans("or") . ' ' . $langs->trans("ActionsToDoBy");
- print ' </td><td class="nowrap maxwidthonsmartphone">';
- print $form->select_dolusers($filtert, 'usertodo', 1, '', ! $canedit);
- print '</td></tr>';
- print '<tr>';
- print '<td class="nowrap">';
- print $langs->trans("or") . ' ' . $langs->trans("ActionsDoneBy");
- print ' </td><td class="nowrap maxwidthonsmartphone">';
- print $form->select_dolusers($filterd, 'userdone', 1, '', ! $canedit);
- print '</td></tr>';
- include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php';
- $formactions=new FormActions($db);
- print '<tr>';
- print '<td class="nowrap">';
- print $langs->trans("Type");
- print ' </td><td class="nowrap maxwidthonsmartphone">';
- print $formactions->select_type_actions($actioncode, "actioncode", '', (empty($conf->global->AGENDA_USE_EVENT_TYPE) ? 1 : 0));
- print '</td></tr>';
- }
- if (! empty($conf->projet->enabled) && $user->rights->projet->lire)
- {
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
- $formproject=new FormProjets($db);
- print '<tr>';
- print '<td class="nowrap">';
- print $langs->trans("Project").' ';
- print '</td><td class="nowrap maxwidthonsmartphone">';
- $formproject->select_projects($socid?$socid:-1, $pid, 'projectid', 64);
- print '</td></tr>';
- }
- print '</table>';
- print '</td>';
- // Buttons
- print '<td align="center" valign="middle" class="nowrap">';
- print img_picto($langs->trans("ViewCal"), 'object_calendar', 'class="hideonsmartphone"') . ' <input type="submit" class="button" style="min-width:120px" name="viewcal" value="' . $langs->trans("ViewCal") . '">';
- print '<br>';
- print img_picto($langs->trans("ViewWeek"), 'object_calendarweek', 'class="hideonsmartphone"') . ' <input type="submit" class="button" style="min-width:120px" name="viewweek" value="' . $langs->trans("ViewWeek") . '">';
- print '<br>';
- print img_picto($langs->trans("ViewDay"), 'object_calendarday', 'class="hideonsmartphone"') . ' <input type="submit" class="button" style="min-width:120px" name="viewday" value="' . $langs->trans("ViewDay") . '">';
- print '<br>';
- print img_picto($langs->trans("ViewList"), 'object_list', 'class="hideonsmartphone"') . ' <input type="submit" class="button" style="min-width:120px" name="viewlist" value="' . $langs->trans("ViewList") . '">';
- print '</td>';
- // Legend
- if ($conf->use_javascript_ajax && is_array($showextcals))
- {
- print '<td align="center" valign="middle" class="nowrap">';
- print '<script type="text/javascript">' . "\n";
- print 'jQuery(document).ready(function () {' . "\n";
- print 'jQuery("#check_mytasks").click(function() { jQuery(".family_mytasks").toggle(); jQuery(".family_other").toggle(); });' . "\n";
- print 'jQuery("#check_birthday").click(function() { jQuery(".family_birthday").toggle(); });' . "\n";
- print 'jQuery(".family_birthday").toggle();' . "\n";
- print '});' . "\n";
- print '</script>' . "\n";
- print '<table>';
- if (! empty($conf->global->MAIN_JS_SWITCH_AGENDA))
- {
- if (count($showextcals) > 0)
- {
- print '<tr><td><input type="checkbox" id="check_mytasks" name="check_mytasks" checked="true" disabled="disabled"> ' . $langs->trans("LocalAgenda") . '</td></tr>';
- foreach ($showextcals as $val)
- {
- $htmlname = dol_string_nospecial($val['name']);
- print '<tr><td>';
- print '<script type="text/javascript">' . "\n";
- print 'jQuery(document).ready(function () {' . "\n";
- print 'jQuery("#check_' . $htmlname . '").click(function() { jQuery(".family_' . $htmlname . '").toggle(); });' . "\n";
- print '});' . "\n";
- print '</script>' . "\n";
- print '<input type="checkbox" id="check_' . $htmlname . '" name="check_' . $htmlname . '" checked="true"> ' . $val ['name'];
- print '</td></tr>';
- }
- }
- }
- print '<tr><td>'.$langs->trans("AgendaShowBirthdayEvents").' <input type="checkbox" id="check_birthday" name="check_birthday"></td></tr>';
- print '</table>';
- print '</td>';
- }
- print '</tr>';
- print '</table>';
- print '</form>';
- }
- /**
- * Show actions to do array
- *
- * @param int $max Max nb of records
- * @return void
- */
- function show_array_actions_to_do($max=5)
- {
- global $langs, $conf, $user, $db, $bc, $socid;
- $now=dol_now();
- include_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
- include_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php';
- $sql = "SELECT a.id, a.label, a.datep as dp, a.datep2 as dp2, a.fk_user_author, a.percent,";
- $sql.= " c.code, c.libelle,";
- $sql.= " s.nom as sname, s.rowid, s.client";
- $sql.= " FROM ".MAIN_DB_PREFIX."c_actioncomm as c LEFT JOIN ";
- $sql.= " ".MAIN_DB_PREFIX."actioncomm as a ON c.id = a.fk_action";
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON a.fk_soc = s.rowid";
- if (!$user->rights->societe->client->voir && !$socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
- $sql.= " WHERE a.entity = ".$conf->entity;
- $sql.= " AND ((a.percent >= 0 AND a.percent < 100) OR (a.percent = -1 AND a.datep2 > '".$db->idate($now)."'))";
- if (!$user->rights->societe->client->voir && !$socid) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id;
- if ($socid) $sql.= " AND s.rowid = ".$socid;
- $sql.= " ORDER BY a.datep DESC, a.id DESC";
- $sql.= $db->plimit($max, 0);
- $resql=$db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("LastActionsToDo",$max).'</td>';
- print '<td colspan="2" align="right"><a href="'.DOL_URL_ROOT.'/comm/action/listactions.php?status=todo">'.$langs->trans("FullList").'</a>';
- print '</tr>';
- $var = true;
- $i = 0;
- $staticaction=new ActionComm($db);
- $customerstatic=new Client($db);
- while ($i < $num)
- {
- $obj = $db->fetch_object($resql);
- $var=!$var;
- print '<tr '.$bc[$var].'>';
- $staticaction->type_code=$obj->code;
- $staticaction->libelle=$obj->label;
- $staticaction->id=$obj->id;
- print '<td>'.$staticaction->getNomUrl(1,34).'</td>';
- // print '<td>'.dol_trunc($obj->label,22).'</td>';
- print '<td>';
- if ($obj->rowid > 0)
- {
- $customerstatic->id=$obj->rowid;
- $customerstatic->name=$obj->sname;
- $customerstatic->client=$obj->client;
- print $customerstatic->getNomUrl(1,'',16);
- }
- print '</td>';
- $datep=$db->jdate($obj->dp);
- $datep2=$db->jdate($obj->dp2);
- // Date
- print '<td width="100" align="right">'.dol_print_date($datep,'day').' ';
- $late=0;
- if ($obj->percent == 0 && $datep && $datep < time()) $late=1;
- if ($obj->percent == 0 && ! $datep && $datep2 && $datep2 < time()) $late=1;
- if ($obj->percent > 0 && $obj->percent < 100 && $datep2 && $datep2 < time()) $late=1;
- if ($obj->percent > 0 && $obj->percent < 100 && ! $datep2 && $datep && $datep < time()) $late=1;
- if ($late) print img_warning($langs->trans("Late"));
- print "</td>";
- // Statut
- print "<td align=\"right\" width=\"14\">".$staticaction->LibStatut($obj->percent,3)."</td>\n";
- print "</tr>\n";
- $i++;
- }
- print "</table><br>";
- $db->free($resql);
- }
- else
- {
- dol_print_error($db);
- }
- }
- /**
- * Show last actions array
- *
- * @param int $max Max nb of records
- * @return void
- */
- function show_array_last_actions_done($max=5)
- {
- global $langs, $conf, $user, $db, $bc, $socid;
- $now=dol_now();
- $sql = "SELECT a.id, a.percent, a.datep as da, a.datep2 as da2, a.fk_user_author, a.label,";
- $sql.= " c.code, c.libelle,";
- $sql.= " s.rowid, s.nom as sname, s.client";
- $sql.= " FROM ".MAIN_DB_PREFIX."c_actioncomm as c LEFT JOIN ";
- $sql.= " ".MAIN_DB_PREFIX."actioncomm as a ON c.id = a.fk_action ";
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON a.fk_soc = s.rowid";
- if (!$user->rights->societe->client->voir && !$socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
- $sql.= " WHERE a.entity = ".$conf->entity;
- $sql.= " AND (a.percent >= 100 OR (a.percent = -1 AND a.datep2 <= '".$db->idate($now)."'))";
- if (!$user->rights->societe->client->voir && !$socid) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id;
- if ($socid) $sql.= " AND s.rowid = ".$socid;
- $sql .= " ORDER BY a.datep2 DESC";
- $sql .= $db->plimit($max, 0);
- $resql=$db->query($sql);
- if ($resql)
- {
- $num = $db->num_rows($resql);
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("LastDoneTasks",$max).'</td>';
- print '<td colspan="2" align="right"><a href="'.DOL_URL_ROOT.'/comm/action/listactions.php?status=done">'.$langs->trans("FullList").'</a>';
- print '</tr>';
- $var = true;
- $i = 0;
- $staticaction=new ActionComm($db);
- $customerstatic=new Societe($db);
- while ($i < $num)
- {
- $obj = $db->fetch_object($resql);
- $var=!$var;
- print '<tr '.$bc[$var].'>';
- $staticaction->type_code=$obj->code;
- $staticaction->libelle=$obj->label;
- $staticaction->id=$obj->id;
- print '<td>'.$staticaction->getNomUrl(1,34).'</td>';
- //print '<td>'.dol_trunc($obj->label,24).'</td>';
- print '<td>';
- if ($obj->rowid > 0)
- {
- $customerstatic->id=$obj->rowid;
- $customerstatic->name=$obj->sname;
- $customerstatic->client=$obj->client;
- print $customerstatic->getNomUrl(1,'',24);
- }
- print '</td>';
- // Date
- print '<td width="100" align="right">'.dol_print_date($db->jdate($obj->da2),'day');
- print "</td>";
- // Statut
- print "<td align=\"right\" width=\"14\">".$staticaction->LibStatut($obj->percent,3)."</td>\n";
- print "</tr>\n";
- $i++;
- }
- // TODO Ajouter rappel pour "il y a des contrats a mettre en service"
- // TODO Ajouter rappel pour "il y a des contrats qui arrivent a expiration"
- print "</table><br>";
- $db->free($resql);
- }
- else
- {
- dol_print_error($db);
- }
- }
- /**
- * Prepare array with list of tabs
- *
- * @return array Array of tabs to shoc
- */
- function agenda_prepare_head()
- {
- global $langs, $conf, $user;
- $h = 0;
- $head = array();
- $head[$h][0] = DOL_URL_ROOT."/admin/agenda.php";
- $head[$h][1] = $langs->trans("AutoActions");
- $head[$h][2] = 'autoactions';
- $h++;
- $head[$h][0] = DOL_URL_ROOT."/admin/agenda_xcal.php";
- $head[$h][1] = $langs->trans("ExportCal");
- $head[$h][2] = 'xcal';
- $h++;
- $head[$h][0] = DOL_URL_ROOT."/admin/agenda_extsites.php";
- $head[$h][1] = $langs->trans("ExtSites");
- $head[$h][2] = 'extsites';
- $h++;
- $head[$h][0] = DOL_URL_ROOT."/admin/agenda_other.php";
- $head[$h][1] = $langs->trans("Other");
- $head[$h][2] = 'other';
- $h++;
- complete_head_from_modules($conf,$langs,null,$head,$h,'agenda_admin');
- $head[$h][0] = DOL_URL_ROOT."/admin/agenda_extrafields.php";
- $head[$h][1] = $langs->trans("ExtraFields");
- $head[$h][2] = 'attributes';
- $h++;
- complete_head_from_modules($conf,$langs,null,$head,$h,'agenda_admin','remove');
- return $head;
- }
- /**
- * Prepare array with list of tabs
- *
- * @param object $object Object related to tabs
- * @return array Array of tabs to shoc
- */
- function actions_prepare_head($object)
- {
- global $langs, $conf, $user;
- $h = 0;
- $head = array();
- $head[$h][0] = DOL_URL_ROOT.'/comm/action/fiche.php?id='.$object->id;
- $head[$h][1] = $langs->trans("CardAction");
- $head[$h][2] = 'card';
- $h++;
- if (! empty($conf->global->AGENDA_USE_SEVERAL_CONTACTS))
- {
- $head[$h][0] = DOL_URL_ROOT.'/comm/action/contact.php?id='.$object->id;
- $head[$h][1] = $langs->trans("Contacts");
- $head[$h][2] = 'contact';
- $h++;
- }
- $head[$h][0] = DOL_URL_ROOT.'/comm/action/document.php?id='.$object->id;
- $head[$h][1] = $langs->trans('Documents');
- $head[$h][2] = 'documents';
- $h++;
- $head[$h][0] = DOL_URL_ROOT.'/comm/action/info.php?id='.$object->id;
- $head[$h][1] = $langs->trans('Info');
- $head[$h][2] = 'info';
- $h++;
-
- complete_head_from_modules($conf,$langs,$object,$head,$h,'action');
-
- complete_head_from_modules($conf,$langs,$object,$head,$h,'action','remove');
- return $head;
- }
- /**
- * Define head array for tabs of agenda setup pages
- *
- * @param string $param Parameters to add to url
- * @return array Array of head
- */
- function calendars_prepare_head($param)
- {
- global $langs, $conf, $user;
- $h = 0;
- $head = array();
- $head[$h][0] = DOL_URL_ROOT.'/comm/action/index.php'.($param?'?'.$param:'');
- $head[$h][1] = $langs->trans("Agenda");
- $head[$h][2] = 'card';
- $h++;
- $object=new stdClass();
- // Show more tabs from modules
- // Entries must be declared in modules descriptor with line
- // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
- // $this->tabs = array('entity:-tabname); to remove a tab
- complete_head_from_modules($conf,$langs,$object,$head,$h,'agenda');
- complete_head_from_modules($conf,$langs,$object,$head,$h,'agenda','remove');
- return $head;
- }
|