2006-03-09 12:35:25 +01:00
< ? php
/* Copyright ( C ) 2001 - 2005 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2016-01-28 20:04:02 +01:00
* Copyright ( C ) 2004 - 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
2006-03-09 12:43:13 +01:00
* Copyright ( C ) 2005 Marc Bariley / Ocebo < marc @ ocebo . com >
2012-12-30 15:13:49 +01:00
* Copyright ( C ) 2005 - 2010 Regis Houssin < regis . houssin @ capnetworks . com >
2013-09-10 16:43:06 +02:00
* Copyright ( C ) 2013 Cédric Salvador < csalvador @ gpcsolutions . fr >
2015-04-14 12:21:23 +02:00
* Copyright ( C ) 2015 Claudio Aschieri < c . aschieri @ 19. coop >
2018-04-20 10:38:16 +02:00
* Copyright ( C ) 2018 Ferran Marcet < fmarcet @ 2 byte . es >
2006-03-09 12:35:25 +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
2006-03-09 12:35:25 +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 01:19:04 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2006-03-09 12:35:25 +01:00
*/
2009-01-14 17:40:45 +01:00
/**
2014-09-18 20:33:37 +02:00
* \file htdocs / projet / list . php
2009-01-15 00:36:51 +01:00
* \ingroup projet
2010-01-05 00:33:23 +01:00
* \brief Page to list projects
2009-01-15 00:36:51 +01:00
*/
2006-03-09 12:35:25 +01:00
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 . '/projet/class/project.class.php' ;
2014-12-28 03:39:30 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
2015-01-29 18:17:43 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php' ;
2015-06-30 01:34:17 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php' ;
2006-03-09 12:35:25 +01:00
2018-05-26 21:11:25 +02:00
// Load translation files required by the page
2017-04-11 02:48:16 +02:00
$langs -> loadLangs ( array ( 'projects' , 'companies' , 'commercial' ));
$action = GETPOST ( 'action' , 'alpha' );
$massaction = GETPOST ( 'massaction' , 'alpha' );
$show_files = GETPOST ( 'show_files' , 'int' );
$confirm = GETPOST ( 'confirm' , 'alpha' );
$toselect = GETPOST ( 'toselect' , 'array' );
2018-03-31 18:48:27 +02:00
$contextpage = GETPOST ( 'contextpage' , 'aZ' ) ? GETPOST ( 'contextpage' , 'aZ' ) : 'projectlist' ;
2012-07-28 17:34:21 +02:00
2006-03-09 12:35:25 +01:00
$title = $langs -> trans ( " Projects " );
2008-09-10 22:49:21 +02:00
// Security check
2010-09-18 15:38:43 +02:00
$socid = ( is_numeric ( $_GET [ " socid " ]) ? $_GET [ " socid " ] : 0 );
2017-01-12 15:23:30 +01:00
//if ($user->societe_id > 0) $socid = $user->societe_id; // For external user, no check is done on company because readability is managed by public status of project and assignement.
2006-09-13 20:56:30 +02:00
if ( $socid > 0 )
2006-03-09 12:35:25 +01:00
{
2009-01-15 00:36:51 +01:00
$soc = new Societe ( $db );
$soc -> fetch ( $socid );
2014-10-04 17:20:17 +02:00
$title .= ' (<a href="list.php">' . $soc -> name . '</a>)' ;
2006-03-09 12:35:25 +01:00
}
2010-09-18 15:38:43 +02:00
if ( ! $user -> rights -> projet -> lire ) accessforbidden ();
2006-03-09 12:35:25 +01:00
2017-04-11 02:48:16 +02:00
$diroutputmassaction = $conf -> projet -> dir_output . '/temp/massgeneration/' . $user -> id ;
2006-03-09 12:35:25 +01:00
2017-06-08 14:55:12 +02:00
$limit = GETPOST ( 'limit' , 'int' ) ? GETPOST ( 'limit' , 'int' ) : $conf -> liste_limit ;
2015-10-05 23:52:54 +02:00
$sortfield = GETPOST ( " sortfield " , " alpha " );
$sortorder = GETPOST ( " sortorder " );
$page = GETPOST ( " page " );
2006-03-09 12:35:25 +01:00
$page = is_numeric ( $page ) ? $page : 0 ;
$page = $page == - 1 ? 0 : $page ;
if ( ! $sortfield ) $sortfield = " p.ref " ;
if ( ! $sortorder ) $sortorder = " ASC " ;
2016-12-11 02:20:13 +01:00
$offset = $limit * $page ;
2006-03-09 12:35:25 +01:00
$pageprev = $page - 1 ;
$pagenext = $page + 1 ;
2018-09-07 15:01:34 +02:00
$search_all = GETPOST ( 'search_all' , 'alphanohtml' ) ? GETPOST ( 'search_all' , 'alphanohtml' ) : GETPOST ( 'sall' , 'alphanohtml' );
2016-09-18 15:36:38 +02:00
$search_categ = GETPOST ( " search_categ " , 'alpha' );
2012-03-19 14:44:27 +01:00
$search_ref = GETPOST ( " search_ref " );
$search_label = GETPOST ( " search_label " );
$search_societe = GETPOST ( " search_societe " );
2014-12-28 03:39:30 +01:00
$search_year = GETPOST ( " search_year " );
2015-01-29 18:17:43 +01:00
$search_status = GETPOST ( " search_status " , 'int' );
2015-08-31 15:52:54 +02:00
$search_opp_status = GETPOST ( " search_opp_status " , 'alpha' );
2016-01-28 20:04:02 +01:00
$search_opp_percent = GETPOST ( " search_opp_percent " , 'alpha' );
2016-02-11 16:49:13 +01:00
$search_opp_amount = GETPOST ( " search_opp_amount " , 'alpha' );
2016-06-16 12:42:21 +02:00
$search_budget_amount = GETPOST ( " search_budget_amount " , 'alpha' );
2015-01-29 18:17:43 +01:00
$search_public = GETPOST ( " search_public " , 'int' );
2017-03-14 13:49:04 +01:00
$search_project_user = GETPOST ( 'search_project_user' , 'int' );
2015-01-30 11:08:49 +01:00
$search_sale = GETPOST ( 'search_sale' , 'int' );
2015-10-04 10:45:57 +02:00
$optioncss = GETPOST ( 'optioncss' , 'alpha' );
2015-01-29 18:17:43 +01:00
2015-12-04 15:37:28 +01:00
$mine = $_REQUEST [ 'mode' ] == 'mine' ? 1 : 0 ;
2017-03-14 13:49:04 +01:00
if ( $mine ) { $search_project_user = $user -> id ; $mine = 0 ; }
2015-12-04 15:37:28 +01:00
2017-05-16 17:49:38 +02:00
$search_sday = GETPOST ( 'search_sday' , 'int' );
$search_smonth = GETPOST ( 'search_smonth' , 'int' );
$search_syear = GETPOST ( 'search_syear' , 'int' );
$search_eday = GETPOST ( 'search_eday' , 'int' );
$search_emonth = GETPOST ( 'search_emonth' , 'int' );
$search_eyear = GETPOST ( 'search_eyear' , 'int' );
2015-01-29 18:17:43 +01:00
2015-02-07 03:54:00 +01:00
if ( $search_status == '' ) $search_status =- 1 ; // -1 or 1
2012-03-19 14:44:27 +01:00
2017-06-10 12:56:28 +02:00
// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
2018-03-31 18:48:27 +02:00
$object = new Project ( $db );
$hookmanager -> initHooks ( array ( 'projectlist' ));
2015-12-02 23:20:19 +01:00
$extrafields = new ExtraFields ( $db );
// fetch optionals attributes and labels
2016-04-04 16:02:29 +02:00
$extralabels = $extrafields -> fetch_name_optionals_label ( 'projet' );
2015-12-02 23:20:19 +01:00
$search_array_options = $extrafields -> getOptionalsFromPost ( $extralabels , '' , 'search_' );
// List of fields to search into when doing a "search in all"
$fieldstosearchall = array (
'p.ref' => " Ref " ,
'p.title' => " Label " ,
's.nom' => " ThirdPartyName " ,
2017-10-07 13:09:31 +02:00
" p.note_public " => " NotePublic "
2015-12-02 23:20:19 +01:00
);
if ( empty ( $user -> socid )) $fieldstosearchall [ " p.note_private " ] = " NotePrivate " ;
$arrayfields = array (
2017-10-07 13:09:31 +02:00
'p.ref' => array ( 'label' => $langs -> trans ( " Ref " ), 'checked' => 1 ),
'p.title' => array ( 'label' => $langs -> trans ( " Label " ), 'checked' => 1 ),
2018-01-13 17:21:56 +01:00
's.nom' => array ( 'label' => $langs -> trans ( " ThirdParty " ), 'checked' => 1 , 'enabled' => ( empty ( $conf -> societe -> enabled ) ? 0 : 1 )),
2017-10-07 13:09:31 +02:00
'commercial' => array ( 'label' => $langs -> trans ( " SaleRepresentativesOfThirdParty " ), 'checked' => 0 ),
2015-12-06 01:19:27 +01:00
'p.dateo' => array ( 'label' => $langs -> trans ( " DateStart " ), 'checked' => 1 , 'position' => 100 ),
2017-10-07 13:09:31 +02:00
'p.datee' => array ( 'label' => $langs -> trans ( " DateEnd " ), 'checked' => 1 , 'position' => 101 ),
'p.public' => array ( 'label' => $langs -> trans ( " Visibility " ), 'checked' => 1 , 'position' => 102 ),
'p.opp_amount' => array ( 'label' => $langs -> trans ( " OpportunityAmountShort " ), 'checked' => 1 , 'enabled' => ( $conf -> global -> PROJECT_USE_OPPORTUNITIES ? 1 : 0 ), 'position' => 103 ),
'p.fk_opp_status' => array ( 'label' => $langs -> trans ( " OpportunityStatusShort " ), 'checked' => 1 , 'enabled' => ( $conf -> global -> PROJECT_USE_OPPORTUNITIES ? 1 : 0 ), 'position' => 104 ),
'p.opp_percent' => array ( 'label' => $langs -> trans ( " OpportunityProbabilityShort " ), 'checked' => 1 , 'enabled' => ( $conf -> global -> PROJECT_USE_OPPORTUNITIES ? 1 : 0 ), 'position' => 105 ),
'p.budget_amount' => array ( 'label' => $langs -> trans ( " Budget " ), 'checked' => 0 , 'position' => 110 ),
'p.datec' => array ( 'label' => $langs -> trans ( " DateCreationShort " ), 'checked' => 0 , 'position' => 500 ),
'p.tms' => array ( 'label' => $langs -> trans ( " DateModificationShort " ), 'checked' => 0 , 'position' => 500 ),
'p.fk_statut' => array ( 'label' => $langs -> trans ( " Status " ), 'checked' => 1 , 'position' => 1000 ),
2015-12-02 23:20:19 +01:00
);
// Extra fields
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label ))
{
2017-06-08 12:21:41 +02:00
foreach ( $extrafields -> attribute_label as $key => $val )
2015-12-02 23:20:19 +01:00
{
2017-10-29 11:00:02 +01:00
if ( ! empty ( $extrafields -> attribute_list [ $key ])) $arrayfields [ " ef. " . $key ] = array ( 'label' => $extrafields -> attribute_label [ $key ], 'checked' => (( $extrafields -> attribute_list [ $key ] < 0 ) ? 0 : 1 ), 'position' => $extrafields -> attribute_pos [ $key ], 'enabled' => ( abs ( $extrafields -> attribute_list [ $key ]) != 3 && $extrafields -> attribute_perms [ $key ]));
2015-12-02 23:20:19 +01:00
}
}
2017-05-24 22:48:44 +02:00
2015-12-02 23:20:19 +01:00
/*
* Actions
*/
2017-09-15 10:50:50 +02:00
if ( GETPOST ( 'cancel' , 'alpha' )) { $action = 'list' ; $massaction = '' ; }
if ( ! GETPOST ( 'confirmmassaction' , 'alpha' ) && $massaction != 'presend' && $massaction != 'confirm_presend' && $massaction != 'confirm_createbills' ) { $massaction = '' ; }
2016-11-02 12:48:50 +01:00
$parameters = array ( 'socid' => $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' );
if ( empty ( $reshook ))
{
2017-10-07 13:09:31 +02:00
// Selection of new fields
include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php' ;
// Purge search criteria
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
{
$search_all = '' ;
$search_categ = '' ;
$search_ref = " " ;
$search_label = " " ;
$search_societe = " " ;
$search_year = " " ;
$search_status =- 1 ;
$search_opp_status =- 1 ;
$search_opp_amount = '' ;
$search_opp_percent = '' ;
$search_budget_amount = '' ;
$search_public = " " ;
$search_sale = " " ;
$search_project_user = '' ;
$search_sday = " " ;
$search_smonth = " " ;
$search_syear = " " ;
$search_eday = " " ;
$search_emonth = " " ;
$search_eyear = " " ;
$toselect = '' ;
$search_array_options = array ();
}
// Mass actions
$objectclass = 'Project' ;
$objectlabel = 'Project' ;
$permtoread = $user -> rights -> projet -> lire ;
$permtodelete = $user -> rights -> projet -> supprimer ;
$uploaddir = $conf -> projet -> dir_output ;
include DOL_DOCUMENT_ROOT . '/core/actions_massactions.inc.php' ;
2018-03-16 15:24:49 +01:00
// Close records
if ( ! $error && $massaction == 'close' && $user -> rights -> projet -> creer )
{
$db -> begin ();
$objecttmp = new $objectclass ( $db );
$nbok = 0 ;
foreach ( $toselect as $toselectid )
{
$result = $objecttmp -> fetch ( $toselectid );
if ( $result > 0 )
{
$userWrite = $object -> restrictedProjectArea ( $user , 'write' );
if ( $userWrite > 0 && $objecttmp -> statut == 1 ) {
$result = $objecttmp -> setClose ( $user );
if ( $result <= 0 ) {
setEventMessages ( $objecttmp -> error , $objecttmp -> errors , 'errors' );
$error ++ ;
break ;
} else $nbok ++ ;
} elseif ( $userWrite <= 0 ) {
setEventMessages ( $langs -> trans ( " DontHavePermissionForCloseProject " , $objecttmp -> ref ), null , 'warnings' );
} else {
setEventMessages ( $langs -> trans ( " DontHaveTheValidateStatus " , $objecttmp -> ref ), null , 'warnings' );
}
}
else
{
setEventMessages ( $objecttmp -> error , $objecttmp -> errors , 'errors' );
$error ++ ;
break ;
}
}
if ( ! $error )
{
if ( $nbok > 1 ) setEventMessages ( $langs -> trans ( " RecordsClosed " , $nbok ), null , 'mesgs' );
else setEventMessages ( $langs -> trans ( " RecordsClosed " , $nbok ), null , 'mesgs' );
$db -> commit ();
}
else
{
$db -> rollback ();
}
}
2016-11-02 12:48:50 +01:00
}
2015-06-16 19:36:44 +02:00
2009-01-14 17:40:45 +01:00
/*
* View
2006-03-09 12:35:25 +01:00
*/
2010-02-04 16:30:42 +01:00
$socstatic = new Societe ( $db );
2015-01-29 18:17:43 +01:00
$form = new Form ( $db );
$formother = new FormOther ( $db );
2015-06-30 01:34:17 +02:00
$formproject = new FormProjets ( $db );
2008-03-02 23:20:44 +01:00
2016-01-21 14:59:09 +01:00
$title = $langs -> trans ( " Projects " );
2017-03-14 13:49:04 +01:00
//if ($search_project_user == $user->id) $title=$langs->trans("MyProjects");
2012-03-19 14:44:27 +01:00
2016-01-21 14:59:09 +01:00
// Get list of project id allowed to user (in a string list separated by coma)
2017-03-21 13:38:00 +01:00
$projectsListId = '' ;
2017-05-24 22:48:44 +02:00
if ( ! $user -> rights -> projet -> all -> lire ) $projectsListId = $object -> getProjectsAuthorizedForUser ( $user , 0 , 1 , $socid );
2016-01-21 14:59:09 +01:00
// Get id of types of contacts for projects (This list never contains a lot of elements)
$listofprojectcontacttype = array ();
$sql = " SELECT ctc.rowid, ctc.code FROM " . MAIN_DB_PREFIX . " c_type_contact as ctc " ;
2017-05-24 22:48:44 +02:00
$sql .= " WHERE ctc.element = ' " . $object -> element . " ' " ;
2016-01-21 14:59:09 +01:00
$sql .= " AND ctc.source = 'internal' " ;
$resql = $db -> query ( $sql );
if ( $resql )
{
2017-10-07 13:09:31 +02:00
while ( $obj = $db -> fetch_object ( $resql ))
{
$listofprojectcontacttype [ $obj -> rowid ] = $obj -> code ;
}
2016-01-21 14:59:09 +01:00
}
else dol_print_error ( $db );
if ( count ( $listofprojectcontacttype ) == 0 ) $listofprojectcontacttype [ 0 ] = '0' ; // To avoid sql syntax error if not found
2010-02-04 18:54:00 +01:00
2016-09-18 15:36:38 +02:00
2016-01-21 14:59:09 +01:00
$distinct = 'DISTINCT' ; // We add distinct until we are added a protection to be sure a contact of a project and task is only once.
2017-05-24 22:48:44 +02:00
$sql = " SELECT " . $distinct . " p.rowid as id, p.ref, p.title, p.fk_statut, p.fk_opp_status, p.public, p.fk_user_creat " ;
2016-06-22 20:22:22 +02:00
$sql .= " , p.datec as date_creation, p.dateo as date_start, p.datee as date_end, p.opp_amount, p.opp_percent, p.tms as date_update, p.budget_amount " ;
2014-10-04 17:20:17 +02:00
$sql .= " , s.nom as name, s.rowid as socid " ;
2015-06-30 01:34:17 +02:00
$sql .= " , cls.code as opp_status_code " ;
2016-09-18 15:36:38 +02:00
// We'll need these fields in order to filter by categ
if ( $search_categ ) $sql .= " , cs.fk_categorie, cs.fk_project " ;
2015-06-22 15:48:48 +02:00
// Add fields for extrafields
2016-10-01 18:00:17 +02:00
foreach ( $extrafields -> attribute_label as $key => $val ) $sql .= ( $extrafields -> attribute_type [ $key ] != 'separate' ? " ,ef. " . $key . ' as options_' . $key : '' );
2015-06-22 15:48:48 +02:00
// Add fields from hooks
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldListSelect' , $parameters ); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager -> resPrint ;
2009-11-29 20:05:22 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " projet as p " ;
2016-04-04 16:02:29 +02:00
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label )) $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " projet_extrafields as ef on (p.rowid = ef.fk_object) " ;
2009-04-27 22:37:50 +02:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe as s on p.fk_soc = s.rowid " ;
2015-06-30 01:34:17 +02:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_lead_status as cls on p.fk_opp_status = cls.rowid " ;
2016-09-18 15:36:38 +02:00
// We'll need this table joined to the select in order to filter by categ
if ( ! empty ( $search_categ )) $sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . " categorie_project as cs ON p.rowid = cs.fk_project " ; // We'll need this table joined to the select in order to filter by categ
2015-01-30 11:08:49 +01:00
// We'll need this table joined to the select in order to filter by sale
2018-06-20 21:24:57 +02:00
// No check is done on company permission because readability is managed by public status of project and assignement.
2017-01-12 15:23:30 +01:00
//if ($search_sale > 0 || (! $user->rights->societe->client->voir && ! $socid)) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON sc.fk_soc = s.rowid";
if ( $search_sale > 0 ) $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe_commerciaux as sc ON sc.fk_soc = s.rowid " ;
2017-03-14 13:49:04 +01:00
if ( $search_project_user > 0 )
2015-01-30 11:08:49 +01:00
{
2016-01-21 14:59:09 +01:00
$sql .= " , " . MAIN_DB_PREFIX . " element_contact as ecp " ;
2015-01-30 11:08:49 +01:00
}
2017-05-30 18:50:54 +02:00
$sql .= " WHERE p.entity IN ( " . getEntity ( 'project' ) . ')' ;
2016-01-21 14:59:09 +01:00
if ( ! $user -> rights -> projet -> all -> lire ) $sql .= " AND p.rowid IN ( " . $projectsListId . " ) " ; // public and assigned to, or restricted to company for external users
2017-07-31 04:52:27 +02:00
// No need to check if company is external user, as filtering of projects must be done by getProjectsAuthorizedForUser
2018-06-20 21:24:57 +02:00
if ( $socid > 0 ) $sql .= " AND (p.fk_soc = " . $socid . " ) " ; // This filter if when we use a hard coded filter on company on url (not related to filter for external users)
2016-09-18 15:36:38 +02:00
if ( $search_categ > 0 ) $sql .= " AND cs.fk_categorie = " . $db -> escape ( $search_categ );
if ( $search_categ == - 2 ) $sql .= " AND cs.fk_categorie IS NULL " ;
2015-06-22 15:48:48 +02:00
if ( $search_ref ) $sql .= natural_search ( 'p.ref' , $search_ref );
if ( $search_label ) $sql .= natural_search ( 'p.title' , $search_label );
if ( $search_societe ) $sql .= natural_search ( 's.nom' , $search_societe );
2016-02-11 16:49:13 +01:00
if ( $search_opp_amount ) $sql .= natural_search ( 'p.opp_amount' , $search_opp_amount , 1 );
if ( $search_opp_percent ) $sql .= natural_search ( 'p.opp_percent' , $search_opp_percent , 1 );
2017-05-16 17:49:38 +02:00
if ( $search_smonth > 0 )
2015-04-14 12:21:23 +02:00
{
2017-10-07 13:09:31 +02:00
if ( $search_syear > 0 && empty ( $search_sday ))
$sql .= " AND p.dateo BETWEEN ' " . $db -> idate ( dol_get_first_day ( $search_syear , $search_smonth , false )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $search_syear , $search_smonth , false )) . " ' " ;
else if ( $search_syear > 0 && ! empty ( $search_sday ))
$sql .= " AND p.dateo BETWEEN ' " . $db -> idate ( dol_mktime ( 0 , 0 , 0 , $search_smonth , $search_sday , $search_syear )) . " ' AND ' " . $db -> idate ( dol_mktime ( 23 , 59 , 59 , $search_smonth , $search_sday , $search_syear )) . " ' " ;
else
$sql .= " AND date_format(p.dateo, '%m') = ' " . $search_smonth . " ' " ;
2015-04-14 12:21:23 +02:00
}
2017-05-16 17:49:38 +02:00
else if ( $search_syear > 0 )
2015-04-14 12:21:23 +02:00
{
2017-10-07 13:09:31 +02:00
$sql .= " AND p.dateo BETWEEN ' " . $db -> idate ( dol_get_first_day ( $search_syear , 1 , false )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $search_syear , 12 , false )) . " ' " ;
2015-04-14 12:21:23 +02:00
}
2017-05-16 17:49:38 +02:00
if ( $search_emonth > 0 )
2015-01-29 18:17:43 +01:00
{
2017-10-07 13:09:31 +02:00
if ( $search_eyear > 0 && empty ( $search_eday ))
$sql .= " AND p.datee BETWEEN ' " . $db -> idate ( dol_get_first_day ( $search_eyear , $search_emonth , false )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $search_eyear , $search_emonth , false )) . " ' " ;
else if ( $search_eyear > 0 && ! empty ( $search_eday ))
$sql .= " AND p.datee BETWEEN ' " . $db -> idate ( dol_mktime ( 0 , 0 , 0 , $search_emonth , $search_eday , $search_eyear )) . " ' AND ' " . $db -> idate ( dol_mktime ( 23 , 59 , 59 , $search_emonth , $search_eday , $search_eyear )) . " ' " ;
else
$sql .= " AND date_format(p.datee, '%m') = ' " . $search_emonth . " ' " ;
2014-12-28 03:39:30 +01:00
}
2017-05-16 17:49:38 +02:00
else if ( $search_eyear > 0 )
2015-01-29 18:17:43 +01:00
{
2017-10-07 13:09:31 +02:00
$sql .= " AND p.datee BETWEEN ' " . $db -> idate ( dol_get_first_day ( $search_eyear , 1 , false )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $search_eyear , 12 , false )) . " ' " ;
2015-01-29 18:17:43 +01:00
}
2015-10-17 00:14:36 +02:00
if ( $search_all ) $sql .= natural_search ( array_keys ( $fieldstosearchall ), $search_all );
2017-06-08 12:21:41 +02:00
if ( $search_status >= 0 )
2016-10-18 12:16:12 +02:00
{
2017-10-07 13:09:31 +02:00
if ( $search_status == 99 ) $sql .= " AND p.fk_statut <> 2 " ;
else $sql .= " AND p.fk_statut = " . $db -> escape ( $search_status );
2016-10-18 12:16:12 +02:00
}
2017-06-08 12:21:41 +02:00
if ( $search_opp_status )
2015-08-31 15:52:54 +02:00
{
2017-10-07 13:09:31 +02:00
if ( is_numeric ( $search_opp_status ) && $search_opp_status > 0 ) $sql .= " AND p.fk_opp_status = " . $db -> escape ( $search_opp_status );
if ( $search_opp_status == 'all' ) $sql .= " AND p.fk_opp_status IS NOT NULL " ;
if ( $search_opp_status == 'openedopp' ) $sql .= " AND p.fk_opp_status IS NOT NULL AND p.fk_opp_status NOT IN (SELECT rowid FROM " . MAIN_DB_PREFIX . " c_lead_status WHERE code IN ('WON','LOST')) " ;
if ( $search_opp_status == 'none' ) $sql .= " AND p.fk_opp_status IS NULL " ;
2015-08-31 15:52:54 +02:00
}
2015-01-29 18:17:43 +01:00
if ( $search_public != '' ) $sql .= " AND p.public = " . $db -> escape ( $search_public );
2017-01-12 15:23:30 +01:00
// For external user, no check is done on company permission because readability is managed by public status of project and assignement.
2018-06-20 21:24:57 +02:00
//if ($socid > 0) $sql.= " AND s.rowid = ".$socid;
if ( $search_sale > 0 ) $sql .= " AND sc.fk_user = " . $search_sale ;
// No check is done on company permission because readability is managed by public status of project and assignement.
2017-01-12 15:23:30 +01:00
//if (! $user->rights->societe->client->voir && ! $socid) $sql.= " AND ((s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id.") OR (s.rowid IS NULL))";
2017-06-08 12:21:41 +02:00
if ( $search_project_user > 0 ) $sql .= " AND ecp.fk_c_type_contact IN ( " . join ( ',' , array_keys ( $listofprojectcontacttype )) . " ) AND ecp.element_id = p.rowid AND ecp.fk_socpeople = " . $search_project_user ;
2016-06-16 12:42:21 +02:00
if ( $search_opp_amount != '' ) $sql .= natural_search ( 'p.opp_amount' , $search_opp_amount , 1 );
if ( $search_budget_amount != '' ) $sql .= natural_search ( 'p.budget_amount' , $search_budget_amount , 1 );
2016-04-04 16:02:29 +02: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' ;
2015-06-22 15:48:48 +02:00
// Add where from hooks
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldListWhere' , $parameters ); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager -> resPrint ;
2010-03-13 00:40:39 +01:00
$sql .= $db -> order ( $sortfield , $sortorder );
2016-01-21 14:59:09 +01:00
2017-01-15 20:49:20 +01:00
$nbtotalofrecords = '' ;
2016-01-21 14:59:09 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST ))
{
2017-10-07 13:09:31 +02:00
$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-01-21 14:59:09 +01:00
}
$sql .= $db -> plimit ( $limit + 1 , $offset );
2016-07-08 10:59:13 +02:00
//print $sql;
2014-06-12 11:31:53 +02:00
dol_syslog ( " list allowed project " , LOG_DEBUG );
2016-01-21 14:59:09 +01:00
//print $sql;
2006-03-09 12:35:25 +01:00
$resql = $db -> query ( $sql );
2016-11-02 12:48:50 +01:00
if ( ! $resql )
2006-03-09 12:35:25 +01:00
{
2017-10-07 13:09:31 +02:00
dol_print_error ( $db );
exit ;
2016-11-02 12:48:50 +01:00
}
2016-06-16 12:42:21 +02:00
2016-11-02 12:48:50 +01:00
$num = $db -> num_rows ( $resql );
2015-02-07 03:54:00 +01:00
2017-04-11 02:48:16 +02:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
2016-11-02 12:48:50 +01:00
if ( $num == 1 && ! empty ( $conf -> global -> MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE ) && $search_all )
{
2017-10-07 13:09:31 +02:00
$obj = $db -> fetch_object ( $resql );
header ( " Location: " . DOL_URL_ROOT . '/projet/card.php?id=' . $obj -> id );
exit ;
2016-11-02 12:48:50 +01:00
}
2015-06-22 11:55:21 +02:00
2017-04-11 02:48:16 +02:00
$help_url = " EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos " ;
llxHeader ( " " , $title , $help_url );
2016-09-18 15:57:53 +02:00
2016-11-02 12:48:50 +01:00
$param = '' ;
if ( ! empty ( $contextpage ) && $contextpage != $_SERVER [ " PHP_SELF " ]) $param .= '&contextpage=' . $contextpage ;
if ( $limit > 0 && $limit != $conf -> liste_limit ) $param .= '&limit=' . $limit ;
2017-07-28 23:32:55 +02:00
if ( $search_all != '' ) $param .= '&search_all=' . $search_all ;
2017-05-16 17:49:38 +02:00
if ( $search_sday ) $param .= '&search_sday=' . $search_sday ;
if ( $search_smonth ) $param .= '&search_smonth=' . $search_smonth ;
if ( $search_syear ) $param .= '&search_syear=' . $search_syear ;
if ( $search_eday ) $param .= '&search_eday=' . $search_eday ;
if ( $search_emonth ) $param .= '&search_emonth=' . $search_emonth ;
if ( $search_eyear ) $param .= '&search_eyear=' . $search_eyear ;
2016-11-02 12:48:50 +01:00
if ( $socid ) $param .= '&socid=' . $socid ;
if ( $search_ref != '' ) $param .= '&search_ref=' . $search_ref ;
if ( $search_label != '' ) $param .= '&search_label=' . $search_label ;
if ( $search_societe != '' ) $param .= '&search_societe=' . $search_societe ;
if ( $search_status >= 0 ) $param .= '&search_status=' . $search_status ;
2017-06-08 12:21:41 +02:00
if (( is_numeric ( $search_opp_status ) && $search_opp_status >= 0 ) || in_array ( $search_opp_status , array ( 'all' , 'openedopp' , 'none' ))) $param .= '&search_opp_status=' . urlencode ( $search_opp_status );
if ( $search_opp_percent != '' ) $param .= '&search_opp_percent=' . urlencode ( $search_opp_percent );
2016-11-02 12:48:50 +01:00
if ( $search_public != '' ) $param .= '&search_public=' . $search_public ;
2017-03-14 13:49:04 +01:00
if ( $search_project_user != '' ) $param .= '&search_project_user=' . $search_project_user ;
2016-11-02 12:48:50 +01:00
if ( $search_sale > 0 ) $param .= '&search_sale=' . $search_sale ;
if ( $search_opp_amount != '' ) $param .= '&search_opp_amount=' . $search_opp_amount ;
if ( $search_budget_amount != '' ) $param .= '&search_budget_amount=' . $search_budget_amount ;
if ( $optioncss != '' ) $param .= '&optioncss=' . $optioncss ;
// 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' ;
2016-09-18 15:48:29 +02:00
2017-04-11 02:48:16 +02:00
// List of mass actions available
$arrayofmassactions = array (
// 'presend'=>$langs->trans("SendByMail"),
// 'builddoc'=>$langs->trans("PDFMerge"),
);
//if($user->rights->societe->creer) $arrayofmassactions['createbills']=$langs->trans("CreateInvoiceForThisCustomer");
2018-03-16 15:24:49 +01:00
if ( $user -> rights -> projet -> creer ) $arrayofmassactions [ 'close' ] = $langs -> trans ( " Close " );
2018-03-19 11:29:06 +01:00
if ( $user -> rights -> societe -> supprimer ) $arrayofmassactions [ 'predelete' ] = $langs -> trans ( " Delete " );
2017-11-11 16:03:22 +01:00
if ( in_array ( $massaction , array ( 'presend' , 'predelete' ))) $arrayofmassactions = array ();
2018-03-16 15:24:49 +01:00
2017-04-11 02:48:16 +02:00
$massactionbutton = $form -> selectMassAction ( '' , $arrayofmassactions );
2018-03-30 16:54:38 +02:00
$newcardbutton = '' ;
if ( $user -> rights -> projet -> creer )
{
2018-06-13 22:57:41 +02:00
$newcardbutton = '<a class="butActionNew" href="' . DOL_URL_ROOT . '/projet/card.php?action=create"><span class="valignmiddle">' . $langs -> trans ( 'NewProject' ) . '</span>' ;
2018-04-18 03:26:15 +02:00
$newcardbutton .= '<span class="fa fa-plus-circle valignmiddle"></span>' ;
$newcardbutton .= '</a>' ;
2018-03-30 16:54:38 +02:00
}
2016-11-02 12:48:50 +01:00
print '<form method="POST" id="searchFormList" action="' . $_SERVER [ " PHP_SELF " ] . '">' ;
if ( $optioncss != '' ) print '<input type="hidden" name="optioncss" value="' . $optioncss . '">' ;
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">' ;
print '<input type="hidden" name="action" value="list">' ;
print '<input type="hidden" name="sortfield" value="' . $sortfield . '">' ;
print '<input type="hidden" name="sortorder" value="' . $sortorder . '">' ;
2017-05-21 02:43:51 +02:00
print '<input type="hidden" name="page" value="' . $page . '">' ;
2016-11-02 12:48:50 +01:00
print '<input type="hidden" name="type" value="' . $type . '">' ;
print '<input type="hidden" name="contextpage" value="' . $contextpage . '">' ;
2018-03-30 16:54:38 +02:00
print_barre_liste ( $title , $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , $massactionbutton , $num , $nbtotalofrecords , 'title_project' , 0 , $newcardbutton , '' , $limit );
2016-11-02 12:48:50 +01:00
// Show description of content
2017-12-20 21:33:45 +01:00
print '<div class="opacitymedium">' ;
2017-03-14 13:49:04 +01:00
if ( $search_project_user == $user -> id ) print $langs -> trans ( " MyProjectsDesc " ) . '<br><br>' ;
2016-11-02 12:48:50 +01:00
else
{
if ( $user -> rights -> projet -> all -> lire && ! $socid ) print $langs -> trans ( " ProjectsDesc " ) . '<br><br>' ;
else print $langs -> trans ( " ProjectsPublicDesc " ) . '<br><br>' ;
}
2017-12-20 21:33:45 +01:00
print '</div>' ;
2016-11-02 12:48:50 +01:00
2017-11-15 11:39:11 +01:00
$topicmail = " Information " ;
$modelmail = " project " ;
$objecttmp = new Project ( $db );
$trackid = 'prj' . $object -> id ;
include DOL_DOCUMENT_ROOT . '/core/tpl/massactions_pre.tpl.php' ;
2016-11-02 12:48:50 +01:00
if ( $search_all )
{
2017-10-07 13:09:31 +02:00
foreach ( $fieldstosearchall as $key => $val ) $fieldstosearchall [ $key ] = $langs -> trans ( $val );
2018-06-22 22:53:53 +02:00
print '<div class="divsearchfieldfilter">' . $langs -> trans ( " FilterOnInto " , $search_all ) . join ( ', ' , $fieldstosearchall ) . '</div>' ;
2016-11-02 12:48:50 +01:00
}
$moreforfilter = '' ;
// Filter on categories
if ( ! empty ( $conf -> categorie -> enabled ))
{
2017-10-07 13:09:31 +02:00
require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php' ;
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'ProjectCategories' ) . ': ' ;
$moreforfilter .= $formother -> select_categories ( 'project' , $search_categ , 'search_categ' , 1 , 1 , 'maxwidth300' );
$moreforfilter .= '</div>' ;
2016-11-02 12:48:50 +01:00
}
// If the user can view user other than himself
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'ProjectsWithThisUserAsContact' ) . ': ' ;
2017-07-28 23:32:55 +02:00
$includeonly = 'hierachyme' ;
2016-11-02 12:48:50 +01:00
if ( empty ( $user -> rights -> user -> user -> lire )) $includeonly = array ( $user -> id );
2017-06-14 11:28:42 +02:00
$moreforfilter .= $form -> select_dolusers ( $search_project_user ? $search_project_user : '' , 'search_project_user' , 1 , '' , 0 , $includeonly , '' , 0 , 0 , 0 , '' , 0 , '' , 'maxwidth200' );
2016-11-02 12:48:50 +01:00
$moreforfilter .= '</div>' ;
// If the user can view thirdparties other than his'
if ( $user -> rights -> societe -> client -> voir || $socid )
{
$langs -> load ( " commercial " );
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'ThirdPartiesOfSaleRepresentative' ) . ': ' ;
2017-06-14 11:28:42 +02:00
$moreforfilter .= $formother -> select_salesrepresentatives ( $search_sale , 'search_sale' , $user , 0 , 1 , 'maxwidth200' );
2016-11-02 12:48:50 +01:00
$moreforfilter .= '</div>' ;
}
if ( ! empty ( $moreforfilter ))
{
print '<div class="liste_titre liste_titre_bydiv centpercent">' ;
print $moreforfilter ;
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldPreListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
2015-12-06 01:19:27 +01:00
print $hookmanager -> resPrint ;
2016-11-02 12:48:50 +01:00
print '</div>' ;
}
$varpage = empty ( $contextpage ) ? $_SERVER [ " PHP_SELF " ] : $contextpage ;
$selectedfields = $form -> multiSelectArrayWithCheckbox ( 'selectedfields' , $arrayfields , $varpage ); // This also change content of $arrayfields
2017-04-11 02:48:16 +02:00
if ( $massactionbutton ) $selectedfields .= $form -> showCheckAddButtons ( 'checkforselect' , 1 );
2016-11-02 12:48:50 +01:00
2016-11-27 13:49:46 +01:00
print '<div class="div-table-responsive">' ;
print '<table class="tagtable liste' . ( $moreforfilter ? " listwithfilterbefore " : " " ) . '">' . " \n " ;
2016-11-02 12:48:50 +01:00
2017-03-28 18:42:23 +02:00
print '<tr class="liste_titre_filter">' ;
2016-11-02 12:48:50 +01:00
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
2017-07-31 04:52:27 +02:00
print '<input type="text" class="flat" name="search_ref" value="' . dol_escape_htmltag ( $search_ref ) . '" size="6">' ;
2016-11-02 12:48:50 +01:00
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'p.title' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
2017-07-31 04:52:27 +02:00
print '<input type="text" class="flat" name="search_label" size="8" value="' . dol_escape_htmltag ( $search_label ) . '">' ;
2016-11-02 12:48:50 +01:00
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
2017-07-31 04:52:27 +02:00
if ( $socid > 0 )
{
$tmpthirdparty = new Societe ( $db );
$tmpthirdparty -> fetch ( $socid );
$search_societe = $tmpthirdparty -> nom ;
}
print '<input type="text" class="flat" name="search_societe" size="8" value="' . dol_escape_htmltag ( $search_societe ) . '">' ;
2016-11-02 12:48:50 +01:00
print '</td>' ;
}
// Sale representative
if ( ! empty ( $arrayfields [ 'commercial' ][ 'checked' ]))
{
print '<td class="liste_titre"> </td>' ;
}
// Start date
if ( ! empty ( $arrayfields [ 'p.dateo' ][ 'checked' ]))
{
2018-03-07 14:13:55 +01:00
print '<td class="liste_titre center nowraponall">' ;
if ( ! empty ( $conf -> global -> MAIN_LIST_FILTER_ON_DAY )) print '<input class="flat valignmiddle" type="text" size="1" maxlength="2" name="search_sday" value="' . dol_escape_htmltag ( $search_sday ) . '">' ;
print '<input class="flat valignmiddle" type="text" size="1" maxlength="2" name="search_smonth" value="' . dol_escape_htmltag ( $search_smonth ) . '">' ;
$formother -> select_year ( $search_syear ? $search_syear :- 1 , 'search_syear' , 1 , 20 , 5 , 0 , 0 , '' , 'widthauto valignmiddle' );
2016-11-02 12:48:50 +01:00
print '</td>' ;
}
// End date
if ( ! empty ( $arrayfields [ 'p.datee' ][ 'checked' ]))
{
2018-03-07 14:13:55 +01:00
print '<td class="liste_titre center nowraponall">' ;
if ( ! empty ( $conf -> global -> MAIN_LIST_FILTER_ON_DAY )) print '<input class="flat valignmiddle" type="text" size="1" maxlength="2" name="search_eday" value="' . dol_escape_htmltag ( $search_eday ) . '">' ;
print '<input class="flat valignmiddle" type="text" size="1" maxlength="2" name="search_emonth" value="' . dol_escape_htmltag ( $search_emonth ) . '">' ;
$formother -> select_year ( $search_eyear ? $search_eyear :- 1 , 'search_eyear' , 1 , 20 , 5 , 0 , 0 , '' , 'widthauto valignmiddle' );
2016-11-02 12:48:50 +01:00
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'p.public' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
$array = array ( '' => '' , 0 => $langs -> trans ( " PrivateProject " ), 1 => $langs -> trans ( " SharedProject " ));
2017-10-07 13:09:31 +02:00
print $form -> selectarray ( 'search_public' , $array , $search_public );
print '</td>' ;
2016-11-02 12:48:50 +01:00
}
if ( ! empty ( $arrayfields [ 'p.fk_opp_status' ][ 'checked' ]))
{
print '<td class="liste_titre nowrap center">' ;
2018-11-07 16:26:25 +01:00
print $formproject -> selectOpportunityStatus ( 'search_opp_status' , $search_opp_status , 1 , 0 , 1 , 0 , 'maxwidth100' );
2017-10-07 13:09:31 +02:00
print '</td>' ;
2016-11-02 12:48:50 +01:00
}
2017-06-08 12:21:41 +02:00
if ( ! empty ( $arrayfields [ 'p.opp_amount' ][ 'checked' ]))
{
print '<td class="liste_titre nowrap right">' ;
print '<input type="text" class="flat" name="search_opp_amount" size="3" value="' . $search_opp_amount . '">' ;
print '</td>' ;
}
2016-11-02 12:48:50 +01:00
if ( ! empty ( $arrayfields [ 'p.opp_percent' ][ 'checked' ]))
{
print '<td class="liste_titre nowrap right">' ;
print '<input type="text" class="flat" name="search_opp_percent" size="2" value="' . $search_opp_percent . '">' ;
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'p.budget_amount' ][ 'checked' ]))
{
print '<td class="liste_titre nowrap" align="right">' ;
print '<input type="text" class="flat" name="search_budget_amount" size="4" value="' . $search_budget_amount . '">' ;
2017-10-07 13:09:31 +02:00
print '</td>' ;
2016-11-02 12:48:50 +01:00
}
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_input.tpl.php' ;
2016-11-02 12:48:50 +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 ;
if ( ! empty ( $arrayfields [ 'p.datec' ][ 'checked' ]))
{
2017-10-07 13:09:31 +02:00
// Date creation
print '<td class="liste_titre">' ;
print '</td>' ;
2016-11-02 12:48:50 +01:00
}
if ( ! empty ( $arrayfields [ 'p.tms' ][ 'checked' ]))
{
2017-10-07 13:09:31 +02:00
// Date modification
print '<td class="liste_titre">' ;
print '</td>' ;
2016-11-02 12:48:50 +01:00
}
if ( ! empty ( $arrayfields [ 'p.fk_statut' ][ 'checked' ]))
{
print '<td class="liste_titre nowrap" align="right">' ;
2017-10-07 13:09:31 +02:00
$arrayofstatus = array ();
foreach ( $object -> statuts_short as $key => $val ) $arrayofstatus [ $key ] = $langs -> trans ( $val );
2017-10-18 18:36:10 +02:00
$arrayofstatus [ '99' ] = $langs -> trans ( " NotClosed " ) . ' (' . $langs -> trans ( 'Draft' ) . ' + ' . $langs -> trans ( 'Opened' ) . ')' ;
print $form -> selectarray ( 'search_status' , $arrayofstatus , $search_status , 1 , 0 , 0 , '' , 0 , 0 , 0 , '' , 'maxwidth100 selectarrowonleft' );
print ajax_combobox ( 'search_status' );
2017-10-07 13:09:31 +02:00
print '</td>' ;
2016-11-02 12:48:50 +01:00
}
// Action column
print '<td class="liste_titre" align="right">' ;
2017-05-14 21:06:33 +02:00
$searchpicto = $form -> showFilterButtons ();
print $searchpicto ;
2016-11-02 12:48:50 +01:00
print '</td>' ;
print '</tr>' . " \n " ;
2017-03-28 18:42:23 +02:00
print '<tr class="liste_titre">' ;
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.ref' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.ref " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.title' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.title' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.title " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.nom' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " s.nom " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'commercial' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'commercial' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.dateo' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.dateo' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.dateo " , " " , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.datee' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.datee' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.datee " , " " , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.public' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.public' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.public " , " " , $param , " " , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.fk_opp_status' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.fk_opp_status' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'p.fk_opp_status' , " " , $param , 'align="center"' , $sortfield , $sortorder );
2017-06-08 12:21:41 +02:00
if ( ! empty ( $arrayfields [ 'p.opp_amount' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.opp_amount' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'p.opp_amount' , " " , $param , 'align="right"' , $sortfield , $sortorder );
2017-03-28 18:42:23 +02:00
if ( ! empty ( $arrayfields [ 'p.opp_percent' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.opp_percent' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'p.opp_percent' , " " , $param , 'align="right"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.budget_amount' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.budget_amount' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 'p.budget_amount' , " " , $param , 'align="right"' , $sortfield , $sortorder );
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_title.tpl.php' ;
2017-03-28 18:42:23 +02:00
// Hook fields
2018-04-20 10:38:16 +02:00
$parameters = array ( 'arrayfields' => $arrayfields , 'param' => $param , 'sortfield' => $sortfield , 'sortorder' => $sortorder );
2017-03-28 18:42:23 +02:00
$reshook = $hookmanager -> executeHooks ( 'printFieldListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
print $hookmanager -> resPrint ;
if ( ! empty ( $arrayfields [ 'p.datec' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.datec' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.datec " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.tms' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.tms' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.tms " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'p.fk_statut' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'p.fk_statut' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " p.fk_statut " , " " , $param , 'align="right"' , $sortfield , $sortorder );
2017-04-07 14:18:04 +02:00
print_liste_field_titre ( $selectedfields , $_SERVER [ " PHP_SELF " ], " " , '' , '' , 'align="center"' , $sortfield , $sortorder , 'maxwidthsearch ' );
2017-03-28 18:42:23 +02:00
print " </tr> \n " ;
2016-11-02 12:48:50 +01:00
$i = 0 ;
$totalarray = array ();
while ( $i < min ( $num , $limit ))
{
$obj = $db -> fetch_object ( $resql );
2017-05-24 22:48:44 +02:00
$object -> id = $obj -> id ;
$object -> user_author_id = $obj -> fk_user_creat ;
$object -> public = $obj -> public ;
$object -> ref = $obj -> ref ;
$object -> datee = $db -> jdate ( $obj -> date_end );
$object -> statut = $obj -> fk_statut ;
$object -> opp_status = $obj -> fk_opp_status ;
2017-10-25 12:03:22 +02:00
$object -> title = $obj -> title ;
2017-06-08 12:21:41 +02:00
2017-05-24 22:48:44 +02:00
$userAccess = $object -> restrictedProjectArea ( $user ); // why this ?
2016-11-02 12:48:50 +01:00
if ( $userAccess >= 0 )
{
2017-03-29 11:03:13 +02:00
print '<tr class="oddeven">' ;
2009-01-15 00:36:51 +01:00
2016-11-02 12:48:50 +01:00
// Project url
2017-10-07 13:09:31 +02:00
if ( ! empty ( $arrayfields [ 'p.ref' ][ 'checked' ]))
{
print '<td class="nowrap">' ;
print $object -> getNomUrl ( 1 );
if ( $object -> hasDelay ()) print img_warning ( $langs -> trans ( 'Late' ));
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2016-11-02 12:48:50 +01:00
// Title
2017-10-07 13:09:31 +02:00
if ( ! empty ( $arrayfields [ 'p.title' ][ 'checked' ]))
{
print '<td class="tdoverflowmax100">' ;
print dol_trunc ( $obj -> title , 80 );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2016-11-02 12:48:50 +01:00
// Company
2017-10-07 13:09:31 +02:00
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ]))
{
print '<td class="tdoverflowmax100">' ;
if ( $obj -> socid )
{
$socstatic -> id = $obj -> socid ;
$socstatic -> name = $obj -> name ;
print $socstatic -> getNomUrl ( 1 );
}
else
{
print ' ' ;
}
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2016-11-02 12:48:50 +01:00
// Sales Representatives
2017-10-07 13:09:31 +02:00
if ( ! empty ( $arrayfields [ 'commercial' ][ 'checked' ]))
{
print '<td>' ;
if ( $obj -> socid )
{
$socstatic -> id = $obj -> socid ;
$socstatic -> name = $obj -> name ;
$listsalesrepresentatives = $socstatic -> getSalesRepresentatives ( $user );
$nbofsalesrepresentative = count ( $listsalesrepresentatives );
if ( $nbofsalesrepresentative > 3 ) // We print only number
{
print '<a href="' . DOL_URL_ROOT . '/societe/commerciaux.php?socid=' . $socstatic -> id . '">' ;
print $nbofsalesrepresentative ;
print '</a>' ;
}
else if ( $nbofsalesrepresentative > 0 )
{
$userstatic = new User ( $db );
$j = 0 ;
foreach ( $listsalesrepresentatives as $val )
{
$userstatic -> id = $val [ 'id' ];
$userstatic -> lastname = $val [ 'lastname' ];
$userstatic -> firstname = $val [ 'firstname' ];
$userstatic -> email = $val [ 'email' ];
$userstatic -> statut = $val [ 'statut' ];
$userstatic -> entity = $val [ 'entity' ];
$userstatic -> photo = $val [ 'photo' ];
//print $userstatic->getNomUrl(1, '', 0, 0, 12);
print $userstatic -> getNomUrl ( - 2 );
$j ++ ;
if ( $j < $nbofsalesrepresentative ) print ' ' ;
}
}
//else print $langs->trans("NoSalesRepresentativeAffected");
}
else
{
print ' ' ;
}
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2016-11-02 12:48:50 +01:00
// Date start
2017-10-07 13:09:31 +02:00
if ( ! empty ( $arrayfields [ 'p.dateo' ][ 'checked' ]))
{
2016-11-02 12:48:50 +01:00
print '<td class="center">' ;
2017-10-07 13:09:31 +02:00
print dol_print_date ( $db -> jdate ( $obj -> date_start ), 'day' );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2016-11-02 12:48:50 +01:00
// Date end
2017-10-07 13:09:31 +02:00
if ( ! empty ( $arrayfields [ 'p.datee' ][ 'checked' ]))
{
2016-11-02 12:48:50 +01:00
print '<td class="center">' ;
2017-10-07 13:09:31 +02:00
print dol_print_date ( $db -> jdate ( $obj -> date_end ), 'day' );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2016-11-02 12:48:50 +01:00
// Visibility
2017-10-07 13:09:31 +02:00
if ( ! empty ( $arrayfields [ 'p.public' ][ 'checked' ]))
{
print '<td align="left">' ;
if ( $obj -> public ) print $langs -> trans ( 'SharedProject' );
else print $langs -> trans ( 'PrivateProject' );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Opp Status
if ( ! empty ( $arrayfields [ 'p.fk_opp_status' ][ 'checked' ]))
{
print '<td class="center">' ;
2018-11-08 20:05:01 +01:00
if ( $obj -> opp_status_code ) print $langs -> trans ( " OppStatus " . $obj -> opp_status_code );
2017-06-08 12:21:41 +02:00
print '</td>' ;
2017-10-07 13:09:31 +02:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Opp Amount
if ( ! empty ( $arrayfields [ 'p.opp_amount' ][ 'checked' ]))
{
2016-11-02 12:48:50 +01:00
print '<td align="right">' ;
2017-06-08 12:21:41 +02:00
//if ($obj->opp_status_code)
if ( strcmp ( $obj -> opp_amount , '' ))
2016-11-02 12:48:50 +01:00
{
2017-10-07 13:09:31 +02:00
print price ( $obj -> opp_amount , 1 , $langs , 1 , - 1 , - 1 , '' );
$totalarray [ 'totalopp' ] += $obj -> opp_amount ;
2016-11-02 12:48:50 +01:00
}
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'totaloppfield' ] = $totalarray [ 'nbfield' ];
2017-10-07 13:09:31 +02:00
}
// Opp percent
if ( ! empty ( $arrayfields [ 'p.opp_percent' ][ 'checked' ]))
{
2016-11-02 12:48:50 +01:00
print '<td align="right">' ;
2017-06-08 12:21:41 +02:00
if ( $obj -> opp_percent ) print price ( $obj -> opp_percent , 1 , $langs , 1 , 0 ) . '%' ;
2016-11-02 12:48:50 +01:00
print '</td>' ;
2017-10-07 13:09:31 +02:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Budget
if ( ! empty ( $arrayfields [ 'p.budget_amount' ][ 'checked' ]))
{
2016-11-02 12:48:50 +01:00
print '<td align="right">' ;
2017-06-08 12:21:41 +02:00
if ( $obj -> budget_amount != '' )
2016-11-02 12:48:50 +01:00
{
2017-10-07 13:09:31 +02:00
print price ( $obj -> budget_amount , 1 , $langs , 1 , - 1 , - 1 );
$totalarray [ 'totalbudget' ] += $obj -> budget_amount ;
2016-11-02 12:48:50 +01:00
}
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
if ( ! $i ) $totalarray [ 'totalbudgetfield' ] = $totalarray [ 'nbfield' ];
2017-10-07 13:09:31 +02:00
}
2016-11-02 12:48:50 +01:00
// Extra fields
2017-11-27 15:24:29 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_print_fields.tpl.php' ;
2016-11-02 12:48:50 +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 ;
// Date creation
if ( ! empty ( $arrayfields [ 'p.datec' ][ 'checked' ]))
{
2017-10-07 13:09:31 +02:00
print '<td align="center">' ;
2017-10-12 17:09:17 +02:00
print dol_print_date ( $db -> jdate ( $obj -> date_creation ), 'dayhour' , 'tzuser' );
2017-10-07 13:09:31 +02:00
print '</td>' ;
2016-11-02 12:48:50 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Date modification
if ( ! empty ( $arrayfields [ 'p.tms' ][ 'checked' ]))
{
2017-10-07 13:09:31 +02:00
print '<td align="center">' ;
2017-10-12 17:09:17 +02:00
print dol_print_date ( $db -> jdate ( $obj -> date_update ), 'dayhour' , 'tzuser' );
2017-10-07 13:09:31 +02:00
print '</td>' ;
2016-11-02 12:48:50 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Status
if ( ! empty ( $arrayfields [ 'p.fk_statut' ][ 'checked' ]))
{
2017-10-07 13:09:31 +02:00
print '<td align="right">' . $object -> getLibStatut ( 5 ) . '</td>' ;
2016-11-02 12:48:50 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2017-10-07 13:09:31 +02:00
// Action column
print '<td class="nowrap" align="center">' ;
if ( $massactionbutton || $massaction ) // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
{
$selected = 0 ;
if ( in_array ( $obj -> id , $arrayofselected )) $selected = 1 ;
print '<input id="cb' . $obj -> id . '" class="flat checkforselect" type="checkbox" name="toselect[]" value="' . $obj -> id . '"' . ( $selected ? ' checked="checked"' : '' ) . '>' ;
}
print '</td>' ;
2016-11-02 12:48:50 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-06-08 12:21:41 +02:00
2016-11-02 12:48:50 +01:00
print " </tr> \n " ;
2015-04-14 12:21:23 +02:00
2016-11-02 12:48:50 +01:00
}
2015-06-16 19:36:44 +02:00
2016-11-02 12:48:50 +01:00
$i ++ ;
}
// Show total line
if ( isset ( $totalarray [ 'totaloppfield' ]) || isset ( $totalarray [ 'totalbudgetfield' ]))
{
2017-10-07 13:09:31 +02:00
print '<tr class="liste_total">' ;
$i = 0 ;
while ( $i < $totalarray [ 'nbfield' ])
{
$i ++ ;
if ( $i == 1 )
{
if ( $num < $limit && empty ( $offset )) print '<td align="left">' . $langs -> trans ( " Total " ) . '</td>' ;
else print '<td align="left">' . $langs -> trans ( " Totalforthispage " ) . '</td>' ;
}
elseif ( $totalarray [ 'totaloppfield' ] == $i ) print '<td align="right">' . price ( $totalarray [ 'totalopp' ], 1 , $langs , 1 , - 1 , - 1 ) . '</td>' ;
elseif ( $totalarray [ 'totalbudgetfield' ] == $i ) print '<td align="right">' . price ( $totalarray [ 'totalbudget' ], 1 , $langs , 1 , - 1 , - 1 ) . '</td>' ;
else print '<td></td>' ;
}
print '</tr>' ;
2016-11-02 12:48:50 +01:00
}
2015-06-16 19:36:44 +02:00
2016-11-02 12:48:50 +01:00
$db -> free ( $resql );
2009-01-15 00:36:51 +01:00
2016-11-02 12:48:50 +01:00
$parameters = array ( 'sql' => $sql );
$reshook = $hookmanager -> executeHooks ( 'printFieldListFooter' , $parameters ); // Note that $action and $object may have been modified by hook
print $hookmanager -> resPrint ;
2006-03-09 12:35:25 +01:00
2016-11-02 12:48:50 +01:00
print " </table> \n " ;
2016-11-27 13:49:46 +01:00
print '</div>' ;
2016-11-02 12:48:50 +01:00
print " </form> \n " ;
2006-03-09 12:35:25 +01:00
2011-08-27 16:24:16 +02:00
llxFooter ();
2012-02-04 18:34:52 +01:00
$db -> close ();