2008-02-26 19:34:53 +01:00
< ? php
/* Copyright ( C ) 2001 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2008-03-06 13:57:26 +01:00
* Copyright ( C ) 2003 Eric Seigne < erics @ rycks . com >
2016-06-04 00:52:55 +02:00
* Copyright ( C ) 2004 - 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ inodbox . com >
2017-05-17 17:00:45 +02:00
* Copyright ( C ) 2017 Open - DSI < support @ open - dsi . fr >
2018-09-09 11:25:59 +02:00
* Copyright ( C ) 2018 Frédéric France < frederic . france @ netlogic . fr >
2008-02-26 19:34:53 +01:00
*
* 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
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2008-02-26 19:34:53 +01:00
* ( 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
2011-08-01 00:21:57 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2008-02-26 19:34:53 +01:00
*/
/**
2017-11-16 12:18:25 +01:00
* \file htdocs / comm / action / list . php
2010-01-19 10:44:52 +01:00
* \ingroup agenda
2011-01-19 12:17:35 +01:00
* \brief Page to list actions
2010-01-19 10:44:52 +01:00
*/
2009-08-24 19:11:30 +02:00
2018-04-30 14:39:12 +02:00
if ( ! defined ( " NOREDIRECTBYMAINTOLOGIN " )) define ( 'NOREDIRECTBYMAINTOLOGIN' , 1 );
2012-08-22 23:24:21 +02:00
require '../../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/contact/class/contact.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/comm/action/class/actioncomm.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/agenda.lib.php' ;
2017-03-28 18:42:23 +02:00
include_once DOL_DOCUMENT_ROOT . '/core/class/html.formactions.class.php' ;
2018-04-30 14:39:12 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php' ;
2008-02-26 19:34:53 +01:00
2018-05-26 19:03:41 +02:00
// Load translation files required by the page
2018-03-22 10:46:42 +01:00
$langs -> loadLangs ( array ( " users " , " companies " , " agenda " , " commercial " ));
2008-02-26 19:34:53 +01:00
2010-11-20 14:08:44 +01:00
$action = GETPOST ( 'action' , 'alpha' );
2018-03-31 18:48:27 +02:00
$contextpage = GETPOST ( 'contextpage' , 'aZ' ) ? GETPOST ( 'contextpage' , 'aZ' ) : 'actioncommlist' ; // To manage different context of search
2018-11-19 14:25:34 +01:00
$resourceid = GETPOST ( " search_resourceid " , " int " ) ? GETPOST ( " search_resourceid " , " int " ) : GETPOST ( " resourceid " , " int " );
$pid = GETPOST ( " search_projectid " , 'int' , 3 ) ? GETPOST ( " search_projectid " , 'int' , 3 ) : GETPOST ( " projectid " , 'int' , 3 );
$status = GETPOST ( " search_status " , 'alpha' ) ? GETPOST ( " search_status " , 'alpha' ) : GETPOST ( " status " , 'alpha' );
$type = GETPOST ( 'search_type' , 'alphanohtml' ) ? GETPOST ( 'search_type' , 'alphanohtml' ) : GETPOST ( 'type' , 'alphanohtml' );
$optioncss = GETPOST ( 'optioncss' , 'alpha' );
2010-11-20 14:08:44 +01:00
$year = GETPOST ( " year " , 'int' );
$month = GETPOST ( " month " , 'int' );
$day = GETPOST ( " day " , 'int' );
2016-01-14 14:15:14 +01:00
// Set actioncode (this code must be same for setting actioncode into peruser, listacton and index)
2018-11-19 14:25:34 +01:00
if ( GETPOST ( 'search_actioncode' , 'array' ))
2015-12-04 20:51:34 +01:00
{
2018-11-19 14:25:34 +01:00
$actioncode = GETPOST ( 'search_actioncode' , 'array' , 3 );
2015-12-04 20:51:34 +01:00
if ( ! count ( $actioncode )) $actioncode = '0' ;
}
2017-06-10 13:54:43 +02:00
else
2015-12-04 20:51:34 +01:00
{
2018-11-19 14:25:34 +01:00
$actioncode = GETPOST ( " search_actioncode " , " alpha " , 3 ) ? GETPOST ( " search_actioncode " , " alpha " , 3 ) : ( GETPOST ( " search_actioncode " ) == '0' ? '0' : ( empty ( $conf -> global -> AGENDA_DEFAULT_FILTER_TYPE ) ? '' : $conf -> global -> AGENDA_DEFAULT_FILTER_TYPE ));
2015-12-04 20:51:34 +01:00
}
2016-01-14 14:15:14 +01:00
if ( $actioncode == '' && empty ( $actioncodearray )) $actioncode = ( empty ( $conf -> global -> AGENDA_DEFAULT_FILTER_TYPE ) ? '' : $conf -> global -> AGENDA_DEFAULT_FILTER_TYPE );
2018-03-22 10:46:42 +01:00
$search_id = GETPOST ( 'search_id' , 'alpha' );
2016-10-18 12:16:12 +02:00
$search_title = GETPOST ( 'search_title' , 'alpha' );
2016-01-14 14:15:14 +01:00
2017-07-07 10:55:42 +02:00
$dateselect = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'dateselectmonth' , 'int' ), GETPOST ( 'dateselectday' , 'int' ), GETPOST ( 'dateselectyear' , 'int' ));
$datestart = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'datestartmonth' , 'int' ), GETPOST ( 'datestartday' , 'int' ), GETPOST ( 'datestartyear' , 'int' ));
$dateend = dol_mktime ( 0 , 0 , 0 , GETPOST ( 'dateendmonth' , 'int' ), GETPOST ( 'dateendday' , 'int' ), GETPOST ( 'dateendyear' , 'int' ));
2014-07-19 22:37:18 +02:00
if ( $status == '' && ! isset ( $_GET [ 'status' ]) && ! isset ( $_POST [ 'status' ])) $status = ( empty ( $conf -> global -> AGENDA_DEFAULT_FILTER_STATUS ) ? '' : $conf -> global -> AGENDA_DEFAULT_FILTER_STATUS );
if ( empty ( $action ) && ! isset ( $_GET [ 'action' ]) && ! isset ( $_POST [ 'action' ])) $action = ( empty ( $conf -> global -> AGENDA_DEFAULT_VIEW ) ? 'show_month' : $conf -> global -> AGENDA_DEFAULT_VIEW );
2010-01-19 10:44:52 +01:00
2018-11-19 14:25:34 +01:00
$filter = GETPOST ( " search_filter " , 'alpha' , 3 ) ? GETPOST ( " search_filter " , 'alpha' , 3 ) : GETPOST ( " filter " , 'alpha' , 3 );
$filtert = GETPOST ( " search_filtert " , " int " , 3 ) ? GETPOST ( " search_filtert " , " int " , 3 ) : GETPOST ( " filtert " , " int " , 3 );
$usergroup = GETPOST ( " search_usergroup " , " int " , 3 ) ? GETPOST ( " search_usergroup " , " int " , 3 ) : GETPOST ( " usergroup " , " int " , 3 );
$showbirthday = empty ( $conf -> use_javascript_ajax ) ? ( GETPOST ( " search_showbirthday " , " int " ) ? GETPOST ( " search_showbirthday " , " int " ) : GETPOST ( " showbirthday " , " int " )) : 1 ;
2008-03-01 02:26:41 +01:00
2018-11-07 12:49:17 +01:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
$object = new ActionComm ( $db );
$hookmanager -> initHooks ( array ( 'agendalist' ));
2017-11-11 18:41:35 +01:00
$extrafields = new ExtraFields ( $db );
// fetch optionals attributes and labels
$extralabels = $extrafields -> fetch_name_optionals_label ( 'actioncomm' );
2018-11-07 12:49:17 +01:00
$search_array_options = $extrafields -> getOptionalsFromPost ( $object -> table_element , '' , 'search_' );
2014-10-09 17:05:57 +02:00
// If not choice done on calendar owner, we filter on user.
2014-10-09 17:27:14 +02:00
if ( empty ( $filtert ) && empty ( $conf -> global -> AGENDA_ALL_CALENDARS ))
2014-10-09 17:05:57 +02:00
{
$filtert = $user -> id ;
}
2017-06-08 14:55:12 +02:00
$limit = GETPOST ( 'limit' , 'int' ) ? GETPOST ( 'limit' , 'int' ) : $conf -> liste_limit ;
2010-11-20 14:08:44 +01:00
$sortfield = GETPOST ( " sortfield " , 'alpha' );
$sortorder = GETPOST ( " sortorder " , 'alpha' );
$page = GETPOST ( " page " , 'int' );
2017-06-24 16:45:45 +02:00
if ( $page == - 1 || $page == null ) { $page = 0 ; }
2010-01-19 10:44:52 +01:00
$offset = $limit * $page ;
2010-02-04 22:32:14 +01:00
if ( ! $sortorder )
{
2014-09-08 10:24:16 +02:00
$sortorder = " DESC " ;
if ( $status == 'todo' ) $sortorder = " DESC " ;
//if ($status == 'done') $sortorder="DESC";
2010-02-04 22:32:14 +01:00
}
if ( ! $sortfield )
{
2014-09-08 10:24:16 +02:00
$sortfield = " a.datep " ;
2010-02-04 22:32:14 +01:00
if ( $status == 'todo' ) $sortfield = " a.datep " ;
2014-09-08 10:24:16 +02:00
//if ($status == 'done') $sortfield="a.datep2";
2010-02-04 22:32:14 +01:00
}
2008-03-02 19:47:42 +01:00
2008-02-26 19:34:53 +01:00
// Security check
2018-11-19 14:25:34 +01:00
$socid = GETPOST ( " search_socid " , 'int' ) ? GETPOST ( " search_socid " , 'int' ) : GETPOST ( " socid " , 'int' );
2008-02-26 19:34:53 +01:00
if ( $user -> societe_id ) $socid = $user -> societe_id ;
2010-06-09 20:25:20 +02:00
$result = restrictedArea ( $user , 'agenda' , 0 , '' , 'myactions' );
2014-06-29 02:45:55 +02:00
if ( $socid < 0 ) $socid = '' ;
2008-03-01 02:26:41 +01:00
2008-03-01 15:30:06 +01:00
$canedit = 1 ;
2008-03-31 06:55:56 +02:00
if ( ! $user -> rights -> agenda -> myactions -> read ) accessforbidden ();
2008-03-02 19:47:42 +01:00
if ( ! $user -> rights -> agenda -> allactions -> read ) $canedit = 0 ;
2012-07-13 11:40:06 +02:00
if ( ! $user -> rights -> agenda -> allactions -> read || $filter == 'mine' ) // If no permission to see all, we show only affected to me
2008-03-01 15:30:06 +01:00
{
2008-03-02 19:47:42 +01:00
$filtert = $user -> id ;
2008-03-01 15:30:06 +01:00
}
2008-03-02 19:47:42 +01:00
2017-11-11 18:41:35 +01:00
$arrayfields = array (
'a.id' => array ( 'label' => " Ref " , 'checked' => 1 ),
2017-11-14 01:57:50 +01:00
'owner' => array ( 'label' => " Owner " , 'checked' => 1 ),
2017-11-11 18:41:35 +01:00
'c.libelle' => array ( 'label' => " Type " , 'checked' => 1 ),
2017-11-24 20:02:46 +01:00
'a.label' => array ( 'label' => " Title " , 'checked' => 1 ),
2017-11-11 18:41:35 +01:00
'a.datep' => array ( 'label' => " DateStart " , 'checked' => 1 ),
'a.datep2' => array ( 'label' => " DateEnd " , 'checked' => 1 ),
's.nom' => array ( 'label' => " ThirdParty " , 'checked' => 1 ),
'a.fk_contact' => array ( 'label' => " Contact " , 'checked' => 1 ),
2018-01-16 18:02:36 +01:00
'a.fk_element' => array ( 'label' => " LinkedObject " , 'checked' => 0 , 'enabled' => ( ! empty ( $conf -> global -> AGENDA_SHOW_LINKED_OBJECT ))),
2017-11-11 18:41:35 +01:00
'a.percent' => array ( 'label' => " Status " , 'checked' => 1 , 'position' => 1000 ),
2018-11-19 14:25:34 +01:00
'a.datec' => array ( 'label' => 'DateCreation' , 'checked' => 0 ),
'a.tms' => array ( 'label' => 'DateModification' , 'checked' => 0 )
2017-11-11 18:41:35 +01:00
);
// Extra fields
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label ))
{
foreach ( $extrafields -> attribute_label as $key => $val )
{
2018-11-19 11:25:48 +01:00
if ( ! empty ( $extrafields -> attribute_list [ $key ])) $arrayfields [ " ef. " . $key ] = array ( 'label' => $extrafields -> attribute_label [ $key ], 'checked' => $extrafields -> attribute_list [ $key ], 'position' => $extrafields -> attribute_pos [ $key ], 'enabled' => $extrafields -> attribute_perms [ $key ]);
2017-11-11 18:41:35 +01:00
}
}
2008-02-26 19:34:53 +01:00
2018-02-06 01:16:51 +01:00
2008-03-20 21:39:50 +01:00
/*
2010-02-04 22:32:14 +01:00
* Actions
*/
2014-10-09 17:05:57 +02:00
2011-02-02 17:34:43 +01:00
if ( GETPOST ( " viewcal " ) || GETPOST ( " viewweek " ) || GETPOST ( " viewday " ))
2008-03-20 21:39:50 +01:00
{
$param = '' ;
2017-07-09 20:31:27 +02:00
if ( is_array ( $_POST ))
{
foreach ( $_POST as $key => $val )
{
$param .= '&' . $key . '=' . urlencode ( $val );
}
}
2008-03-20 21:39:50 +01:00
//print $param;
header ( " Location: " . DOL_URL_ROOT . '/comm/action/index.php?' . $param );
exit ;
}
2016-10-18 12:16:12 +02:00
$parameters = array ( 'id' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
if ( $reshook < 0 ) setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
2017-11-11 18:41:35 +01:00
// Selection of new fields
include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php' ;
2016-10-18 12:16:12 +02:00
// Purge search criteria
2017-07-13 00:35:10 +02:00
if ( GETPOST ( 'button_removefilter_x' , 'alpha' ) || GETPOST ( 'button_removefilter.x' , 'alpha' ) || GETPOST ( 'button_removefilter' , 'alpha' )) // All tests are required to be compatible with all browsers
2016-10-18 12:16:12 +02:00
{
2017-12-08 16:15:41 +01:00
//$actioncode='';
2018-03-22 10:46:42 +01:00
$search_id = '' ;
$search_title = '' ;
2016-10-18 12:16:12 +02:00
$datestart = '' ;
$dateend = '' ;
2017-12-08 16:15:41 +01:00
$status = '' ;
2017-11-13 10:05:29 +01:00
$search_array_options = array ();
2016-10-18 12:16:12 +02:00
}
2008-03-20 21:39:50 +01:00
2008-02-26 19:34:53 +01:00
/*
2008-03-20 21:39:50 +01:00
* View
2008-02-26 19:34:53 +01:00
*/
2014-10-16 21:34:35 +02:00
$form = new Form ( $db );
2015-01-15 02:06:04 +01:00
$userstatic = new User ( $db );
2017-03-28 18:42:23 +02:00
$formactions = new FormActions ( $db );
2014-10-16 21:34:35 +02:00
2018-09-09 11:25:59 +02:00
$nav = '' ;
$nav .= $form -> selectDate ( $dateselect , 'dateselect' , 0 , 0 , 1 , '' , 1 , 0 );
$nav .= ' <input type="submit" name="submitdateselect" class="button" value="' . $langs -> trans ( " Refresh " ) . '">' ;
2014-10-16 21:34:35 +02:00
2011-06-06 19:31:16 +02:00
$now = dol_now ();
2009-08-24 19:11:30 +02:00
$help_url = 'EN:Module_Agenda_En|FR:Module_Agenda|ES:M&omodulodulo_Agenda' ;
llxHeader ( '' , $langs -> trans ( " Agenda " ), $help_url );
2012-01-22 20:16:11 +01:00
// Define list of all external calendars
$listofextcals = array ();
2010-01-19 10:44:52 +01:00
$param = '' ;
2018-03-22 10:46:42 +01:00
if ( ! empty ( $contextpage ) && $contextpage != $_SERVER [ " PHP_SELF " ]) $param .= '&contextpage=' . urlencode ( $contextpage );
if ( $limit > 0 && $limit != $conf -> liste_limit ) $param .= '&limit=' . urlencode ( $limit );
2017-11-02 14:58:33 +01:00
if ( $actioncode != '' ) {
if ( is_array ( $actioncode )) {
2018-11-19 14:25:34 +01:00
foreach ( $actioncode as $str_action ) $param .= " &search_actioncode[]= " . urlencode ( $str_action );
} else $param .= " &search_actioncode= " . urlencode ( $actioncode );
2017-11-02 14:58:33 +01:00
}
2018-11-19 14:25:34 +01:00
if ( $resourceid > 0 ) $param .= " &search_resourceid= " . urlencode ( $resourceid );
if ( $status != '' && $status > - 1 ) $param .= " &search_status= " . urlencode ( $status );
if ( $filter ) $param .= " &search_filter= " . urlencode ( $filter );
if ( $filtert ) $param .= " &search_filtert= " . urlencode ( $filtert );
if ( $socid ) $param .= " &search_socid= " . urlencode ( $socid );
if ( $showbirthday ) $param .= " &search_showbirthday=1 " ;
if ( $pid ) $param .= " &search_projectid= " . urlencode ( $pid );
if ( $type ) $param .= " &search_type= " . urlencode ( $type );
if ( $usergroup ) $param .= " &search_usergroup= " . urlencode ( $usergroup );
2018-03-22 10:46:42 +01:00
if ( $search_id != '' ) $param .= '&search_title=' . urlencode ( $search_id );
if ( $search_title != '' ) $param .= '&search_title=' . urlencode ( $search_title );
2017-07-07 10:55:42 +02:00
if ( GETPOST ( 'datestartday' , 'int' )) $param .= '&datestartday=' . GETPOST ( 'datestartday' , 'int' );
if ( GETPOST ( 'datestartmonth' , 'int' )) $param .= '&datestartmonth=' . GETPOST ( 'datestartmonth' , 'int' );
if ( GETPOST ( 'datestartyear' , 'int' )) $param .= '&datestartyear=' . GETPOST ( 'datestartyear' , 'int' );
if ( GETPOST ( 'dateendday' , 'int' )) $param .= '&dateendday=' . GETPOST ( 'dateendday' , 'int' );
if ( GETPOST ( 'dateendmonth' , 'int' )) $param .= '&dateendmonth=' . GETPOST ( 'dateendmonth' , 'int' );
if ( GETPOST ( 'dateendyear' , 'int' )) $param .= '&dateendyear=' . GETPOST ( 'dateendyear' , 'int' );
2018-11-19 14:25:34 +01:00
if ( $optioncss != '' ) $param .= '&optioncss=' . urlencode ( $optioncss );
2017-11-11 18:41:35 +01:00
// Add $param from extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_param.tpl.php' ;
2010-01-19 10:44:52 +01:00
2015-01-15 02:06:04 +01:00
$sql = " SELECT " ;
if ( $usergroup > 0 ) $sql .= " DISTINCT " ;
2018-11-28 14:20:55 +01:00
$sql .= " s.nom as societe, s.rowid as socid, s.client, s.email as socemail, " ;
2015-01-15 02:06:04 +01:00
$sql .= " a.id, a.label, a.datep as dp, a.datep2 as dp2, " ;
$sql .= ' a.fk_user_author,a.fk_user_action,' ;
$sql .= " a.fk_contact, a.note, a.percent as percent, " ;
2018-11-19 14:25:34 +01:00
$sql .= " a.fk_element, a.elementtype, a.datec, a.tms as datem, " ;
2014-10-20 13:20:19 +02:00
$sql .= " c.code as type_code, c.libelle as type_label, " ;
2018-04-05 19:23:36 +02:00
$sql .= " sp.lastname, sp.firstname, sp.email, sp.phone, sp.address, sp.phone as phone_pro, sp.phone_mobile, sp.phone_perso, sp.fk_pays as country_id " ;
2017-11-11 18:41:35 +01:00
// Add fields from extrafields
foreach ( $extrafields -> attribute_label as $key => $val ) $sql .= ( $extrafields -> attribute_type [ $key ] != 'separate' ? " ,ef. " . $key . ' as options_' . $key : '' );
$sql .= " FROM " . MAIN_DB_PREFIX . " actioncomm as a " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " actioncomm_extrafields as ef ON (a.id = ef.fk_object) " ;
2013-01-10 08:27:12 +01:00
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe_commerciaux as sc ON a.fk_soc = sc.fk_soc " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe as s ON a.fk_soc = s.rowid " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " socpeople as sp ON a.fk_contact = sp.rowid " ;
2017-11-14 01:33:44 +01:00
$sql .= " , " . MAIN_DB_PREFIX . " c_actioncomm as c " ;
2016-06-06 13:05:36 +02:00
// We must filter on resource table
if ( $resourceid > 0 ) $sql .= " , " . MAIN_DB_PREFIX . " element_resources as r " ;
2015-01-15 02:06:04 +01:00
// We must filter on assignement table
if ( $filtert > 0 || $usergroup > 0 ) $sql .= " , " . MAIN_DB_PREFIX . " actioncomm_resources as ar " ;
if ( $usergroup > 0 ) $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " usergroup_user as ugu ON ugu.fk_user = ar.fk_element " ;
2017-11-14 01:33:44 +01:00
$sql .= " WHERE c.id = a.fk_action " ;
2017-05-30 18:50:54 +02:00
$sql .= ' AND a.entity IN (' . getEntity ( 'agenda' ) . ')' ;
2016-11-08 12:58:07 +01:00
// Condition on actioncode
if ( ! empty ( $actioncode ))
{
if ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ))
{
if ( $actioncode == 'AC_NON_AUTO' ) $sql .= " AND c.type != 'systemauto' " ;
elseif ( $actioncode == 'AC_ALL_AUTO' ) $sql .= " AND c.type = 'systemauto' " ;
else
{
if ( $actioncode == 'AC_OTH' ) $sql .= " AND c.type != 'systemauto' " ;
if ( $actioncode == 'AC_OTH_AUTO' ) $sql .= " AND c.type = 'systemauto' " ;
}
}
else
{
if ( $actioncode == 'AC_NON_AUTO' ) $sql .= " AND c.type != 'systemauto' " ;
elseif ( $actioncode == 'AC_ALL_AUTO' ) $sql .= " AND c.type = 'systemauto' " ;
else
{
2017-11-02 15:50:55 +01:00
if ( is_array ( $actioncode ))
{
2017-11-02 16:16:29 +01:00
$sql .= " AND c.code IN (' " . implode ( " ',' " , $actioncode ) . " ') " ;
2017-11-02 15:50:55 +01:00
}
else
{
2017-11-02 16:16:29 +01:00
$sql .= " AND c.code IN (' " . implode ( " ',' " , explode ( ',' , $actioncode )) . " ') " ;
2017-11-14 01:57:50 +01:00
}
2016-11-08 12:58:07 +01:00
}
}
}
2016-06-06 13:05:36 +02:00
if ( $resourceid > 0 ) $sql .= " AND r.element_type = 'action' AND r.element_id = a.id AND r.resource_id = " . $db -> escape ( $resourceid );
2013-01-10 08:27:12 +01:00
if ( $pid ) $sql .= " AND a.fk_project= " . $db -> escape ( $pid );
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " AND (a.fk_soc IS NULL OR sc.fk_user = " . $user -> id . " ) " ;
2014-06-29 04:34:12 +02:00
if ( $socid > 0 ) $sql .= " AND s.rowid = " . $socid ;
2015-01-15 02:06:04 +01:00
// We must filter on assignement table
if ( $filtert > 0 || $usergroup > 0 ) $sql .= " AND ar.fk_actioncomm = a.id AND ar.element_type='user' " ;
2012-07-13 11:40:06 +02:00
if ( $type ) $sql .= " AND c.id = " . $type ;
2014-06-26 20:24:00 +02:00
if ( $status == '0' ) { $sql .= " AND a.percent = 0 " ; }
if ( $status == '-1' ) { $sql .= " AND a.percent = -1 " ; } // Not applicable
2014-07-19 22:37:18 +02:00
if ( $status == '50' ) { $sql .= " AND (a.percent > 0 AND a.percent < 100) " ; } // Running already started
2017-03-28 18:42:23 +02:00
if ( $status == '100' ) { $sql .= " AND a.percent = 100 " ; }
2018-06-04 15:14:26 +02:00
if ( $status == 'done' ) { $sql .= " AND (a.percent = 100) " ; }
2018-05-30 13:37:17 +02:00
if ( $status == 'todo' ) { $sql .= " AND (a.percent >= 0 AND a.percent < 100) " ; }
2018-03-22 10:46:42 +01:00
if ( $search_id ) $sql .= natural_search ( " a.id " , $search_id , 1 );
2016-10-18 12:16:12 +02:00
if ( $search_title ) $sql .= natural_search ( " a.label " , $search_title );
2015-01-15 02:06:04 +01:00
// We must filter on assignement table
if ( $filtert > 0 || $usergroup > 0 )
2008-03-01 15:30:06 +01:00
{
2014-06-28 20:49:10 +02:00
$sql .= " AND ( " ;
2016-06-04 00:52:55 +02:00
if ( $filtert > 0 ) $sql .= " (ar.fk_element = " . $filtert . " OR (ar.fk_element IS NULL AND a.fk_user_action= " . $filtert . " )) " ; // The OR is for backward compatibility
2015-01-15 02:06:04 +01:00
if ( $usergroup > 0 ) $sql .= ( $filtert > 0 ? " OR " : " " ) . " ugu.fk_usergroup = " . $usergroup ;
2014-06-28 20:49:10 +02:00
$sql .= " ) " ;
2008-03-01 15:30:06 +01:00
}
2015-01-15 02:06:04 +01:00
2015-01-06 20:58:23 +01:00
// The second or of next test is to take event with no end date (we suppose duration is 1 hour in such case)
if ( $dateselect > 0 ) $sql .= " AND ((a.datep2 >= ' " . $db -> idate ( $dateselect ) . " ' AND a.datep <= ' " . $db -> idate ( $dateselect + 3600 * 24 - 1 ) . " ') OR (a.datep2 IS NULL AND a.datep > ' " . $db -> idate ( $dateselect - 3600 ) . " ' AND a.datep <= ' " . $db -> idate ( $dateselect + 3600 * 24 - 1 ) . " ')) " ;
2014-10-16 21:34:35 +02:00
if ( $datestart > 0 ) $sql .= " AND a.datep BETWEEN ' " . $db -> idate ( $datestart ) . " ' AND ' " . $db -> idate ( $datestart + 3600 * 24 - 1 ) . " ' " ;
if ( $dateend > 0 ) $sql .= " AND a.datep2 BETWEEN ' " . $db -> idate ( $dateend ) . " ' AND ' " . $db -> idate ( $dateend + 3600 * 24 - 1 ) . " ' " ;
2017-11-11 18:41:35 +01:00
// Add where from extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_sql.tpl.php' ;
2010-02-04 22:32:14 +01:00
$sql .= $db -> order ( $sortfield , $sortorder );
2016-02-11 20:24:15 +01:00
2017-01-15 20:49:20 +01:00
$nbtotalofrecords = '' ;
2016-02-11 20:24:15 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST ))
{
$result = $db -> query ( $sql );
$nbtotalofrecords = $db -> num_rows ( $result );
2018-04-24 11:37:57 +02:00
if (( $page * $limit ) > $nbtotalofrecords ) // if total resultset is smaller then paging size (filtering), goto and load page 0
{
$page = 0 ;
$offset = 0 ;
}
2016-02-11 20:24:15 +01:00
}
2010-02-04 22:32:14 +01:00
$sql .= $db -> plimit ( $limit + 1 , $offset );
2013-04-18 10:12:16 +02:00
//print $sql;
2008-02-26 19:34:53 +01:00
2017-11-16 12:18:25 +01:00
dol_syslog ( " comm/action/list.php " , LOG_DEBUG );
2008-02-26 19:34:53 +01:00
$resql = $db -> query ( $sql );
if ( $resql )
{
2010-02-04 22:32:14 +01:00
$actionstatic = new ActionComm ( $db );
$societestatic = new Societe ( $db );
2009-08-24 19:11:30 +02:00
2010-02-04 22:32:14 +01:00
$num = $db -> num_rows ( $resql );
2008-03-20 21:39:50 +01:00
2018-03-07 12:03:40 +01:00
// Local calendar
$newtitle = '<div class="nowrap clear inline-block minheight20"><input type="checkbox" id="check_mytasks" name="check_mytasks" checked disabled> ' . $langs -> trans ( " LocalAgenda " ) . ' </div>' ;
//$newtitle=$langs->trans($title);
2009-08-24 19:11:30 +02:00
2014-08-26 19:55:35 +02:00
$tabactive = 'cardlist' ;
2009-08-24 19:11:30 +02:00
2014-06-29 02:45:55 +02:00
$head = calendars_prepare_head ( $param );
2011-05-16 19:27:20 +02:00
2017-11-25 00:12:45 +01:00
print '<form method="POST" id="searchFormList" class="listactionsfilter" action="' . $_SERVER [ " PHP_SELF " ] . '">' . " \n " ;
2017-12-02 01:13:32 +01:00
if ( $optioncss != '' ) print '<input type="hidden" name="optioncss" value="' . $optioncss . '">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="action" value="list">' ;
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">' ;
print '<input type="hidden" name="sortfield" value="' . $sortfield . '">' ;
print '<input type="hidden" name="sortorder" value="' . $sortorder . '">' ;
print '<input type="hidden" name="page" value="' . $page . '">' ;
print '<input type="hidden" name="type" value="' . $type . '">' ;
$nav = '' ;
2018-02-06 01:16:51 +01:00
//if ($actioncode) $nav.='<input type="hidden" name="actioncode" value="'.$actioncode.'">';
//if ($resourceid) $nav.='<input type="hidden" name="resourceid" value="'.$resourceid.'">';
2018-11-19 14:25:34 +01:00
if ( $filter ) $nav .= '<input type="hidden" name="search_filter" value="' . $filter . '">' ;
2018-03-29 11:15:50 +02:00
//if ($filtert) $nav.='<input type="hidden" name="filtert" value="'.$filtert.'">';
2018-02-06 01:16:51 +01:00
//if ($socid) $nav.='<input type="hidden" name="socid" value="'.$socid.'">';
2018-11-19 14:25:34 +01:00
if ( $showbirthday ) $nav .= '<input type="hidden" name="search_showbirthday" value="1">' ;
2018-02-06 01:16:51 +01:00
//if ($pid) $nav.='<input type="hidden" name="projectid" value="'.$pid.'">';
//if ($usergroup) $nav.='<input type="hidden" name="usergroup" value="'.$usergroup.'">';
2017-12-02 01:13:32 +01:00
print $nav ;
2014-06-27 20:50:46 +02:00
dol_fiche_head ( $head , $tabactive , $langs -> trans ( 'Agenda' ), 0 , 'action' );
2016-06-06 13:05:36 +02:00
print_actions_filter ( $form , $canedit , $status , $year , $month , $day , $showbirthday , 0 , $filtert , 0 , $pid , $socid , $action , - 1 , $actioncode , $usergroup , '' , $resourceid );
2011-05-16 19:27:20 +02:00
dol_fiche_end ();
// Add link to show birthdays
2011-05-22 11:51:21 +02:00
$link = '' ;
/*
2012-01-22 20:16:11 +01:00
if ( empty ( $conf -> use_javascript_ajax ))
{
$newparam = $param ; // newparam is for birthday links
$newparam = preg_replace ( '/showbirthday=[0-1]/i' , 'showbirthday=' . ( empty ( $showbirthday ) ? 1 : 0 ), $newparam );
if ( ! preg_match ( '/showbirthday=/i' , $newparam )) $newparam .= '&showbirthday=1' ;
$link = '<a href="' . $_SERVER [ 'PHP_SELF' ];
$link .= '?' . $newparam ;
$link .= '">' ;
if ( empty ( $showbirthday )) $link .= $langs -> trans ( " AgendaShowBirthdayEvents " );
else $link .= $langs -> trans ( " AgendaHideBirthdayEvents " );
$link .= '</a>' ;
}
2011-05-22 11:51:21 +02:00
*/
2011-05-16 19:27:20 +02:00
2015-07-21 12:19:21 +02:00
$s = $newtitle ;
// Calendars from hooks
$parameters = array (); $object = null ;
$reshook = $hookmanager -> executeHooks ( 'addCalendarChoice' , $parameters , $object , $action );
if ( empty ( $reshook ))
{
$s .= $hookmanager -> resPrint ;
}
elseif ( $reshook > 1 )
{
$s = $hookmanager -> resPrint ;
}
2018-04-18 03:26:15 +02:00
$newcardbutton = '' ;
2017-06-27 10:37:00 +02:00
if ( $user -> rights -> agenda -> myactions -> create || $user -> rights -> agenda -> allactions -> create )
{
2017-07-08 00:19:30 +02:00
$tmpforcreatebutton = dol_getdate ( dol_now (), true );
$newparam .= '&month=' . str_pad ( $month , 2 , " 0 " , STR_PAD_LEFT ) . '&year=' . $tmpforcreatebutton [ 'year' ];
2017-06-27 10:37:00 +02:00
//$param='month='.$monthshown.'&year='.$year;
$hourminsec = '100000' ;
2018-06-13 22:57:41 +02:00
$newcardbutton = '<a class="butActionNew" href="' . DOL_URL_ROOT . '/comm/action/card.php?action=create&datep=' . sprintf ( " %04d%02d%02d " , $tmpforcreatebutton [ 'year' ], $tmpforcreatebutton [ 'mon' ], $tmpforcreatebutton [ 'mday' ]) . $hourminsec . '&backtopage=' . urlencode ( $_SERVER [ " PHP_SELF " ] . ( $newparam ? '?' . $newparam : '' )) . '"><span class="valignmiddle">' . $langs -> trans ( " AddAction " ) . '</span>' ;
2018-04-18 03:26:15 +02:00
$newcardbutton .= '<span class="fa fa-plus-circle valignmiddle"></span>' ;
$newcardbutton .= '</a>' ;
2017-06-27 10:37:00 +02:00
}
2018-04-18 03:26:15 +02:00
print_barre_liste ( $s , $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , '' , $num , - 1 * $nbtotalofrecords , '' , 0 , $nav . $newcardbutton , '' , $limit );
2016-02-11 20:24:15 +01:00
2016-11-27 13:49:46 +01:00
$moreforfilter = '' ;
2017-06-10 13:54:43 +02:00
2017-11-11 18:41:35 +01:00
$varpage = empty ( $contextpage ) ? $_SERVER [ " PHP_SELF " ] : $contextpage ;
$selectedfields = $form -> multiSelectArrayWithCheckbox ( 'selectedfields' , $arrayfields , $varpage ); // This also change content of $arrayfields
if ( $massactionbutton ) $selectedfields .= $form -> showCheckAddButtons ( 'checkforselect' , 1 );
2016-02-11 20:24:15 +01:00
$i = 0 ;
2016-11-27 13:49:46 +01:00
print '<div class="div-table-responsive">' ;
print '<table class="tagtable liste' . ( $moreforfilter ? " listwithfilterbefore " : " " ) . '">' . " \n " ;
2017-04-10 17:25:53 +02:00
print '<tr class="liste_titre_filter">' ;
2018-03-22 10:46:42 +01:00
if ( ! empty ( $arrayfields [ 'a.id' ][ 'checked' ])) print '<td class="liste_titre"><input type="text" class="maxwidth50" name="search_id" value="' . $search_id . '"></td>' ;
2017-11-14 01:57:50 +01:00
if ( ! empty ( $arrayfields [ 'owner' ][ 'checked' ])) print '<td class="liste_titre"></td>' ;
if ( ! empty ( $arrayfields [ 'c.libelle' ][ 'checked' ])) print '<td class="liste_titre"></td>' ;
2018-01-16 18:02:36 +01:00
if ( ! empty ( $arrayfields [ 'a.label' ][ 'checked' ])) print '<td class="liste_titre"><input type="text" class="maxwidth75" name="search_title" value="' . $search_title . '"></td>' ;
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.datep' ][ 'checked' ])) {
2018-03-06 11:54:05 +01:00
print '<td class="liste_titre nowraponall" align="center">' ;
2018-09-09 11:25:59 +02:00
print $form -> selectDate ( $datestart , 'datestart' , 0 , 0 , 1 , '' , 1 , 0 );
2017-11-11 18:41:35 +01:00
print '</td>' ;
}
2017-11-14 01:57:50 +01:00
if ( ! empty ( $arrayfields [ 'a.datep2' ][ 'checked' ])) {
2018-03-06 11:54:05 +01:00
print '<td class="liste_titre nowraponall" align="center">' ;
2018-09-09 11:25:59 +02:00
print $form -> selectDate ( $dateend , 'dateend' , 0 , 0 , 1 , '' , 1 , 0 );
2017-11-11 18:41:35 +01:00
print '</td>' ;
}
2018-09-09 11:25:59 +02:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) {
print '<td class="liste_titre"></td>' ;
}
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.fk_contact' ][ 'checked' ])) print '<td class="liste_titre"></td>' ;
2017-11-14 01:57:50 +01:00
if ( ! empty ( $arrayfields [ 'a.fk_element' ][ 'checked' ])) print '<td class="liste_titre"></td>' ;
2017-11-27 15:24:29 +01:00
2017-11-11 18:41:35 +01:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_input.tpl.php' ;
2017-11-11 18:41:35 +01:00
// Fields from hook
$parameters = array ( 'arrayfields' => $arrayfields );
$reshook = $hookmanager -> executeHooks ( 'printFieldListOption' , $parameters ); // Note that $action and $object may have been modified by hook
print $hookmanager -> resPrint ;
2018-11-19 14:25:34 +01:00
if ( ! empty ( $arrayfields [ 'a.datec' ][ 'checked' ])) print '<td class="liste_titre"></td>' ;
if ( ! empty ( $arrayfields [ 'a.tms' ][ 'checked' ])) print '<td class="liste_titre"></td>' ;
if ( ! empty ( $arrayfields [ 'a.percent' ][ 'checked' ])) {
2017-11-13 10:05:29 +01:00
print '<td class="liste_titre center">' ;
2017-11-11 18:41:35 +01:00
print $formactions -> form_select_status_action ( 'formaction' , $status , 1 , 'status' , 1 , 2 );
2018-01-16 18:02:36 +01:00
print ajax_combobox ( 'selectstatus' );
2017-11-11 18:41:35 +01:00
print '</td>' ;
}
2016-04-23 16:51:22 +02:00
// Action column
print '<td class="liste_titre" align="middle">' ;
2017-05-14 21:06:33 +02:00
$searchpicto = $form -> showFilterButtons ();
print $searchpicto ;
2016-04-23 16:51:22 +02:00
print '</td>' ;
2014-09-09 12:28:35 +02:00
print " </tr> \n " ;
2017-06-10 13:54:43 +02:00
2017-04-10 17:25:53 +02:00
print '<tr class="liste_titre">' ;
2017-11-14 11:05:58 +01:00
if ( ! empty ( $arrayfields [ 'a.id' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.id' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.id " , $param , " " , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'owner' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'owner' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " " , $param , " " , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'c.libelle' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'c.libelle' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " c.libelle " , $param , " " , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'a.label' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.label' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.label " , $param , " " , " " , $sortfield , $sortorder );
2017-06-10 13:54:43 +02:00
//if (! empty($conf->global->AGENDA_USE_EVENT_TYPE))
2017-11-14 11:05:58 +01:00
if ( ! empty ( $arrayfields [ 'a.datep' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.datep' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.datep " , $param , '' , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'a.datep2' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.datep2' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.datep2 " , $param , '' , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.nom' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " s.nom " , $param , " " , " " , $sortfield , $sortorder );
2017-11-14 01:57:50 +01:00
if ( ! empty ( $arrayfields [ 'a.fk_contact' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.fk_contact' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.fk_contact " , $param , " " , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'a.fk_element' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.fk_element' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.fk_element " , $param , " " , " " , $sortfield , $sortorder );
2017-11-11 18:41:35 +01:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_title.tpl.php' ;
2017-11-11 18:41:35 +01:00
// Hook fields
$parameters = array ( 'arrayfields' => $arrayfields , 'param' => $param , 'sortfield' => $sortfield , 'sortorder' => $sortorder );
$reshook = $hookmanager -> executeHooks ( 'printFieldListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
print $hookmanager -> resPrint ;
2018-11-19 14:25:34 +01:00
if ( ! empty ( $arrayfields [ 'a.datec' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.datec' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.datec,a.id " , $param , " " , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'a.tms' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'a.tms' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " a.tms,a.id " , $param , " " , 'align="center"' , $sortfield , $sortorder );
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.percent' ][ 'checked' ])) print_liste_field_titre ( " Status " , $_SERVER [ " PHP_SELF " ], " a.percent " , $param , " " , 'align="center"' , $sortfield , $sortorder );
print_liste_field_titre ( $selectedfields , $_SERVER [ " PHP_SELF " ], " " , '' , '' , 'align="center"' , $sortfield , $sortorder , 'maxwidthsearch ' );
2017-04-10 17:25:53 +02:00
print " </tr> \n " ;
2014-09-09 12:28:35 +02:00
2010-02-04 22:32:14 +01:00
$contactstatic = new Contact ( $db );
2011-05-16 19:27:20 +02:00
$now = dol_now ();
2009-01-07 16:21:16 +01:00
$delay_warning = $conf -> global -> MAIN_DELAY_ACTIONS_TODO * 24 * 60 * 60 ;
2009-08-24 19:11:30 +02:00
2016-01-15 01:52:16 +01:00
require_once DOL_DOCUMENT_ROOT . '/comm/action/class/cactioncomm.class.php' ;
$caction = new CActionComm ( $db );
2017-11-24 20:02:46 +01:00
$arraylist = $caction -> liste_array ( 1 , 'code' , '' , ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ) ? 1 : 0 ), '' , 1 );
2017-06-10 13:54:43 +02:00
2010-02-04 22:32:14 +01:00
while ( $i < min ( $num , $limit ))
{
$obj = $db -> fetch_object ( $resql );
2008-02-26 19:34:53 +01:00
2014-10-20 12:29:35 +02:00
// Discard auto action if option is on
2014-10-20 13:20:19 +02:00
if ( ! empty ( $conf -> global -> AGENDA_ALWAYS_HIDE_AUTO ) && $obj -> type_code == 'AC_OTH_AUTO' )
2014-10-20 12:29:35 +02:00
{
$i ++ ;
continue ;
}
2008-02-26 19:34:53 +01:00
$actionstatic -> id = $obj -> id ;
2016-10-17 17:52:58 +02:00
$actionstatic -> ref = $obj -> id ;
2014-10-20 13:20:19 +02:00
$actionstatic -> type_code = $obj -> type_code ;
$actionstatic -> type_label = $obj -> type_label ;
2016-10-30 12:39:51 +01:00
$actionstatic -> type_picto = $obj -> type_picto ;
2015-02-10 11:38:13 +01:00
$actionstatic -> label = $obj -> label ;
2017-06-10 13:54:43 +02:00
2017-04-14 11:22:48 +02:00
print '<tr class="oddeven">' ;
2016-10-17 17:52:58 +02:00
2018-03-06 11:54:05 +01:00
// Ref
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.id' ][ 'checked' ])) {
print '<td>' ;
print $actionstatic -> getNomUrl ( 1 , - 1 );
print '</td>' ;
2016-01-15 01:52:16 +01:00
}
2016-10-17 17:52:58 +02:00
2017-09-16 00:49:46 +02:00
// User owner
2017-11-14 01:57:50 +01:00
if ( ! empty ( $arrayfields [ 'owner' ][ 'checked' ]))
2017-09-16 00:49:46 +02:00
{
2017-11-16 14:44:55 +01:00
print '<td class="' . ( $conf -> browser -> name != 'chrome' ? '' : 'tdoverflowmax100' ) . '">' ; // With edge and chrom the td overflow is not supported correctly when content is not full text.
2017-11-14 01:57:50 +01:00
if ( $obj -> fk_user_action > 0 )
{
$userstatic -> fetch ( $obj -> fk_user_action );
print $userstatic -> getNomUrl ( - 1 );
}
else print ' ' ;
print '</td>' ;
2017-09-16 00:49:46 +02:00
}
2017-11-24 20:02:46 +01:00
// Type
if ( ! empty ( $arrayfields [ 'c.libelle' ][ 'checked' ]))
{
2017-11-11 18:41:35 +01:00
print '<td>' ;
if ( ! empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ))
{
if ( $actionstatic -> type_picto ) print img_picto ( '' , $actionstatic -> type_picto );
2017-11-13 10:05:29 +01:00
else {
2017-11-24 20:02:46 +01:00
if ( $actionstatic -> type_code == 'AC_RDV' ) print img_picto ( '' , 'object_group' , '' , false , 0 , 0 , '' , 'paddingright' ) . ' ' ;
elseif ( $actionstatic -> type_code == 'AC_TEL' ) print img_picto ( '' , 'object_phoning' , '' , false , 0 , 0 , '' , 'paddingright' ) . ' ' ;
elseif ( $actionstatic -> type_code == 'AC_FAX' ) print img_picto ( '' , 'object_phoning_fax' , '' , false , 0 , 0 , '' , 'paddingright' ) . ' ' ;
elseif ( $actionstatic -> type_code == 'AC_EMAIL' ) print img_picto ( '' , 'object_email' , '' , false , 0 , 0 , '' , 'paddingright' ) . ' ' ;
elseif ( $actionstatic -> type_code == 'AC_INT' ) print img_picto ( '' , 'object_intervention' , '' , false , 0 , 0 , '' , 'paddingright' ) . ' ' ;
elseif ( ! preg_match ( '/_AUTO/' , $actionstatic -> type_code )) print img_picto ( '' , 'object_action' , '' , false , 0 , 0 , '' , 'paddingright' ) . ' ' ;
2017-11-13 10:05:29 +01:00
}
2017-11-11 18:41:35 +01:00
}
$labeltype = $obj -> type_code ;
if ( empty ( $conf -> global -> AGENDA_USE_EVENT_TYPE ) && empty ( $arraylist [ $labeltype ])) $labeltype = 'AC_OTH' ;
if ( ! empty ( $arraylist [ $labeltype ])) $labeltype = $arraylist [ $labeltype ];
print dol_trunc ( $labeltype , 28 );
print '</td>' ;
2016-01-15 01:52:16 +01:00
}
2017-11-24 20:02:46 +01:00
// Label
2017-11-13 10:05:29 +01:00
if ( ! empty ( $arrayfields [ 'a.label' ][ 'checked' ])) {
2018-01-16 18:02:36 +01:00
print '<td class="tdoverflowmax200">' ;
2017-11-13 10:05:29 +01:00
print $actionstatic -> label ;
print '</td>' ;
2010-02-04 22:32:14 +01:00
}
2017-11-14 01:57:50 +01:00
2017-11-24 20:02:46 +01:00
// Start date
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.datep' ][ 'checked' ])) {
2018-01-16 18:02:36 +01:00
print '<td align="center">' ;
2017-11-11 18:41:35 +01:00
print dol_print_date ( $db -> jdate ( $obj -> dp ), " dayhour " );
$late = 0 ;
if ( $obj -> percent == 0 && $obj -> dp && $db -> jdate ( $obj -> dp ) < ( $now - $delay_warning )) $late = 1 ;
if ( $obj -> percent == 0 && ! $obj -> dp && $obj -> dp2 && $db -> jdate ( $obj -> dp ) < ( $now - $delay_warning )) $late = 1 ;
if ( $obj -> percent > 0 && $obj -> percent < 100 && $obj -> dp2 && $db -> jdate ( $obj -> dp2 ) < ( $now - $delay_warning )) $late = 1 ;
if ( $obj -> percent > 0 && $obj -> percent < 100 && ! $obj -> dp2 && $obj -> dp && $db -> jdate ( $obj -> dp ) < ( $now - $delay_warning )) $late = 1 ;
if ( $late ) print img_warning ( $langs -> trans ( " Late " )) . ' ' ;
print '</td>' ;
}
2017-11-25 00:12:45 +01:00
// End date
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.datep2' ][ 'checked' ])) {
2018-01-16 18:02:36 +01:00
print '<td align="center">' ;
2017-11-11 18:41:35 +01:00
print dol_print_date ( $db -> jdate ( $obj -> dp2 ), " dayhour " );
print '</td>' ;
}
2017-11-25 00:12:45 +01:00
// Third party
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) {
2017-11-13 10:05:29 +01:00
print '<td class="tdoverflowmax100">' ;
2018-11-28 14:20:55 +01:00
if ( $obj -> socid > 0 )
2017-11-11 18:41:35 +01:00
{
$societestatic -> id = $obj -> socid ;
$societestatic -> client = $obj -> client ;
$societestatic -> name = $obj -> societe ;
2018-11-28 14:20:55 +01:00
$societestatic -> email = $obj -> socemail ;
2017-11-11 18:41:35 +01:00
print $societestatic -> getNomUrl ( 1 , '' , 28 );
}
else print ' ' ;
print '</td>' ;
}
2017-11-25 00:12:45 +01:00
// Contact
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.fk_contact' ][ 'checked' ])) {
print '<td>' ;
if ( $obj -> fk_contact > 0 )
{
2018-04-05 19:23:36 +02:00
$contactstatic -> id = $obj -> fk_contact ;
$contactstatic -> email = $obj -> email ;
2017-11-11 18:41:35 +01:00
$contactstatic -> lastname = $obj -> lastname ;
$contactstatic -> firstname = $obj -> firstname ;
2018-04-05 19:23:36 +02:00
$contactstatic -> phone_pro = $obj -> phone_pro ;
$contactstatic -> phone_mobile = $obj -> phone_mobile ;
$contactstatic -> phone_perso = $obj -> phone_perso ;
$contactstatic -> country_id = $obj -> country_id ;
2017-11-11 18:41:35 +01:00
print $contactstatic -> getNomUrl ( 1 , '' , 28 );
}
else
{
print " " ;
}
print '</td>' ;
2010-02-04 22:32:14 +01:00
}
2017-11-25 00:12:45 +01:00
// Linked object
2017-11-14 01:57:50 +01:00
if ( ! empty ( $arrayfields [ 'a.fk_element' ][ 'checked' ])) {
2017-11-13 10:05:29 +01:00
print '<td>' ;
2018-05-24 12:16:04 +02:00
//var_dump($obj->fkelement.' '.$obj->elementtype);
2017-11-13 10:05:29 +01:00
if ( $obj -> fk_element > 0 && ! empty ( $obj -> elementtype )) {
include_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php' ;
print dolGetElementUrl ( $obj -> fk_element , $obj -> elementtype , 1 );
} else {
print " " ;
}
print '</td>' ;
2010-02-04 22:32:14 +01:00
}
2017-11-25 00:12:45 +01:00
2017-11-11 18:41:35 +01:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_print_fields.tpl.php' ;
2017-11-11 18:41:35 +01:00
// Fields from hook
$parameters = array ( 'arrayfields' => $arrayfields , 'obj' => $obj );
$reshook = $hookmanager -> executeHooks ( 'printFieldListValue' , $parameters ); // Note that $action and $object may have been modified by hook
print $hookmanager -> resPrint ;
2018-11-19 14:25:34 +01:00
// Date creation
if ( ! empty ( $arrayfields [ 'a.datec' ][ 'checked' ])) {
// Status/Percent
print '<td align="center" class="nowrap">' . dol_print_date ( $obj -> datec , 'dayhour' ) . '</td>' ;
}
// Date update
if ( ! empty ( $arrayfields [ 'a.tms' ][ 'checked' ])) {
print '<td align="center" class="nowrap">' . dol_print_date ( $obj -> datem , 'dayhour' ) . '</td>' ;
}
2017-11-11 18:41:35 +01:00
if ( ! empty ( $arrayfields [ 'a.percent' ][ 'checked' ])) {
// Status/Percent
$datep = $db -> jdate ( $obj -> datep );
print '<td align="center" class="nowrap">' . $actionstatic -> LibStatut ( $obj -> percent , 3 , 0 , $datep ) . '</td>' ;
2010-02-04 22:32:14 +01:00
}
2016-04-23 16:51:22 +02:00
print '<td></td>' ;
2017-06-10 13:54:43 +02:00
2010-02-04 22:32:14 +01:00
print " </tr> \n " ;
$i ++ ;
}
print " </table> " ;
2016-11-27 13:49:46 +01:00
print '</div>' ;
2014-09-09 12:28:35 +02:00
print '</form>' ;
2010-02-04 22:32:14 +01:00
$db -> free ( $resql );
2008-02-26 19:34:53 +01:00
}
else
{
2010-02-04 22:32:14 +01:00
dol_print_error ( $db );
2008-02-26 19:34:53 +01:00
}
2018-07-29 13:40:35 +02:00
// End of page
2011-08-27 16:24:16 +02:00
llxFooter ();
2015-01-15 02:06:04 +01:00
$db -> close ();