forked from Wavyzz/dolibarr
391 lines
12 KiB
PHP
391 lines
12 KiB
PHP
<?php
|
|
/* Copyright (C) 2008-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
|
* 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 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/>.
|
|
* or see http://www.gnu.org/
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/lib/agenda.lib.php
|
|
* \brief Set of function for the agenda module
|
|
* \version $Id: agenda.lib.php,v 1.43 2011/07/31 23:25:33 eldy Exp $
|
|
*/
|
|
|
|
|
|
/**
|
|
* Show filter form in agenda view
|
|
* @param $form
|
|
* @param $canedit
|
|
* @param $status
|
|
* @param $year
|
|
* @param $month
|
|
* @param $day
|
|
* @param $showbirthday
|
|
* @param $filtera
|
|
* @param $filtert
|
|
* @param $filterd
|
|
* @param $pid
|
|
* @param $socid
|
|
*/
|
|
function print_actions_filter($form,$canedit,$status,$year,$month,$day,$showbirthday,$filtera,$filtert,$filterd,$pid,$socid)
|
|
{
|
|
global $conf,$langs;
|
|
|
|
// Filters
|
|
if ($canedit || $conf->projet->enabled)
|
|
{
|
|
print '<form name="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%">';
|
|
if ($canedit || $conf->projet->enabled)
|
|
{
|
|
print '<tr><td nowrap="nowrap">';
|
|
|
|
print '<table class="nobordernopadding">';
|
|
|
|
if ($canedit)
|
|
{
|
|
print '<tr>';
|
|
print '<td nowrap="nowrap">';
|
|
print $langs->trans("ActionsAskedBy");
|
|
print ' </td><td nowrap="nowrap">';
|
|
print $form->select_users($filtera,'userasked',1,'',!$canedit);
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
print '<tr>';
|
|
print '<td nowrap="nowrap">';
|
|
print $langs->trans("or").' '.$langs->trans("ActionsToDoBy");
|
|
print ' </td><td nowrap="nowrap">';
|
|
print $form->select_users($filtert,'usertodo',1,'',!$canedit);
|
|
print '</td></tr>';
|
|
|
|
print '<tr>';
|
|
print '<td nowrap="nowrap">';
|
|
print $langs->trans("or").' '.$langs->trans("ActionsDoneBy");
|
|
print ' </td><td nowrap="nowrap">';
|
|
print $form->select_users($filterd,'userdone',1,'',!$canedit);
|
|
print '</td></tr>';
|
|
}
|
|
|
|
if ($conf->projet->enabled)
|
|
{
|
|
print '<tr>';
|
|
print '<td nowrap="nowrap">';
|
|
print $langs->trans("Project").' ';
|
|
print '</td><td nowrap="nowrap">';
|
|
select_projects($socid?$socid:-1,$pid,'projectid');
|
|
print '</td></tr>';
|
|
}
|
|
|
|
print '</table>';
|
|
print '</td>';
|
|
|
|
// Buttons
|
|
print '<td align="center" valign="middle" nowrap="nowrap">';
|
|
print img_picto($langs->trans("ViewCal"),'object_calendar').' <input type="submit" class="button" style="width:120px" name="viewcal" value="'.$langs->trans("ViewCal").'">';
|
|
print '<br>';
|
|
print img_picto($langs->trans("ViewWeek"),'object_calendarweek').' <input type="submit" class="button" style="width:120px" name="viewweek" value="'.$langs->trans("ViewWeek").'">';
|
|
print '<br>';
|
|
print img_picto($langs->trans("ViewDay"),'object_calendarday').' <input type="submit" class="button" style="width:120px" name="viewday" value="'.$langs->trans("ViewDay").'">';
|
|
print '<br>';
|
|
print img_picto($langs->trans("ViewList"),'object_list').' <input type="submit" class="button" style="width:120px" name="viewlist" value="'.$langs->trans("ViewList").'">';
|
|
print '</td>';
|
|
print '</tr>';
|
|
}
|
|
print '</table>';
|
|
print '</form>';
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Show actions to do array
|
|
* @param max Max nb of records
|
|
*/
|
|
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.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,";
|
|
$sql.= " ".MAIN_DB_PREFIX."actioncomm as a";
|
|
if (!$user->rights->societe->client->voir && !$socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
|
$sql.= ")";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON a.fk_soc = s.rowid AND s.entity IN (0, ".$conf->entity.")";
|
|
$sql.= " WHERE c.id = a.fk_action";
|
|
$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 max Max nb of records
|
|
*/
|
|
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,";
|
|
$sql.= " ".MAIN_DB_PREFIX."actioncomm as a";
|
|
if (!$user->rights->societe->client->voir && !$socid) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
|
|
$sql.=")";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON a.fk_soc = s.rowid AND s.entity IN (0, ".$conf->entity.")";
|
|
$sql.= " WHERE c.id = a.fk_action";
|
|
$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);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Define head array for tabs of agenda setup pages
|
|
* @return Array of head
|
|
*/
|
|
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("Export");
|
|
$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++;
|
|
|
|
|
|
return $head;
|
|
}
|
|
|
|
/**
|
|
* Define head array for tabs of agenda setup pages
|
|
* @param action Object action
|
|
* @return Array of head
|
|
*/
|
|
function actions_prepare_head($action)
|
|
{
|
|
global $langs, $conf, $user;
|
|
|
|
$h = 0;
|
|
$head = array();
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/comm/action/fiche.php?id='.$action->id;
|
|
$head[$h][1] = $langs->trans("CardAction");
|
|
$head[$h][2] = 'card';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/comm/action/document.php?id='.$action->id;
|
|
$head[$h][1] = $langs->trans('Documents');
|
|
$head[$h][2] = 'documents';
|
|
$h++;
|
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/comm/action/info.php?id='.$action->id;
|
|
$head[$h][1] = $langs->trans('Info');
|
|
$head[$h][2] = 'info';
|
|
$h++;
|
|
|
|
return $head;
|
|
}
|
|
|
|
|
|
/**
|
|
* Define head array for tabs of agenda setup pages
|
|
* @return 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++;
|
|
|
|
// 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:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
|
|
complete_head_from_modules($conf,$langs,$object,$head,$h,'agenda');
|
|
|
|
return $head;
|
|
}
|
|
|
|
?>
|