2004-11-26 15:20:43 +01:00
< ? php
/* Copyright ( C ) 2001 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2017-09-18 15:46:17 +02:00
* Copyright ( C ) 2004 - 2017 Laurent Destailleur < eldy @ users . sourceforge . net >
2012-12-30 15:13:49 +01:00
* Copyright ( C ) 2005 - 2012 Regis Houssin < regis . houssin @ capnetworks . com >
2013-09-10 16:43:06 +02:00
* Copyright ( C ) 2013 Cédric Salvador < csalvador @ gpcsolutions . fr >
2014-07-12 10:56:13 +02:00
* Copyright ( C ) 2014 Juanjo Menent < jmenent @ 2 byte . es >
2015-10-17 00:52:35 +02:00
* Copyright ( C ) 2015 Claudio Aschieri < c . aschieri @ 19. coop >
* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
2018-04-20 10:38:16 +02:00
* Copyright ( C ) 2016 - 2018 Ferran Marcet < fmarcet @ 2 byte . es >
2004-11-26 15:20:43 +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
2004-11-26 15:20:43 +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:45:11 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2004-11-26 15:20:43 +01:00
*/
2005-04-23 00:39:11 +02:00
/**
2014-09-18 20:33:37 +02:00
* \file htdocs / contrat / list . php
2008-10-27 20:19:51 +01:00
* \ingroup contrat
* \brief Page liste des contrats
*/
2004-11-26 15:20:43 +01:00
2010-03-27 15:50:05 +01:00
require ( " ../main.inc.php " );
2017-09-16 15:39:52 +02:00
require_once DOL_DOCUMENT_ROOT . '/contrat/class/contrat.class.php' ;
2015-02-23 20:26:34 +01:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php' ;
2017-09-16 15:39:52 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php' ;
2016-08-17 11:58:55 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php' ;
2016-09-02 14:47:59 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/company.lib.php' ;
2004-11-26 15:20:43 +01:00
2018-05-26 20:32:23 +02:00
// Load translation files required by the page
$langs -> loadLangs ( array ( 'contracts' , 'products' , 'companies' , 'compta' ));
2004-11-26 15:20:43 +01:00
2016-09-02 14:47:59 +02:00
$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' ) : 'contractlist' ; // To manage different context of search
2016-09-02 14:47:59 +02:00
2014-11-03 06:05:51 +01:00
$search_name = GETPOST ( 'search_name' );
2017-09-22 16:31:05 +02:00
$search_email = GETPOST ( 'search_email' );
2016-09-02 14:47:59 +02:00
$search_town = GETPOST ( 'search_town' , 'alpha' );
$search_zip = GETPOST ( 'search_zip' , 'alpha' );
$search_state = trim ( GETPOST ( " search_state " ));
$search_country = GETPOST ( " search_country " , 'int' );
$search_type_thirdparty = GETPOST ( " search_type_thirdparty " , 'int' );
2012-07-25 11:46:33 +02:00
$search_contract = GETPOST ( 'search_contract' );
2017-09-18 00:07:00 +02:00
$search_ref_customer = GETPOST ( 'search_ref_customer' , 'alpha' );
2014-09-24 10:21:26 +02:00
$search_ref_supplier = GETPOST ( 'search_ref_supplier' , 'alpha' );
2017-12-12 11:31:30 +01:00
$sall = trim (( GETPOST ( 'search_all' , 'alphanohtml' ) != '' ) ? GETPOST ( 'search_all' , 'alphanohtml' ) : GETPOST ( 'sall' , 'alphanohtml' ));
2014-11-03 06:05:51 +01:00
$search_status = GETPOST ( 'search_status' );
2012-07-25 11:46:33 +02:00
$socid = GETPOST ( 'socid' );
2015-10-09 20:00:43 +02:00
$search_user = GETPOST ( 'search_user' , 'int' );
$search_sale = GETPOST ( 'search_sale' , 'int' );
$search_product_category = GETPOST ( 'search_product_category' , 'int' );
2017-10-07 14:54:31 +02:00
$search_dfmonth = GETPOST ( 'search_dfmonth' , 'int' );
$search_dfyear = GETPOST ( 'search_dfyear' , 'int' );
2017-11-07 13:33:24 +01:00
$search_op2df = GETPOST ( 'search_op2df' , 'alpha' );
2016-08-17 11:58:55 +02:00
$day = GETPOST ( " day " , " int " );
$year = GETPOST ( " year " , " int " );
$month = GETPOST ( " month " , " int " );
2004-11-26 15:20:43 +01:00
2015-10-04 10:45:57 +02:00
$optioncss = GETPOST ( 'optioncss' , 'alpha' );
2015-02-23 20:26:34 +01:00
2017-06-08 14:55:12 +02:00
$limit = GETPOST ( 'limit' , 'int' ) ? GETPOST ( 'limit' , 'int' ) : $conf -> liste_limit ;
2016-02-11 20:40:33 +01:00
$sortfield = GETPOST ( " sortfield " , 'alpha' );
$sortorder = GETPOST ( " sortorder " , 'alpha' );
$page = GETPOST ( " page " , 'int' );
2017-06-06 10:53:53 +02:00
if ( empty ( $page ) || $page == - 1 ) { $page = 0 ; } // If $page is not defined, or '' or -1
2016-02-11 20:40:33 +01:00
$offset = $limit * $page ;
$pageprev = $page - 1 ;
$pagenext = $page + 1 ;
if ( ! $sortfield ) $sortfield = 'c.ref' ;
if ( ! $sortorder ) $sortorder = 'DESC' ;
2005-04-23 00:39:11 +02:00
2008-02-25 17:30:43 +01:00
// Security check
2012-07-25 11:46:33 +02:00
$id = GETPOST ( 'id' , 'int' );
2008-02-25 21:03:21 +01:00
if ( $user -> societe_id ) $socid = $user -> societe_id ;
2012-07-25 11:46:33 +02:00
$result = restrictedArea ( $user , 'contrat' , $id );
2004-11-26 15:20:43 +01:00
2017-09-16 15:39:52 +02:00
$diroutputmassaction = $conf -> contrat -> dir_output . '/temp/massgeneration/' . $user -> id ;
2006-03-18 18:41:36 +01:00
$staticcontrat = new Contrat ( $db );
$staticcontratligne = new ContratLigne ( $db );
2014-11-03 06:05:51 +01:00
if ( $search_status == '' ) $search_status = 1 ;
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 Contrat ( $db );
$hookmanager -> initHooks ( array ( 'contractlist' ));
2016-07-13 12:02:45 +02:00
$extrafields = new ExtraFields ( $db );
// fetch optionals attributes and labels
2016-09-02 14:47:59 +02:00
$extralabels = $extrafields -> fetch_name_optionals_label ( 'contrat' );
2016-07-13 12:02:45 +02:00
$search_array_options = $extrafields -> getOptionalsFromPost ( $extralabels , '' , 'search_' );
2015-10-17 00:52:35 +02:00
// List of fields to search into when doing a "search in all"
$fieldstosearchall = array (
2017-10-13 13:28:26 +02:00
'c.ref' => 'Ref' ,
'c.ref_customer' => 'RefCustomer' ,
'c.ref_supplier' => 'RefSupplier' ,
's.nom' => " ThirdParty " ,
'c.note_public' => 'NotePublic' ,
2015-10-17 00:52:35 +02:00
);
if ( empty ( $user -> socid )) $fieldstosearchall [ " c.note_private " ] = " NotePrivate " ;
2016-09-02 14:47:59 +02:00
$arrayfields = array (
2017-10-13 13:28:26 +02:00
'c.ref' => array ( 'label' => $langs -> trans ( " Ref " ), 'checked' => 1 ),
'c.ref_customer' => array ( 'label' => $langs -> trans ( " RefCustomer " ), 'checked' => 1 ),
'c.ref_supplier' => array ( 'label' => $langs -> trans ( " RefSupplier " ), 'checked' => 1 ),
's.nom' => array ( 'label' => $langs -> trans ( " ThirdParty " ), 'checked' => 1 ),
's.email' => array ( 'label' => $langs -> trans ( " ThirdPartyEmail " ), 'checked' => 0 ),
2017-09-22 16:31:05 +02:00
's.town' => array ( 'label' => $langs -> trans ( " Town " ), 'checked' => 0 ),
2017-10-13 13:28:26 +02:00
's.zip' => array ( 'label' => $langs -> trans ( " Zip " ), 'checked' => 0 ),
'state.nom' => array ( 'label' => $langs -> trans ( " StateShort " ), 'checked' => 0 ),
'country.code_iso' => array ( 'label' => $langs -> trans ( " Country " ), 'checked' => 0 ),
2017-11-23 20:00:54 +01:00
'sale_representative' => array ( 'label' => $langs -> trans ( " SaleRepresentativesOfThirdParty " ), 'checked' => 1 ),
2017-10-13 13:28:26 +02:00
'c.date_contrat' => array ( 'label' => $langs -> trans ( " DateContract " ), 'checked' => 1 ),
'c.datec' => array ( 'label' => $langs -> trans ( " DateCreation " ), 'checked' => 0 , 'position' => 500 ),
'c.tms' => array ( 'label' => $langs -> trans ( " DateModificationShort " ), 'checked' => 0 , 'position' => 500 ),
2017-11-07 13:33:24 +01:00
'lower_planned_end_date' => array ( 'label' => $langs -> trans ( " LowerDateEndPlannedShort " ), 'checked' => 1 , 'position' => 900 , 'help' => $langs -> trans ( " LowerDateEndPlannedShort " )),
2017-10-13 13:28:26 +02:00
'status' => array ( 'label' => $langs -> trans ( " Status " ), 'checked' => 1 , 'position' => 1000 ),
2016-09-02 14:47:59 +02:00
);
// Extra fields
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label ))
{
2017-10-13 13:28:26 +02:00
foreach ( $extrafields -> attribute_label as $key => $val )
{
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 ]));
2017-10-13 13:28:26 +02:00
}
2016-09-02 14:47:59 +02:00
}
2004-11-26 15:20:43 +01:00
2016-07-13 12:02:45 +02:00
/*
* Action
*/
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 = '' ; }
2016-09-02 14:47:59 +02:00
$parameters = array ( 'socid' => $socid );
$reshook = $hookmanager -> executeHooks ( 'doActions' , $parameters , $object , $action ); // Note that $action and $object may have been modified by some hooks
2016-07-13 12:02:45 +02:00
if ( $reshook < 0 ) setEventMessages ( $hookmanager -> error , $hookmanager -> errors , 'errors' );
include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php' ;
2016-09-02 14:47:59 +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 test are required to be compatible with all browsers
2016-07-13 12:02:45 +02:00
{
2016-09-02 14:47:59 +02:00
$day = '' ;
$month = '' ;
$year = '' ;
2017-10-07 14:54:31 +02:00
$search_dfmonth = '' ;
$search_dfyear = '' ;
2017-10-13 13:28:26 +02:00
$search_op2df = '' ;
$search_name = " " ;
$search_email = " " ;
$search_town = '' ;
2016-09-02 14:47:59 +02:00
$search_zip = " " ;
$search_state = " " ;
$search_type = '' ;
$search_country = '' ;
2016-07-13 12:02:45 +02:00
$search_contract = " " ;
2017-09-18 00:07:00 +02:00
$search_ref_customer = " " ;
2016-07-13 12:02:45 +02:00
$search_ref_supplier = " " ;
2017-10-13 13:28:26 +02:00
$search_user = '' ;
$search_sale = '' ;
$search_product_category = '' ;
2016-07-13 12:02:45 +02:00
$sall = " " ;
$search_status = " " ;
2016-09-02 14:47:59 +02:00
$toselect = '' ;
2016-07-13 12:02:45 +02:00
$search_array_options = array ();
2016-09-02 14:47:59 +02:00
}
if ( empty ( $reshook ))
{
2017-10-13 13:28:26 +02:00
$objectclass = 'Contrat' ;
$objectlabel = 'Contracts' ;
$permtoread = $user -> rights -> contrat -> lire ;
$permtodelete = $user -> rights -> contrat -> supprimer ;
$uploaddir = $conf -> contrat -> dir_output ;
include DOL_DOCUMENT_ROOT . '/core/actions_massactions.inc.php' ;
2016-07-13 12:02:45 +02:00
}
2006-03-18 18:41:36 +01:00
/*
2008-10-27 20:19:51 +01:00
* View
2006-03-18 18:41:36 +01:00
*/
2012-03-23 18:19:50 +01:00
$now = dol_now ();
2017-09-16 15:39:52 +02:00
$form = new Form ( $db );
$formfile = new FormFile ( $db );
2015-02-23 20:26:34 +01:00
$formother = new FormOther ( $db );
$socstatic = new Societe ( $db );
2017-03-02 13:24:56 +01:00
$contracttmp = new Contrat ( $db );
2009-02-09 20:31:06 +01:00
2005-07-03 15:07:59 +02:00
$sql = 'SELECT' ;
2017-03-02 13:24:56 +01:00
$sql .= " c.rowid, c.ref, c.datec as date_creation, c.tms as date_update, c.date_contrat, c.statut, c.ref_customer, c.ref_supplier, c.note_private, c.note_public, " ;
2017-09-22 16:31:05 +02:00
$sql .= ' s.rowid as socid, s.nom as name, s.email, s.town, s.zip, s.fk_pays, s.client, s.code_client,' ;
2016-09-02 14:47:59 +02:00
$sql .= " typent.code as typent_code, " ;
$sql .= " state.code_departement as state_code, state.nom as state_name, " ;
2017-10-07 14:54:31 +02:00
$sql .= " MIN( " . $db -> ifsql ( " cd.statut=4 " , " cd.date_fin_validite " , " null " ) . " ) as lower_planned_end_date, " ;
2012-07-25 11:46:33 +02:00
$sql .= ' SUM(' . $db -> ifsql ( " cd.statut=0 " , 1 , 0 ) . ') as nb_initial,' ;
2014-03-15 23:12:00 +01:00
$sql .= ' SUM(' . $db -> ifsql ( " cd.statut=4 AND (cd.date_fin_validite IS NULL OR cd.date_fin_validite >= ' " . $db -> idate ( $now ) . " ') " , 1 , 0 ) . ') as nb_running,' ;
$sql .= ' SUM(' . $db -> ifsql ( " cd.statut=4 AND (cd.date_fin_validite IS NOT NULL AND cd.date_fin_validite < ' " . $db -> idate ( $now ) . " ') " , 1 , 0 ) . ') as nb_expired,' ;
$sql .= ' SUM(' . $db -> ifsql ( " cd.statut=4 AND (cd.date_fin_validite IS NOT NULL AND cd.date_fin_validite < ' " . $db -> idate ( $now - $conf -> contrat -> services -> expires -> warning_delay ) . " ') " , 1 , 0 ) . ') as nb_late,' ;
2014-11-22 15:12:36 +01:00
$sql .= ' SUM(' . $db -> ifsql ( " cd.statut=5 " , 1 , 0 ) . ') as nb_closed' ;
2016-09-02 14:47:59 +02:00
// Add fields from extrafields
foreach ( $extrafields -> attribute_label as $key => $val ) $sql .= ( $extrafields -> attribute_type [ $key ] != 'separate' ? " ,ef. " . $key . ' as options_' . $key : '' );
// 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-04-27 22:37:50 +02:00
$sql .= " FROM " . MAIN_DB_PREFIX . " societe as s " ;
2016-09-02 14:47:59 +02:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_country as country on (country.rowid = s.fk_pays) " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_typent as typent on (typent.id = s.fk_typent) " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " c_departements as state on (state.rowid = s.fk_departement) " ;
2015-02-23 20:26:34 +01:00
if ( $search_sale > 0 || ( ! $user -> rights -> societe -> client -> voir && ! $socid )) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
2009-04-27 22:37:50 +02:00
$sql .= " , " . MAIN_DB_PREFIX . " contrat as c " ;
2016-09-02 14:47:59 +02:00
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label )) $sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " contrat_extrafields as ef on (c.rowid = ef.fk_object) " ;
2005-06-11 13:33:21 +02:00
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " contratdet as cd ON c.rowid = cd.fk_contrat " ;
2015-10-09 20:00:43 +02:00
if ( $search_product_category > 0 ) $sql .= ' LEFT JOIN ' . MAIN_DB_PREFIX . 'categorie_product as cp ON cp.fk_product=cd.fk_product' ;
if ( $search_user > 0 )
{
2017-10-13 13:28:26 +02:00
$sql .= " , " . MAIN_DB_PREFIX . " element_contact as ec " ;
$sql .= " , " . MAIN_DB_PREFIX . " c_type_contact as tc " ;
2015-10-09 20:00:43 +02:00
}
2007-06-12 00:51:47 +02:00
$sql .= " WHERE c.fk_soc = s.rowid " ;
2017-05-30 18:50:54 +02:00
$sql .= ' AND c.entity IN (' . getEntity ( 'contract' ) . ')' ;
2015-10-09 20:00:43 +02:00
if ( $search_product_category > 0 ) $sql .= " AND cp.fk_categorie = " . $search_product_category ;
2015-05-20 17:32:34 +02:00
if ( $socid ) $sql .= " AND s.rowid = " . $db -> escape ( $socid );
2009-04-27 22:37:50 +02:00
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
2016-08-17 11:58:55 +02:00
if ( $month > 0 )
{
2017-10-13 13:28:26 +02:00
if ( $year > 0 && empty ( $day ))
$sql .= " AND c.date_contrat BETWEEN ' " . $db -> idate ( dol_get_first_day ( $year , $month , false )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $year , $month , false )) . " ' " ;
else if ( $year > 0 && ! empty ( $day ))
$sql .= " AND c.date_contrat BETWEEN ' " . $db -> idate ( dol_mktime ( 0 , 0 , 0 , $month , $day , $year )) . " ' AND ' " . $db -> idate ( dol_mktime ( 23 , 59 , 59 , $month , $day , $year )) . " ' " ;
else
$sql .= " AND date_format(c.date_contrat, '%m') = ' " . $month . " ' " ;
2013-09-10 16:43:06 +02:00
}
2016-08-17 11:58:55 +02:00
else if ( $year > 0 )
{
$sql .= " AND c.date_contrat BETWEEN ' " . $db -> idate ( dol_get_first_day ( $year , 1 , false )) . " ' AND ' " . $db -> idate ( dol_get_last_day ( $year , 12 , false )) . " ' " ;
2014-07-11 11:26:54 +02:00
}
2016-08-17 11:58:55 +02:00
if ( $search_name ) $sql .= natural_search ( 's.nom' , $search_name );
2018-10-08 00:51:08 +02:00
if ( $search_email ) $sql .= natural_search ( 's.email' , $search_email );
2016-08-17 11:58:55 +02:00
if ( $search_contract ) $sql .= natural_search ( array ( 'c.rowid' , 'c.ref' ), $search_contract );
2017-09-18 00:07:00 +02:00
if ( ! empty ( $search_ref_customer )) $sql .= natural_search ( array ( 'c.ref_customer' ), $search_ref_customer );
2016-08-17 11:58:55 +02:00
if ( ! empty ( $search_ref_supplier )) $sql .= natural_search ( array ( 'c.ref_supplier' ), $search_ref_supplier );
2015-05-31 03:30:38 +02:00
if ( $search_sale > 0 )
2015-02-23 20:26:34 +01:00
{
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $search_sale ;
}
2016-08-17 11:58:55 +02:00
if ( $sall ) $sql .= natural_search ( array_keys ( $fieldstosearchall ), $sall );
2015-10-09 20:00:43 +02:00
if ( $search_user > 0 ) $sql .= " AND ec.fk_c_type_contact = tc.rowid AND tc.element='contrat' AND tc.source='internal' AND ec.element_id = c.rowid AND ec.fk_socpeople = " . $search_user ;
2016-09-02 14:47:59 +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' ;
2016-09-02 14:47:59 +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 ;
2017-03-02 13:24:56 +01:00
$sql .= " GROUP BY c.rowid, c.ref, c.datec, c.tms, c.date_contrat, c.statut, c.ref_customer, c.ref_supplier, c.note_private, c.note_public, " ;
2017-09-22 16:31:05 +02:00
$sql .= ' s.rowid, s.nom, s.email, s.town, s.zip, s.fk_pays, s.client, s.code_client,' ;
2016-09-02 14:47:59 +02:00
$sql .= " typent.code, " ;
$sql .= " state.code_departement, state.nom " ;
2017-09-18 15:46:17 +02:00
// Add fields from extrafields
foreach ( $extrafields -> attribute_label as $key => $val ) $sql .= ( $extrafields -> attribute_type [ $key ] != 'separate' ? " ,ef. " . $key : '' );
2016-09-02 14:47:59 +02:00
// Add where from hooks
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldListGroupBy' , $parameters ); // Note that $action and $object may have been modified by hook
$sql .= $hookmanager -> resPrint ;
2017-11-07 13:33:24 +01:00
if ( $search_dfyear > 0 && $search_op2df )
2017-09-22 02:43:42 +02:00
{
2017-11-07 13:33:24 +01:00
if ( $search_op2df == '<=' ) $sql .= " HAVING MIN( " . $db -> ifsql ( " cd.statut=4 " , " cd.date_fin_validite " , " null " ) . " ) <= ' " . $db -> idate ( dol_get_last_day ( $search_dfyear , $search_dfmonth , false )) . " ' " ;
elseif ( $search_op2df == '>=' ) $sql .= " HAVING MIN( " . $db -> ifsql ( " cd.statut=4 " , " cd.date_fin_validite " , " null " ) . " ) >= ' " . $db -> idate ( dol_get_first_day ( $search_dfyear , $search_dfmonth , false )) . " ' " ;
else $sql .= " HAVING MIN( " . $db -> ifsql ( " cd.statut=4 " , " cd.date_fin_validite " , " null " ) . " ) <= ' " . $db -> idate ( dol_get_last_day ( $search_dfyear , $search_dfmonth , false )) . " ' AND MIN( " . $db -> ifsql ( " cd.statut=4 " , " cd.date_fin_validite " , " null " ) . " ) >= ' " . $db -> idate ( dol_get_first_day ( $search_dfyear , $search_dfmonth , false )) . " ' " ;
2017-09-22 02:43:42 +02:00
}
2016-09-02 14:47:59 +02:00
$sql .= $db -> order ( $sortfield , $sortorder );
2017-11-07 13:33:24 +01:00
//print $sql;
2016-09-02 14:47:59 +02:00
2015-12-28 00:20:48 +01:00
$totalnboflines = 0 ;
$result = $db -> query ( $sql );
if ( $result )
{
2017-10-13 13:28:26 +02:00
$totalnboflines = $db -> num_rows ( $result );
2015-12-28 00:20:48 +01:00
}
2016-02-11 20:40:33 +01:00
2017-01-15 20:49:20 +01:00
$nbtotalofrecords = '' ;
2016-02-11 20:40:33 +01:00
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST ))
{
2017-10-13 13:28:26 +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-02-11 20:40:33 +01:00
}
$sql .= $db -> plimit ( $limit + 1 , $offset );
2004-11-26 15:20:43 +01:00
2005-04-24 04:45:23 +02:00
$resql = $db -> query ( $sql );
2018-03-24 18:28:06 +01:00
if ( ! $resql )
2004-11-26 15:20:43 +01:00
{
2018-03-24 18:28:06 +01:00
dol_print_error ( $db );
exit ;
}
2005-07-03 15:07:59 +02:00
2018-03-24 18:28:06 +01:00
$num = $db -> num_rows ( $resql );
2017-06-14 11:28:42 +02:00
2018-03-24 18:28:06 +01:00
// Direct jump if only one record found
if ( $num == 1 && ! empty ( $conf -> global -> MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE ) && $sall )
{
$obj = $db -> fetch_object ( $resql );
$id = $obj -> rowid ;
header ( " Location: " . DOL_URL_ROOT . '/contrat/card.php?id=' . $id );
exit ;
}
2017-07-23 19:09:00 +02:00
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
// Output page
// --------------------------------------------------------------------
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
llxHeader ( '' , $langs -> trans ( " Contracts " ));
2017-06-14 11:28:42 +02:00
2018-03-24 18:28:06 +01:00
$i = 0 ;
2017-06-14 11:28:42 +02:00
2018-03-24 18:28:06 +01:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
if ( $socid > 0 )
{
$soc = new Societe ( $db );
$soc -> fetch ( $socid );
if ( empty ( $search_name )) $search_name = $soc -> name ;
}
$param = '' ;
if ( ! empty ( $contextpage ) && $contextpage != $_SERVER [ " PHP_SELF " ]) $param .= '&contextpage=' . urlencode ( $contextpage );
if ( $limit > 0 && $limit != $conf -> liste_limit ) $param .= '&limit=' . $limit ;
if ( $sall != '' ) $param .= '&sall=' . urlencode ( $sall );
if ( $search_contract != '' ) $param .= '&search_contract=' . urlencode ( $search_contract );
if ( $search_name != '' ) $param .= '&search_name=' . urlencode ( $search_name );
if ( $search_email != '' ) $param .= '&search_email=' . urlencode ( $search_email );
if ( $search_ref_customer != '' ) $param .= '&search_ref_customer=' . urlencode ( $search_ref_customer );
if ( $search_ref_supplier != '' ) $param .= '&search_ref_supplier=' . urlencode ( $search_ref_supplier );
if ( $search_op2df != '' ) $param .= '&search_op2df=' . urlencode ( $search_op2df );
if ( $search_dfyear != '' ) $param .= '&search_dfyear=' . urlencode ( $search_dfyear );
if ( $search_dfmonth != '' ) $param .= '&search_dfmonth=' . urlencode ( $search_dfmonth );
if ( $search_sale != '' ) $param .= '&search_sale=' . urlencode ( $search_sale );
if ( $search_user != '' ) $param .= '&search_user=' . urlencode ( $search_user );
if ( $search_product_category != '' ) $param .= '&search_product_category=' . urlencode ( $search_product_category );
if ( $show_files ) $param .= '&show_files=' . urlencode ( $show_files );
if ( $optioncss != '' ) $param .= '&optioncss=' . urlencode ( $optioncss );
// Add $param from extra fields
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_param.tpl.php' ;
// List of mass actions available
$arrayofmassactions = array (
'presend' => $langs -> trans ( " SendByMail " ),
'builddoc' => $langs -> trans ( " PDFMerge " ),
);
if ( $user -> rights -> contrat -> supprimer ) $arrayofmassactions [ 'predelete' ] = $langs -> trans ( " Delete " );
if ( in_array ( $massaction , array ( 'presend' , 'predelete' ))) $arrayofmassactions = array ();
$massactionbutton = $form -> selectMassAction ( '' , $arrayofmassactions );
2018-03-30 16:54:38 +02:00
$newcardbutton = '' ;
if ( $user -> rights -> contrat -> creer )
{
2018-06-08 17:53:13 +02:00
$newcardbutton = '<a class="butActionNew" href="' . DOL_URL_ROOT . '/contrat/card.php?action=create"><span class="valignmiddle">' . $langs -> trans ( 'NewContractSubscription' ) . '</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
}
2018-03-24 18:28:06 +01:00
print '<form method="POST" 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 . '">' ;
print '<input type="hidden" name="page" value="' . $page . '">' ;
2018-06-08 19:35:53 +02:00
print '<input type="hidden" name="contextpage" value="' . $contextpage . '">' ;
2018-03-24 18:28:06 +01:00
2018-03-30 16:54:38 +02:00
print_barre_liste ( $langs -> trans ( " ListOfContracts " ), $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , $massactionbutton , $num , $totalnboflines , 'title_commercial.png' , 0 , $newcardbutton , '' , $limit );
2018-03-24 18:28:06 +01:00
$topicmail = " SendContractRef " ;
$modelmail = " contract " ;
$objecttmp = new Contrat ( $db );
$trackid = 'con' . $object -> id ;
include DOL_DOCUMENT_ROOT . '/core/tpl/massactions_pre.tpl.php' ;
if ( $sall )
{
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 " , $sall ) . join ( ', ' , $fieldstosearchall ) . '</div>' ;
2018-03-24 18:28:06 +01:00
}
$moreforfilter = '' ;
// If the user can view prospects other than his'
if ( $user -> rights -> societe -> client -> voir || $socid )
{
$langs -> load ( " commercial " );
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'ThirdPartiesOfSaleRepresentative' ) . ': ' ;
$moreforfilter .= $formother -> select_salesrepresentatives ( $search_sale , 'search_sale' , $user , 0 , 1 , 'maxwidth200' );
$moreforfilter .= '</div>' ;
}
// If the user can view other users
if ( $user -> rights -> user -> user -> lire )
{
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'LinkedToSpecificUsers' ) . ': ' ;
$moreforfilter .= $form -> select_dolusers ( $search_user , 'search_user' , 1 , '' , 0 , '' , '' , 0 , 0 , 0 , '' , 0 , '' , 'maxwidth200' );
$moreforfilter .= '</div>' ;
}
// If the user can view categories of products
if ( $conf -> categorie -> enabled && ( $user -> rights -> produit -> lire || $user -> rights -> service -> lire ))
{
include_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php' ;
$moreforfilter .= '<div class="divsearchfield">' ;
$moreforfilter .= $langs -> trans ( 'IncludingProductWithTag' ) . ': ' ;
$cate_arbo = $form -> select_all_categories ( Categorie :: TYPE_PRODUCT , null , 'parent' , null , null , 1 );
$moreforfilter .= $form -> selectarray ( 'search_product_category' , $cate_arbo , $search_product_category , 1 , 0 , 0 , '' , 0 , 0 , 0 , 0 , 'maxwidth300' , 1 );
$moreforfilter .= '</div>' ;
}
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldPreListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
if ( empty ( $reshook )) $moreforfilter .= $hookmanager -> resPrint ;
else $moreforfilter = $hookmanager -> resPrint ;
if ( ! empty ( $moreforfilter ))
{
print '<div class="liste_titre liste_titre_bydiv centpercent">' ;
print $moreforfilter ;
print '</div>' ;
}
$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 );
print '<div class="div-table-responsive">' ;
print '<table class="tagtable liste' . ( $moreforfilter ? " listwithfilterbefore " : " " ) . '">' . " \n " ;
print '<tr class="liste_titre_filter">' ;
if ( ! empty ( $arrayfields [ 'c.ref' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '<input type="text" class="flat" size="3" name="search_contract" value="' . dol_escape_htmltag ( $search_contract ) . '">' ;
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'c.ref_customer' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '<input type="text" class="flat" size="6" name="search_ref_customer" value="' . dol_escape_htmltag ( $search_ref_customer ) . '">' ;
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'c.ref_supplier' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '<input type="text" class="flat" size="6" name="search_ref_supplier" value="' . dol_escape_htmltag ( $search_ref_supplier ) . '">' ;
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '<input type="text" class="flat" size="8" name="search_name" value="' . dol_escape_htmltag ( $search_name ) . '">' ;
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 's.email' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '<input type="text" class="flat" size="6" name="search_email" value="' . dol_escape_htmltag ( $search_email ) . '">' ;
print '</td>' ;
}
// Town
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ])) print '<td class="liste_titre"><input class="flat" type="text" size="6" name="search_town" value="' . $search_town . '"></td>' ;
// Zip
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ])) print '<td class="liste_titre"><input class="flat" type="text" size="6" name="search_zip" value="' . $search_zip . '"></td>' ;
// State
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '<input class="flat" size="4" type="text" name="search_state" value="' . dol_escape_htmltag ( $search_state ) . '">' ;
print '</td>' ;
}
// Country
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ]))
{
print '<td class="liste_titre" align="center">' ;
print $form -> select_country ( $search_country , 'search_country' , '' , 0 , 'maxwidth100' );
print '</td>' ;
}
// Company type
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ]))
{
print '<td class="liste_titre maxwidthonsmartphone" align="center">' ;
print $form -> selectarray ( " search_type_thirdparty " , $formcompany -> typent_array ( 0 ), $search_type_thirdparty , 0 , 0 , 0 , '' , 0 , 0 , 0 , ( empty ( $conf -> global -> SOCIETE_SORT_ON_TYPEENT ) ? 'ASC' : $conf -> global -> SOCIETE_SORT_ON_TYPEENT ));
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'sale_representative' ][ 'checked' ]))
{
print '<td class="liste_titre"></td>' ;
}
if ( ! empty ( $arrayfields [ 'c.date_contrat' ][ 'checked' ]))
{
// Date contract
print '<td class="liste_titre center nowraponall">' ;
//print $langs->trans('Month').': ';
2018-04-29 19:52:14 +02:00
if ( ! empty ( $conf -> global -> MAIN_LIST_FILTER_ON_DAY )) print '<input class="flat width25 valignmiddle" type="text" maxlength="2" name="day" value="' . $day . '">' ;
print '<input class="flat width25 valignmiddle" type="text" maxlength="2" name="month" value="' . $month . '">' ;
2018-03-24 18:28:06 +01:00
//print ' '.$langs->trans('Year').': ';
$syear = $year ;
2018-04-29 19:52:14 +02:00
print $formother -> selectyear ( $syear , 'year' , 1 , 20 , 5 );
2018-03-24 18:28:06 +01:00
print '</td>' ;
}
// Extra fields
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_input.tpl.php' ;
// 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 ;
// Date creation
if ( ! empty ( $arrayfields [ 'c.datec' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '</td>' ;
}
// Date modification
if ( ! empty ( $arrayfields [ 'c.tms' ][ 'checked' ]))
{
print '<td class="liste_titre">' ;
print '</td>' ;
}
// First end date
if ( ! empty ( $arrayfields [ 'lower_planned_end_date' ][ 'checked' ]))
{
2018-06-02 10:36:22 +02:00
print '<td class="liste_titre nowraponall" align="center">' ;
2018-03-24 18:28:06 +01:00
$arrayofoperators = array ( '0' => '' , '=' => '=' , '<=' => '<=' , '>=' => '>=' );
print $form -> selectarray ( 'search_op2df' , $arrayofoperators , $search_op2df , 0 );
print '</br>' ;
2018-06-02 10:36:22 +02:00
print $formother -> select_month ( $search_dfmonth , 'search_dfmonth' , 1 , 0 , 'valignmiddle' );
2018-03-24 18:28:06 +01:00
print ' ' ;
2018-06-02 10:36:22 +02:00
$formother -> select_year ( $search_dfyear , 'search_dfyear' , 1 , 20 , 5 , 0 , 0 , '' , 'valignmiddle' );
2018-03-24 18:28:06 +01:00
print '</td>' ;
}
// Status
if ( ! empty ( $arrayfields [ 'status' ][ 'checked' ]))
{
print '<td class="liste_titre" colspan="4" align="right"></td>' ;
}
print '<td class="liste_titre" align="middle">' ;
$searchpicto = $form -> showFilterButtons ();
print $searchpicto ;
print '</td>' ;
print " </tr> \n " ;
print '<tr class="liste_titre">' ;
if ( ! empty ( $arrayfields [ 'c.ref' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'c.ref' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " c.ref " , " " , " $param " , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'c.ref_customer' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'c.ref_customer' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " c.ref_customer " , " " , " $param " , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'c.ref_supplier' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'c.ref_supplier' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " c.ref_supplier " , " " , " $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 [ 's.email' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.email' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " s.email " , " " , " $param " , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.town' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 's.town' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 's.zip' ][ 'label' ], $_SERVER [ " PHP_SELF " ], 's.zip' , '' , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'state.nom' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " state.nom " , " " , $param , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'country.code_iso' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " country.code_iso " , " " , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'typent.code' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " typent.code " , " " , $param , 'align="center"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'sale_representative' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'sale_representative' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " " , " " , " $param " , '' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'c.date_contrat' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'c.date_contrat' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " c.date_contrat " , " " , " $param " , 'align="center"' , $sortfield , $sortorder );
// Extra fields
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_search_title.tpl.php' ;
// Hook fields
2018-04-20 10:38:16 +02:00
$parameters = array ( 'arrayfields' => $arrayfields , 'param' => $param , 'sortfield' => $sortfield , 'sortorder' => $sortorder );
2018-03-24 18:28:06 +01:00
$reshook = $hookmanager -> executeHooks ( 'printFieldListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
print $hookmanager -> resPrint ;
if ( ! empty ( $arrayfields [ 'c.datec' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'c.datec' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " c.datec " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'c.tms' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'c.tms' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " c.tms " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'lower_planned_end_date' ][ 'checked' ])) print_liste_field_titre ( $arrayfields [ 'lower_planned_end_date' ][ 'label' ], $_SERVER [ " PHP_SELF " ], " lower_planned_end_date " , " " , $param , 'align="center" class="nowrap"' , $sortfield , $sortorder );
if ( ! empty ( $arrayfields [ 'status' ][ 'checked' ]))
{
print_liste_field_titre ( $staticcontratligne -> LibStatut ( 0 , 3 ), '' , '' , '' , '' , 'width="16"' );
print_liste_field_titre ( $staticcontratligne -> LibStatut ( 4 , 3 , 0 ), '' , '' , '' , '' , 'width="16"' );
print_liste_field_titre ( $staticcontratligne -> LibStatut ( 4 , 3 , 1 ), '' , '' , '' , '' , 'width="16"' );
print_liste_field_titre ( $staticcontratligne -> LibStatut ( 5 , 3 ), '' , '' , '' , '' , 'width="16"' );
}
print_liste_field_titre ( $selectedfields , $_SERVER [ " PHP_SELF " ], " " , '' , '' , 'align="center"' , $sortfield , $sortorder , 'maxwidthsearch ' );
print " </tr> \n " ;
2015-05-31 03:30:38 +02:00
2018-03-24 18:28:06 +01:00
while ( $i < min ( $num , $limit ))
{
$obj = $db -> fetch_object ( $resql );
$contracttmp -> ref = $obj -> ref ;
$contracttmp -> id = $obj -> rowid ;
$contracttmp -> ref_customer = $obj -> ref_customer ;
$contracttmp -> ref_supplier = $obj -> ref_supplier ;
2017-06-14 11:28:42 +02:00
2018-03-24 18:28:06 +01:00
if ( $obj -> socid > 0 )
{
$result = $socstatic -> fetch ( $obj -> socid );
}
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
print '<tr class="oddeven">' ;
2017-10-13 13:28:26 +02:00
if ( ! empty ( $arrayfields [ 'c.ref' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td class="nowrap">' ;
print $contracttmp -> getNomUrl ( 1 );
if ( $obj -> nb_late ) print img_warning ( $langs -> trans ( " Late " ));
if ( ! empty ( $obj -> note_private ) || ! empty ( $obj -> note_public ))
{
print ' <span class="note">' ;
print '<a href="' . DOL_URL_ROOT . '/contrat/note.php?id=' . $obj -> rowid . '">' . img_picto ( $langs -> trans ( " ViewPrivateNote " ), 'object_generic' ) . '</a>' ;
print '</span>' ;
}
$filename = dol_sanitizeFileName ( $obj -> ref );
$filedir = $conf -> contrat -> dir_output . '/' . dol_sanitizeFileName ( $obj -> ref );
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?id=' . $obj -> rowid ;
print $formfile -> getDocumentsLink ( $contracttmp -> element , $filename , $filedir );
print '</td>' ;
2017-10-13 13:28:26 +02:00
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'c.ref_customer' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td>' . $obj -> ref_customer . '</td>' ;
2017-10-13 13:28:26 +02:00
}
if ( ! empty ( $arrayfields [ 'c.ref_supplier' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td>' . $obj -> ref_supplier . '</td>' ;
2017-10-13 13:28:26 +02:00
}
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td>' ;
//print '<a href="../comm/card.php?socid='.$obj->socid.'">'.img_object($langs->trans("ShowCompany"),"company").' '.$obj->name.'</a>';
if ( $obj -> socid > 0 )
{
print $socstatic -> getNomUrl ( 1 , '' );
}
2017-10-13 13:28:26 +02:00
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 's.email' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td>' . $obj -> email . '</td>' ;
2017-10-13 13:28:26 +02:00
}
// Town
2018-03-24 18:28:06 +01:00
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ]))
{
print '<td class="nocellnopadd">' ;
print $obj -> town ;
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
// Zip
2018-03-24 18:28:06 +01:00
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ]))
{
print '<td class="nocellnopadd">' ;
print $obj -> zip ;
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
2017-10-13 13:28:26 +02:00
// State
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print " <td> " . $obj -> state_name . " </td> \n " ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Country
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td align="center">' ;
$tmparray = getCountry ( $obj -> fk_pays , 'all' );
print $tmparray [ 'label' ];
2017-10-13 13:28:26 +02:00
print '</td>' ;
2018-03-24 18:28:06 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2018-03-24 18:28:06 +01:00
// Type ent
2017-10-13 13:28:26 +02:00
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td align="center">' ;
if ( count ( $typenArray ) == 0 ) $typenArray = $formcompany -> typent_array ( 1 );
print $typenArray [ $obj -> typent_code ];
2017-10-13 13:28:26 +02:00
print '</td>' ;
2018-03-24 18:28:06 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
if ( ! empty ( $arrayfields [ 'sale_representative' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
// Sales representatives
print '<td>' ;
if ( $obj -> socid > 0 )
{
$listsalesrepresentatives = $socstatic -> getSalesRepresentatives ( $user );
if ( $listsalesrepresentatives < 0 ) dol_print_error ( $db );
$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 '<div class="float">':
print $userstatic -> getNomUrl ( - 2 );
$j ++ ;
if ( $j < $nbofsalesrepresentative ) print ' ' ;
//print '</div>';
}
}
//else print $langs->trans("NoSalesRepresentativeAffected");
}
else
{
print ' ' ;
}
print '</td>' ;
2017-10-13 13:28:26 +02:00
}
2018-03-24 18:28:06 +01:00
// Date
2017-10-13 13:28:26 +02:00
if ( ! empty ( $arrayfields [ 'c.date_contrat' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td align="center">' . dol_print_date ( $db -> jdate ( $obj -> date_contrat ), 'day' , 'tzuser' ) . '</td>' ;
2017-10-13 13:28:26 +02:00
}
// Extra fields
2018-03-24 18:28:06 +01:00
include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_list_print_fields.tpl.php' ;
2017-10-13 13:28:26 +02:00
// Fields from hook
2018-03-24 18:28:06 +01:00
$parameters = array ( 'arrayfields' => $arrayfields , 'obj' => $obj );
$reshook = $hookmanager -> executeHooks ( 'printFieldListValue' , $parameters ); // Note that $action and $object may have been modified by hook
2017-10-13 13:28:26 +02:00
print $hookmanager -> resPrint ;
// Date creation
if ( ! empty ( $arrayfields [ 'c.datec' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td align="center" class="nowrap">' ;
print dol_print_date ( $db -> jdate ( $obj -> date_creation ), 'dayhour' , 'tzuser' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2018-03-24 18:28:06 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Date modification
if ( ! empty ( $arrayfields [ 'c.tms' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td align="center" class="nowrap">' ;
print dol_print_date ( $db -> jdate ( $obj -> date_update ), 'dayhour' , 'tzuser' );
2017-10-13 13:28:26 +02:00
print '</td>' ;
2018-03-24 18:28:06 +01:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
2018-03-24 18:28:06 +01:00
// Date lower end date
2017-10-13 13:28:26 +02:00
if ( ! empty ( $arrayfields [ 'lower_planned_end_date' ][ 'checked' ]))
{
2018-06-02 10:36:22 +02:00
print '<td align="center" class="nowrapforall">' ;
2018-03-24 18:28:06 +01:00
print dol_print_date ( $db -> jdate ( $obj -> lower_planned_end_date ), 'day' , 'tzuser' );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
}
// Status
if ( ! empty ( $arrayfields [ 'status' ][ 'checked' ]))
{
2018-03-24 18:28:06 +01:00
print '<td align="center">' . ( $obj -> nb_initial > 0 ? $obj -> nb_initial : '' ) . '</td>' ;
print '<td align="center">' . ( $obj -> nb_running > 0 ? $obj -> nb_running : '' ) . '</td>' ;
print '<td align="center">' . ( $obj -> nb_expired > 0 ? $obj -> nb_expired : '' ) . '</td>' ;
print '<td align="center">' . ( $obj -> nb_closed > 0 ? $obj -> nb_closed : '' ) . '</td>' ;
2017-10-13 13:28:26 +02:00
}
2018-03-24 18:28:06 +01: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
2017-10-13 13:28:26 +02:00
{
2018-03-24 18:28:06 +01:00
$selected = 0 ;
if ( in_array ( $obj -> rowid , $arrayofselected )) $selected = 1 ;
print '<input id="cb' . $obj -> rowid . '" class="flat checkforselect" type="checkbox" name="toselect[]" value="' . $obj -> rowid . '"' . ( $selected ? ' checked="checked"' : '' ) . '>' ;
2017-10-13 13:28:26 +02:00
}
2018-03-24 18:28:06 +01:00
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
print " </tr> \n " ;
$i ++ ;
}
$db -> free ( $resql );
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
print '</table>' ;
print '</div>' ;
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
print '</form>' ;
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
$hidegeneratedfilelistifempty = 1 ;
if ( $massaction == 'builddoc' || $action == 'remove_file' || $show_files ) $hidegeneratedfilelistifempty = 0 ;
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
// Show list of available documents
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?sortfield=' . $sortfield . '&sortorder=' . $sortorder ;
$urlsource .= str_replace ( '&' , '&' , $param );
2017-10-13 13:28:26 +02:00
2018-03-24 18:28:06 +01:00
$filedir = $diroutputmassaction ;
$genallowed = $user -> rights -> contrat -> lire ;
$delallowed = $user -> rights -> contrat -> lire ;
2018-02-21 11:02:45 +01:00
2018-03-24 18:28:06 +01:00
print $formfile -> showdocuments ( 'massfilesarea_contract' , '' , $filedir , $urlsource , 0 , $delallowed , '' , 1 , 1 , 0 , 48 , 1 , $param , $title , '' , '' , '' , null , $hidegeneratedfilelistifempty );
2004-11-26 15:20:43 +01:00
2011-08-27 16:24:16 +02:00
llxFooter ();
2012-07-25 11:46:33 +02:00
$db -> close ();