2004-11-26 15:20:43 +01:00
< ? php
/* Copyright ( C ) 2001 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2015-10-17 00:52:35 +02:00
* Copyright ( C ) 2004 - 2015 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 >
2016-09-09 13:58:41 +02:00
* Copyright ( C ) 2016 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 " );
2010-04-28 10:35:57 +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' ;
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
2005-04-23 00:39:11 +02:00
$langs -> load ( " contracts " );
2004-11-26 15:20:43 +01:00
$langs -> load ( " products " );
$langs -> load ( " companies " );
2014-07-11 16:12:31 +02:00
$langs -> load ( " 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' );
2014-11-03 06:05:51 +01:00
$search_name = GETPOST ( 'search_name' );
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' );
2014-09-24 10:21:26 +02:00
$search_ref_supplier = GETPOST ( 'search_ref_supplier' , 'alpha' );
2012-07-25 11:46:33 +02:00
$sall = GETPOST ( 'sall' );
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' );
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
2016-02-11 20:40:33 +01:00
$limit = GETPOST ( " limit " ) ? GETPOST ( " limit " , " int " ) : $conf -> liste_limit ;
$sortfield = GETPOST ( " sortfield " , 'alpha' );
$sortorder = GETPOST ( " sortorder " , 'alpha' );
$page = GETPOST ( " page " , 'int' );
if ( $page == - 1 ) { $page = 0 ; }
$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
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 ;
2016-09-02 14:47:59 +02:00
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
2016-07-13 12:02:45 +02:00
$contextpage = 'contractlist' ;
// Initialize technical object to manage hooks of thirdparties. Note that conf->hooks_modules contains array array
$hookmanager -> initHooks ( array ( $contextpage ));
$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 (
'c.ref' => 'Ref' ,
'c.ref_customer' => 'RefCustomer' ,
'c.ref_supplier' => 'RefSupplier' ,
's.nom' => " ThirdParty " ,
'cd.description' => 'Description' ,
'c.note_public' => 'NotePublic' ,
);
if ( empty ( $user -> socid )) $fieldstosearchall [ " c.note_private " ] = " NotePrivate " ;
2016-09-02 14:47:59 +02:00
$arrayfields = array (
'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.town' => array ( 'label' => $langs -> trans ( " Town " ), 'checked' => 0 ),
'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 ),
'sale_representative' => array ( 'label' => $langs -> trans ( " SalesRepresentative " ), 'checked' => 1 ),
'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 ),
'status' => array ( 'label' => $langs -> trans ( " Status " ), 'checked' => 1 , 'position' => 1000 ),
);
// Extra fields
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label ))
{
foreach ( $extrafields -> attribute_label as $key => $val )
{
$arrayfields [ " ef. " . $key ] = array ( 'label' => $extrafields -> attribute_label [ $key ], 'checked' => $extrafields -> attribute_list [ $key ], 'position' => $extrafields -> attribute_pos [ $key ], 'enabled' => $extrafields -> attribute_perms [ $key ]);
}
}
2004-11-26 15:20:43 +01:00
2016-07-13 12:02:45 +02:00
/*
* Action
*/
2016-09-02 14:47:59 +02:00
if ( GETPOST ( 'cancel' )) { $action = 'list' ; $massaction = '' ; }
if ( ! GETPOST ( 'confirmmassaction' ) && $massaction != 'presend' && $massaction != 'confirm_presend' ) { $massaction = '' ; }
$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
if ( GETPOST ( " button_removefilter_x " ) || GETPOST ( " button_removefilter.x " ) || GETPOST ( " button_removefilter " )) // 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 = '' ;
$search_name = " " ;
$search_town = '' ;
$search_zip = " " ;
$search_state = " " ;
$search_type = '' ;
$search_country = '' ;
2016-07-13 12:02:45 +02:00
$search_contract = " " ;
$search_ref_supplier = " " ;
$search_user = '' ;
$search_sale = '' ;
$search_product_category = '' ;
$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 ))
{
$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 ();
2015-10-09 20:00:43 +02:00
$form = new Form ( $db );
2015-02-23 20:26:34 +01:00
$formother = new FormOther ( $db );
$socstatic = new Societe ( $db );
2009-02-09 20:31:06 +01:00
2006-03-18 18:41:36 +01:00
llxHeader ();
2004-11-26 15:20:43 +01:00
2005-07-03 15:07:59 +02:00
$sql = 'SELECT' ;
2016-09-02 14:47:59 +02: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, " ;
$sql .= ' s.rowid as socid, s.nom as name, s.town, s.zip, s.fk_pays, s.client, s.code_client,' ;
$sql .= " typent.code as typent_code, " ;
$sql .= " state.code_departement as state_code, state.nom as state_name, " ;
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 )
{
$sql .= " , " . MAIN_DB_PREFIX . " element_contact as ec " ;
$sql .= " , " . MAIN_DB_PREFIX . " c_type_contact as tc " ;
}
2007-06-12 00:51:47 +02:00
$sql .= " WHERE c.fk_soc = s.rowid " ;
2015-10-09 20:00:43 +02:00
$sql .= ' AND c.entity IN (' . getEntity ( 'contract' , 1 ) . ')' ;
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 )
{
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 );
if ( $search_contract ) $sql .= natural_search ( array ( 'c.rowid' , 'c.ref' ), $search_contract );
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
foreach ( $search_array_options as $key => $val )
{
$crit = $val ;
$tmpkey = preg_replace ( '/search_options_/' , '' , $key );
$typ = $extrafields -> attribute_type [ $tmpkey ];
$mode = 0 ;
if ( in_array ( $typ , array ( 'int' , 'double' ))) $mode = 1 ; // Search on a numeric
if ( $val && ( ( $crit != '' && ! in_array ( $typ , array ( 'select' ))) || ! empty ( $crit )))
{
$sql .= natural_search ( 'ef.' . $tmpkey , $crit , $mode );
}
}
// 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 ;
$sql .= " GROUP BY c.rowid, c.ref, c.datec, c.tms, c.date_contrat, c.statut, c.ref_customer, c.ref_supplier, " ;
$sql .= ' s.rowid, s.nom, s.town, s.zip, s.fk_pays, s.client, s.code_client,' ;
$sql .= " typent.code, " ;
$sql .= " state.code_departement, state.nom " ;
// Add where from extra fields
foreach ( $extrafields -> attribute_label as $key => $val )
{
$sql .= ', ef.' . $val ;
}
// 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 ;
$sql .= $db -> order ( $sortfield , $sortorder );
2015-12-28 00:20:48 +01:00
$totalnboflines = 0 ;
$result = $db -> query ( $sql );
if ( $result )
{
$totalnboflines = $db -> num_rows ( $result );
}
2016-02-11 20:40:33 +01:00
$nbtotalofrecords = 0 ;
if ( empty ( $conf -> global -> MAIN_DISABLE_FULL_SCANLIST ))
{
$result = $db -> query ( $sql );
$nbtotalofrecords = $db -> num_rows ( $result );
}
$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 );
if ( $resql )
2004-11-26 15:20:43 +01:00
{
2005-07-03 15:07:59 +02:00
$num = $db -> num_rows ( $resql );
$i = 0 ;
2016-09-02 14:47:59 +02:00
$arrayofselected = is_array ( $toselect ) ? $toselect : array ();
2016-02-11 20:40:33 +01:00
$param = '' ;
2016-06-07 14:06:00 +02:00
if ( ! empty ( $contextpage ) && $contextpage != $_SERVER [ " PHP_SELF " ]) $param .= '&contextpage=' . $contextpage ;
2016-02-11 20:40:33 +01:00
if ( $limit > 0 && $limit != $conf -> liste_limit ) $param .= '&limit=' . $limit ;
2016-09-12 01:50:38 +02:00
if ( $sall != '' ) $param .= '&sall=' . $sall ;
if ( $search_contract != '' ) $param .= '&search_contract=' . $search_contract ;
if ( $search_name != '' ) $param .= '&search_name=' . $search_name ;
if ( $search_ref_supplier != '' ) $param .= '&search_ref_supplier=' . $search_ref_supplier ;
if ( $search_sale != '' ) $param .= '&search_sale=' . $search_sale ;
2016-09-12 02:05:38 +02:00
if ( $show_files ) $param .= '&show_files=' . $show_files ;
2016-09-12 01:50:38 +02:00
if ( $optioncss != '' ) $param .= '&optioncss=' . $optioncss ;
2016-09-02 14:47:59 +02:00
// Add $param from extra fields
foreach ( $search_array_options as $key => $val )
{
$crit = $val ;
$tmpkey = preg_replace ( '/search_options_/' , '' , $key );
if ( $val != '' ) $param .= '&search_options_' . $tmpkey . '=' . urlencode ( $val );
}
// List of mass actions available
$arrayofmassactions = array (
//'presend'=>$langs->trans("SendByMail"),
//'builddoc'=>$langs->trans("PDFMerge"),
);
if ( $user -> rights -> contrat -> supprimer ) $arrayofmassactions [ 'delete' ] = $langs -> trans ( " Delete " );
if ( $massaction == 'presend' ) $arrayofmassactions = array ();
$massactionbutton = $form -> selectMassAction ( '' , $arrayofmassactions );
2014-11-28 00:57:40 +01:00
print '<form method="POST" action="' . $_SERVER [ 'PHP_SELF' ] . '">' ;
2015-10-04 12:31:32 +02:00
if ( $optioncss != '' ) print '<input type="hidden" name="optioncss" value="' . $optioncss . '">' ;
2015-10-17 00:52:35 +02:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2016-09-02 14:47:59 +02:00
print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">' ;
2015-10-17 00:52:35 +02:00
print '<input type="hidden" name="action" value="list">' ;
print '<input type="hidden" name="sortfield" value="' . $sortfield . '">' ;
print '<input type="hidden" name="sortorder" value="' . $sortorder . '">' ;
2005-07-03 15:07:59 +02:00
2016-09-02 14:47:59 +02:00
print_barre_liste ( $langs -> trans ( " ListOfContracts " ), $page , $_SERVER [ " PHP_SELF " ], $param , $sortfield , $sortorder , $massactionbutton , $num , $totalnboflines , 'title_commercial.png' , 0 , '' , '' , $limit );
2016-02-11 20:40:33 +01:00
if ( $sall )
2015-10-17 00:52:35 +02:00
{
foreach ( $fieldstosearchall as $key => $val ) $fieldstosearchall [ $key ] = $langs -> trans ( $val );
2016-02-07 12:33:40 +01:00
print $langs -> trans ( " FilterOnInto " , $sall ) . join ( ', ' , $fieldstosearchall );
2015-10-17 00:52:35 +02:00
}
2015-02-23 20:26:34 +01:00
$moreforfilter = '' ;
2016-09-02 14:47:59 +02:00
// If the user can view prospects other than his'
2015-02-23 20:26:34 +01:00
if ( $user -> rights -> societe -> client -> voir || $socid )
{
$langs -> load ( " commercial " );
2015-10-09 12:30:16 +02:00
$moreforfilter .= '<div class="divsearchfield">' ;
2015-02-23 20:26:34 +01:00
$moreforfilter .= $langs -> trans ( 'ThirdPartiesOfSaleRepresentative' ) . ': ' ;
2015-12-06 00:37:58 +01:00
$moreforfilter .= $formother -> select_salesrepresentatives ( $search_sale , 'search_sale' , $user , 0 , 1 , 'maxwidth300' );
2015-10-09 12:30:16 +02:00
$moreforfilter .= '</div>' ;
2015-02-23 20:26:34 +01:00
}
2015-10-09 20:00:43 +02:00
// 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 , '' , 'maxwidth300' );
$moreforfilter .= '</div>' ;
}
// If the user can view categories of products
2015-11-05 18:49:22 +01:00
if ( $conf -> categorie -> enabled && ( $user -> rights -> produit -> lire || $user -> rights -> service -> lire ))
2015-10-09 20:00:43 +02:00
{
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 );
2016-03-25 15:34:37 +01:00
$moreforfilter .= $form -> selectarray ( 'search_product_category' , $cate_arbo , $search_product_category , 1 , 0 , 0 , '' , 0 , 0 , 0 , 0 , '' , 1 );
2015-10-09 20:00:43 +02:00
$moreforfilter .= '</div>' ;
}
2015-11-16 21:29:39 +01:00
$parameters = array ();
$reshook = $hookmanager -> executeHooks ( 'printFieldPreListTitle' , $parameters ); // Note that $action and $object may have been modified by hook
2015-11-18 18:16:03 +01:00
if ( empty ( $reshook )) $moreforfilter .= $hookmanager -> resPrint ;
else $moreforfilter = $hookmanager -> resPrint ;
2016-09-02 14:47:59 +02:00
2015-10-09 12:30:16 +02:00
if ( ! empty ( $moreforfilter ))
2015-02-23 20:26:34 +01:00
{
2015-10-09 12:30:16 +02:00
print '<div class="liste_titre liste_titre_bydiv centpercent">' ;
print $moreforfilter ;
print '</div>' ;
2015-02-23 20:26:34 +01:00
}
2015-05-31 03:30:38 +02:00
2016-09-02 14:47:59 +02:00
$varpage = empty ( $contextpage ) ? $_SERVER [ " PHP_SELF " ] : $contextpage ;
$selectedfields = $form -> multiSelectArrayWithCheckbox ( 'selectedfields' , $arrayfields , $varpage ); // This also change content of $arrayfields
print '<table class="tagtable liste' . ( $moreforfilter ? " listwithfilterbefore " : " " ) . '">' . " \n " ;
2005-07-03 15:07:59 +02:00
print '<tr class="liste_titre">' ;
2016-09-02 14:47:59 +02:00
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.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
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label ))
{
foreach ( $extrafields -> attribute_label as $key => $val )
{
if ( ! empty ( $arrayfields [ " ef. " . $key ][ 'checked' ]))
{
$align = $extrafields -> getAlignFlag ( $key );
print_liste_field_titre ( $extralabels [ $key ], $_SERVER [ " PHP_SELF " ], " ef. " . $key , " " , $param ,( $align ? 'align="' . $align . '"' : '' ), $sortfield , $sortorder );
}
}
}
// Hook fields
$parameters = array ( 'arrayfields' => $arrayfields );
$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.date_creation " , " " , $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 [ '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="right"' , $sortfield , $sortorder , 'maxwidthsearch ' );
2005-07-03 15:07:59 +02:00
print " </tr> \n " ;
2009-05-17 10:01:54 +02:00
print '<input type="hidden" name="token" value="' . $_SESSION [ 'newtoken' ] . '">' ;
2005-08-11 20:54:59 +02:00
print '<tr class="liste_titre">' ;
2016-09-02 14:47:59 +02:00
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>' ;
}
// 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></td>' ;
}
if ( ! empty ( $arrayfields [ 'c.date_contrat' ][ 'checked' ]))
{
// Date contract
print '<td class="liste_titre center">' ;
//print $langs->trans('Month').': ';
if ( ! empty ( $conf -> global -> MAIN_LIST_FILTER_ON_DAY )) print '<input class="flat" type="text" size="1" maxlength="2" name="day" value="' . $day . '">' ;
print '<input class="flat" type="text" size="1" maxlength="2" name="month" value="' . $month . '">' ;
//print ' '.$langs->trans('Year').': ';
$syear = $year ;
$formother -> select_year ( $syear , 'year' , 1 , 20 , 5 );
print '</td>' ;
}
// Extra fields
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label ))
{
foreach ( $extrafields -> attribute_label as $key => $val )
{
if ( ! empty ( $arrayfields [ " ef. " . $key ][ 'checked' ]))
{
$align = $extrafields -> getAlignFlag ( $key );
$typeofextrafield = $extrafields -> attribute_type [ $key ];
print '<td class="liste_titre' . ( $align ? ' ' . $align : '' ) . '">' ;
if ( in_array ( $typeofextrafield , array ( 'varchar' , 'int' , 'double' , 'select' )))
{
$crit = $val ;
$tmpkey = preg_replace ( '/search_options_/' , '' , $key );
$searchclass = '' ;
if ( in_array ( $typeofextrafield , array ( 'varchar' , 'select' ))) $searchclass = 'searchstring' ;
if ( in_array ( $typeofextrafield , array ( 'int' , 'double' ))) $searchclass = 'searchnum' ;
print '<input class="flat' . ( $searchclass ? ' ' . $searchclass : '' ) . '" size="4" type="text" name="search_options_' . $tmpkey . '" value="' . dol_escape_htmltag ( $search_array_options [ 'search_options_' . $tmpkey ]) . '">' ;
}
print '</td>' ;
}
}
}
// 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>' ;
}
// Status
if ( ! empty ( $arrayfields [ 'status' ][ 'checked' ]))
{
print '<td class="liste_titre" colspan="4" align="right"></td>' ;
}
print '<td class="liste_titre" align="middle">' ;
$searchpitco = $form -> showFilterAndCheckAddButtons ( $massactionbutton ? 1 : 0 , 'checkforselect' , 1 );
print $searchpitco ;
2016-02-07 15:50:48 +01:00
print '</td>' ;
print " </tr> \n " ;
2005-07-03 15:07:59 +02:00
2012-10-22 00:28:32 +02:00
$var = true ;
2005-07-03 15:07:59 +02:00
while ( $i < min ( $num , $limit ))
2004-11-26 15:20:43 +01:00
{
2005-07-03 15:07:59 +02:00
$obj = $db -> fetch_object ( $resql );
$var =! $var ;
2011-05-03 20:45:37 +02:00
print '<tr ' . $bc [ $var ] . '>' ;
2016-09-02 14:47:59 +02:00
if ( ! empty ( $arrayfields [ 'c.ref' ][ 'checked' ]))
{
print '<td class="nowrap"><a href="card.php?id=' . $obj -> rowid . '">' ;
print img_object ( $langs -> trans ( " ShowContract " ), " contract " ) . ' ' . ( isset ( $obj -> ref ) ? $obj -> ref : $obj -> rowid ) . '</a>' ;
if ( $obj -> nb_late ) print img_warning ( $langs -> trans ( " Late " ));
print '</td>' ;
}
if ( ! empty ( $arrayfields [ 'c.ref_customer' ][ 'checked' ]))
{
print '<td>' . $obj -> ref_customer . '</td>' ;
}
if ( ! empty ( $arrayfields [ 'c.ref_supplier' ][ 'checked' ]))
{
print '<td>' . $obj -> ref_supplier . '</td>' ;
}
if ( ! empty ( $arrayfields [ 's.nom' ][ 'checked' ]))
{
print '<td><a href="../comm/card.php?socid=' . $obj -> socid . '">' . img_object ( $langs -> trans ( " ShowCompany " ), " company " ) . ' ' . $obj -> name . '</a></td>' ;
}
// Town
if ( ! empty ( $arrayfields [ 's.town' ][ 'checked' ]))
{
print '<td class="nocellnopadd">' ;
print $obj -> town ;
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Zip
if ( ! empty ( $arrayfields [ 's.zip' ][ 'checked' ]))
{
print '<td class="nocellnopadd">' ;
print $obj -> zip ;
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// State
if ( ! empty ( $arrayfields [ 'state.nom' ][ 'checked' ]))
{
print " <td> " . $obj -> state_name . " </td> \n " ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Country
if ( ! empty ( $arrayfields [ 'country.code_iso' ][ 'checked' ]))
2015-02-23 20:26:34 +01:00
{
2016-09-02 14:47:59 +02:00
print '<td align="center">' ;
$tmparray = getCountry ( $obj -> fk_pays , 'all' );
print $tmparray [ 'label' ];
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2015-02-23 20:26:34 +01:00
}
2016-09-02 14:47:59 +02:00
// Type ent
if ( ! empty ( $arrayfields [ 'typent.code' ][ 'checked' ]))
2015-02-23 20:26:34 +01:00
{
2016-09-02 14:47:59 +02:00
print '<td align="center">' ;
if ( count ( $typenArray ) == 0 ) $typenArray = $formcompany -> typent_array ( 1 );
print $typenArray [ $obj -> typent_code ];
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
if ( ! empty ( $arrayfields [ 'sale_representative' ][ 'checked' ]))
{
// Sales representatives
print '<td>' ;
if ( $obj -> socid > 0 )
{
$result = $socstatic -> fetch ( $obj -> socid );
$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' ];
print '<div class="float">' . $userstatic -> getNomUrl ( 1 );
$j ++ ;
if ( $j < $nbofsalesrepresentative ) print ', ' ;
print '</div>' ;
}
}
//else print $langs->trans("NoSalesRepresentativeAffected");
}
else
{
print ' ' ;
}
print '</td>' ;
}
// Date
if ( ! empty ( $arrayfields [ 'c.date_contrat' ][ 'checked' ]))
{
print '<td align="center">' . dol_print_date ( $db -> jdate ( $obj -> date_contrat ), 'day' ) . '</td>' ;
}
// Extra fields
if ( is_array ( $extrafields -> attribute_label ) && count ( $extrafields -> attribute_label ))
{
foreach ( $extrafields -> attribute_label as $key => $val )
{
if ( ! empty ( $arrayfields [ " ef. " . $key ][ 'checked' ]))
{
print '<td' ;
$align = $extrafields -> getAlignFlag ( $key );
if ( $align ) print ' align="' . $align . '"' ;
print '>' ;
$tmpkey = 'options_' . $key ;
print $extrafields -> showOutputField ( $key , $obj -> $tmpkey , '' , 1 );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
}
}
// 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 [ 'c.datec' ][ 'checked' ]))
{
print '<td align="center" class="nowrap">' ;
print dol_print_date ( $db -> jdate ( $obj -> date_creation ), 'dayhour' );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Date modification
if ( ! empty ( $arrayfields [ 'c.tms' ][ 'checked' ]))
{
print '<td align="center" class="nowrap">' ;
print dol_print_date ( $db -> jdate ( $obj -> date_update ), 'dayhour' );
print '</td>' ;
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
}
// Status
if ( ! empty ( $arrayfields [ 'status' ][ 'checked' ]))
{
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>' ;
}
// 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 -> rowid , $arrayofselected )) $selected = 1 ;
print '<input id="cb' . $obj -> rowid . '" class="flat checkforselect" type="checkbox" name="toselect[]" value="' . $obj -> rowid . '"' . ( $selected ? ' checked="checked"' : '' ) . '>' ;
2015-02-23 20:26:34 +01:00
}
print '</td>' ;
2016-09-02 14:47:59 +02:00
if ( ! $i ) $totalarray [ 'nbfield' ] ++ ;
2005-07-03 15:07:59 +02:00
print " </tr> \n " ;
$i ++ ;
2004-11-26 15:20:43 +01:00
}
2005-07-03 15:07:59 +02:00
$db -> free ( $resql );
2004-11-26 15:20:43 +01:00
2014-11-28 00:57:40 +01:00
print '</table>' ;
print '</form>' ;
2004-11-26 15:20:43 +01:00
}
else
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
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 ();