123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932 |
- <?php
- /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2003 Eric Seigne <erics@rycks.com>
- * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2013-2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
- * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
- * Copyright (C) 2013 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
- * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
- * Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
- * Copyright (C) 2018 Juanjo Menent <jmenent@2byte.es>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/contact/list.php
- * \ingroup societe
- * \brief Page to list all contacts
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array("companies", "suppliers", "categories"));
- $action=GETPOST('action','alpha');
- $massaction=GETPOST('massaction','alpha');
- $show_files=GETPOST('show_files','int');
- $confirm=GETPOST('confirm','alpha');
- $toselect = GETPOST('toselect', 'array');
- $contextpage=GETPOST('contextpage','aZ')?GETPOST('contextpage','aZ'):'contactlist';
- // Security check
- $id = GETPOST('id','int');
- $contactid = GETPOST('id','int');
- $ref = ''; // There is no ref for contacts
- if ($user->societe_id) $socid=$user->societe_id;
- $result = restrictedArea($user, 'contact', $contactid,'');
- $sall=trim((GETPOST('search_all', 'alphanohtml')!='')?GETPOST('search_all', 'alphanohtml'):GETPOST('sall', 'alphanohtml'));
- $search_cti=preg_replace('/^0+/', '', preg_replace('/[^0-9]/', '', GETPOST('search_cti', 'alphanohtml'))); // Phone number without any special chars
- $search_phone=GETPOST("search_phone",'alpha');
- $search_id=trim(GETPOST("search_id","int"));
- $search_firstlast_only=GETPOST("search_firstlast_only",'alpha');
- $search_lastname=GETPOST("search_lastname",'alpha');
- $search_firstname=GETPOST("search_firstname",'alpha');
- $search_societe=GETPOST("search_societe",'alpha');
- $search_poste=GETPOST("search_poste",'alpha');
- $search_phone_perso=GETPOST("search_phone_perso",'alpha');
- $search_phone_pro=GETPOST("search_phone_pro",'alpha');
- $search_phone_mobile=GETPOST("search_phone_mobile",'alpha');
- $search_fax=GETPOST("search_fax",'alpha');
- $search_email=GETPOST("search_email",'alpha');
- $search_skype=GETPOST("search_skype",'alpha');
- $search_twitter=GETPOST("search_twitter",'alpha');
- $search_facebook=GETPOST("search_facebook",'alpha');
- $search_priv=GETPOST("search_priv",'alpha');
- $search_categ=GETPOST("search_categ",'int');
- $search_categ_thirdparty=GETPOST("search_categ_thirdparty",'int');
- $search_categ_supplier=GETPOST("search_categ_supplier",'int');
- $search_status=GETPOST("search_status",'int');
- $search_type=GETPOST('search_type','alpha');
- $search_zip=GETPOST('search_zip','alpha');
- $search_town=GETPOST('search_town','alpha');
- $search_import_key=GETPOST("search_import_key","alpha");
- $search_country=GETPOST("search_country",'intcomma');
- if ($search_status=='') $search_status=1; // always display activ customer first
- $optioncss = GETPOST('optioncss','alpha');
- $type=GETPOST("type",'aZ');
- $view=GETPOST("view",'alpha');
- $limit = GETPOST('limit','int')?GETPOST('limit','int'):$conf->liste_limit;
- $sortfield = GETPOST('sortfield', 'alpha');
- $sortorder = GETPOST('sortorder', 'alpha');
- $page = GETPOST('page', 'int');
- $userid=GETPOST('userid','int');
- $begin=GETPOST('begin');
- if (! $sortorder) $sortorder="ASC";
- if (! $sortfield) $sortfield="p.lastname";
- if (empty($page) || $page < 0) { $page = 0; }
- $offset = $limit * $page;
- $titre = (! empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("ListOfContacts") : $langs->trans("ListOfContactsAddresses"));
- if ($type == "p")
- {
- if (empty($contextpage) || $contextpage == 'contactlist') $contextpage='contactprospectlist';
- $titre.=' ('.$langs->trans("ThirdPartyProspects").')';
- $urlfiche="card.php";
- }
- if ($type == "c")
- {
- if (empty($contextpage) || $contextpage == 'contactlist') $contextpage='contactcustomerlist';
- $titre.=' ('.$langs->trans("ThirdPartyCustomers").')';
- $urlfiche="card.php";
- }
- else if ($type == "f")
- {
- if (empty($contextpage) || $contextpage == 'contactlist') $contextpage='contactsupplierlist';
- $titre.=' ('.$langs->trans("ThirdPartySuppliers").')';
- $urlfiche="card.php";
- }
- else if ($type == "o")
- {
- if (empty($contextpage) || $contextpage == 'contactlist') $contextpage='contactotherlist';
- $titre.=' ('.$langs->trans("OthersNotLinkedToThirdParty").')';
- $urlfiche="";
- }
- // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
- $object = new Contact($db);
- $hookmanager->initHooks(array('contactlist'));
- $extrafields = new ExtraFields($db);
- // fetch optionals attributes and labels
- $extralabels = $extrafields->fetch_name_optionals_label('contact');
- $search_array_options=$extrafields->getOptionalsFromPost($object->table_element,'','search_');
- // List of fields to search into when doing a "search in all"
- $fieldstosearchall = array(
- 'p.lastname'=>'Lastname',
- 'p.firstname'=>'Firstname',
- 'p.email'=>'EMail',
- 's.nom'=>"ThirdParty",
- 'p.phone'=>"Phone",
- );
- // Definition of fields for list
- $arrayfields=array(
- 'p.rowid'=>array('label'=>"TechnicalID", 'checked'=>($conf->global->MAIN_SHOW_TECHNICAL_ID?1:0), 'enabled'=>($conf->global->MAIN_SHOW_TECHNICAL_ID?1:0)),
- 'p.lastname'=>array('label'=>"Lastname", 'checked'=>1),
- 'p.firstname'=>array('label'=>"Firstname", 'checked'=>1),
- 'p.poste'=>array('label'=>"PostOrFunction", 'checked'=>1),
- 'p.town'=>array('label'=>"Town", 'checked'=>0),
- 'p.zip'=>array('label'=>"Zip", 'checked'=>0),
- 'country.code_iso'=>array('label'=>"Country", 'checked'=>0),
- 'p.phone'=>array('label'=>"Phone", 'checked'=>1),
- 'p.phone_perso'=>array('label'=>"PhonePerso", 'checked'=>0),
- 'p.phone_mobile'=>array('label'=>"PhoneMobile", 'checked'=>1),
- 'p.fax'=>array('label'=>"Fax", 'checked'=>0),
- 'p.email'=>array('label'=>"EMail", 'checked'=>1),
- 'p.skype'=>array('label'=>"Skype", 'checked'=>1, 'enabled'=>(! empty($conf->socialnetworks->enabled))),
- 'p.twitter'=>array('label'=>"Twitter", 'checked'=>1, 'enabled'=>(! empty($conf->socialnetworks->enabled))),
- 'p.facebook'=>array('label'=>"Facebook", 'checked'=>1, 'enabled'=>(! empty($conf->socialnetworks->enabled))),
- 'p.thirdparty'=>array('label'=>"ThirdParty", 'checked'=>1, 'enabled'=>empty($conf->global->SOCIETE_DISABLE_CONTACTS)),
- 'p.priv'=>array('label'=>"ContactVisibility", 'checked'=>1, 'position'=>200),
- 'p.datec'=>array('label'=>"DateCreationShort", 'checked'=>0, 'position'=>500),
- 'p.tms'=>array('label'=>"DateModificationShort", 'checked'=>0, 'position'=>500),
- 'p.statut'=>array('label'=>"Status", 'checked'=>1, 'position'=>1000),
- 'p.import_key'=>array('label'=>"ImportId", 'checked'=>0, 'position'=>1100),
- );
- // Extra fields
- if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label))
- {
- foreach($extrafields->attribute_label as $key => $val)
- {
- 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]));
- }
- }
- $object=new Contact($db);
- if (($id > 0 || ! empty($ref)) && $action != 'add')
- {
- $result=$object->fetch($id,$ref);
- if ($result < 0) dol_print_error($db);
- }
- /*
- * Actions
- */
- if (GETPOST('cancel','alpha')) { $action='list'; $massaction=''; }
- if (! GETPOST('confirmmassaction','alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') { $massaction=''; }
- $parameters=array();
- $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))
- {
- // Selection of new fields
- include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
- // Did we click on 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
- {
- $sall="";
- $search_id='';
- $search_firstlast_only="";
- $search_lastname="";
- $search_firstname="";
- $search_societe="";
- $search_town="";
- $search_zip="";
- $search_country="";
- $search_poste="";
- $search_phone="";
- $search_phone_perso="";
- $search_phone_pro="";
- $search_phone_mobile="";
- $search_fax="";
- $search_email="";
- $search_skype="";
- $search_twitter="";
- $search_facebook="";
- $search_priv="";
- $search_status=-1;
- $search_categ='';
- $search_categ_thirdparty='';
- $search_categ_supplier='';
- $search_import_key='';
- $toselect='';
- $search_array_options=array();
- }
- // Mass actions
- $objectclass='Contact';
- $objectlabel='Contact';
- $permtoread = $user->rights->societe->lire;
- $permtodelete = $user->rights->societe->supprimer;
- $uploaddir = $conf->societe->dir_output;
- include DOL_DOCUMENT_ROOT.'/core/actions_massactions.inc.php';
- }
- if ($search_priv < 0) $search_priv='';
- /*
- * View
- */
- $form=new Form($db);
- $formother=new FormOther($db);
- $contactstatic=new Contact($db);
- $title = (! empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("Contacts") : $langs->trans("ContactsAddresses"));
- $sql = "SELECT s.rowid as socid, s.nom as name,";
- $sql.= " p.rowid, p.lastname as lastname, p.statut, p.firstname, p.zip, p.town, p.poste, p.email, p.skype,";
- $sql.= " p.phone as phone_pro, p.phone_mobile, p.phone_perso, p.fax, p.fk_pays, p.priv, p.datec as date_creation, p.tms as date_update,";
- $sql.= " co.code as country_code";
- // 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;
- $sql.= " FROM ".MAIN_DB_PREFIX."socpeople as p";
- if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."socpeople_extrafields as ef on (p.rowid = ef.fk_object)";
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_country as co ON co.rowid = p.fk_pays";
- $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = p.fk_soc";
- if (! empty($search_categ)) $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX."categorie_contact as cc ON p.rowid = cc.fk_socpeople"; // We need this table joined to the select in order to filter by categ
- if (! empty($search_categ_thirdparty)) $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX."categorie_societe as cs ON s.rowid = cs.fk_soc"; // We need this table joined to the select in order to filter by categ
- if (! empty($search_categ_supplier)) $sql.= ' LEFT JOIN '.MAIN_DB_PREFIX."categorie_fournisseur as cs2 ON s.rowid = cs2.fk_soc"; // We need this table joined to the select in order to filter by categ
- if (!$user->rights->societe->client->voir && !$socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON s.rowid = sc.fk_soc";
- $sql.= ' WHERE p.entity IN ('.getEntity('socpeople').')';
- if (!$user->rights->societe->client->voir && !$socid) //restriction
- {
- $sql .= " AND (sc.fk_user = " .$user->id." OR p.fk_soc IS NULL)";
- }
- if (! empty($userid)) // propre au commercial
- {
- $sql .= " AND p.fk_user_creat=".$db->escape($userid);
- }
- // Filter to exclude not owned private contacts
- if ($search_priv != '0' && $search_priv != '1')
- {
- $sql .= " AND (p.priv='0' OR (p.priv='1' AND p.fk_user_creat=".$user->id."))";
- }
- else
- {
- if ($search_priv == '0') $sql .= " AND p.priv='0'";
- if ($search_priv == '1') $sql .= " AND (p.priv='1' AND p.fk_user_creat=".$user->id.")";
- }
- if ($search_categ > 0) $sql.= " AND cc.fk_categorie = ".$db->escape($search_categ);
- if ($search_categ == -2) $sql.= " AND cc.fk_categorie IS NULL";
- if ($search_categ_thirdparty > 0) $sql.= " AND cs.fk_categorie = ".$db->escape($search_categ_thirdparty);
- if ($search_categ_thirdparty == -2) $sql.= " AND cs.fk_categorie IS NULL";
- if ($search_categ_supplier > 0) $sql.= " AND cs2.fk_categorie = ".$db->escape($search_categ_supplier);
- if ($search_categ_supplier == -2) $sql.= " AND cs2.fk_categorie IS NULL";
- if ($sall) $sql.= natural_search(array_keys($fieldstosearchall), $sall);
- if (strlen($search_phone)) $sql.= natural_search(array('p.phone', 'p.phone_perso', 'p.phone_mobile'), $search_phone);
- if (strlen($search_cti)) $sql.= natural_search(array('p.phone', 'p.phone_perso', 'p.phone_mobile'), $search_cti);
- if (strlen($search_firstlast_only)) $sql.= natural_search(array('p.lastname', 'p.firstname'), $search_firstlast_only);
- if ($search_id > 0) $sql.= natural_search("p.rowid",$search_id,1);
- if ($search_lastname) $sql.= natural_search('p.lastname', $search_lastname);
- if ($search_firstname) $sql.= natural_search('p.firstname', $search_firstname);
- if ($search_societe) $sql.= natural_search('s.nom', $search_societe);
- if ($search_country) $sql .= " AND p.fk_pays IN (".$search_country.')';
- if (strlen($search_poste)) $sql.= natural_search('p.poste', $search_poste);
- if (strlen($search_phone_perso)) $sql.= natural_search('p.phone_perso', $search_phone_perso);
- if (strlen($search_phone_pro)) $sql.= natural_search('p.phone', $search_phone_pro);
- if (strlen($search_phone_mobile)) $sql.= natural_search('p.phone_mobile', $search_phone_mobile);
- if (strlen($search_fax)) $sql.= natural_search('p.fax', $search_fax);
- if (strlen($search_skype)) $sql.= natural_search('p.skype', $search_skype);
- if (strlen($search_twitter)) $sql.= natural_search('p.twitter', $search_twitter);
- if (strlen($search_facebook)) $sql.= natural_search('p.facebook', $search_facebook);
- if (strlen($search_email)) $sql.= natural_search('p.email', $search_email);
- if (strlen($search_zip)) $sql.= natural_search("p.zip",$search_zip);
- if (strlen($search_town)) $sql.= natural_search("p.town",$search_town);
- if ($search_status != '' && $search_status >= 0) $sql.= " AND p.statut = ".$db->escape($search_status);
- if ($search_import_key) $sql.= natural_search("p.import_key",$search_import_key);
- if ($type == "o") // filtre sur type
- {
- $sql .= " AND p.fk_soc IS NULL";
- }
- else if ($type == "f") // filtre sur type
- {
- $sql .= " AND s.fournisseur = 1";
- }
- else if ($type == "c") // filtre sur type
- {
- $sql .= " AND s.client IN (1, 3)";
- }
- else if ($type == "p") // filtre sur type
- {
- $sql .= " AND s.client IN (2, 3)";
- }
- if (! empty($socid))
- {
- $sql .= " AND s.rowid = ".$socid;
- }
- // Add where from extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_sql.tpl.php';
- // 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;
- // Add order
- if ($view == "recent")
- {
- $sql.= $db->order("p.datec","DESC");
- }
- else
- {
- $sql.= $db->order($sortfield,$sortorder);
- }
- // Count total nb of records
- $nbtotalofrecords = '';
- if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
- {
- $result = $db->query($sql);
- $nbtotalofrecords = $db->num_rows($result);
- if (($page * $limit) > $nbtotalofrecords) // if total resultset is smaller then paging size (filtering), goto and load page 0
- {
- $page = 0;
- $offset = 0;
- }
- }
- $sql.= $db->plimit($limit+1, $offset);
- $result = $db->query($sql);
- if (! $result)
- {
- dol_print_error($db);
- exit;
- }
- $num = $db->num_rows($result);
- $arrayofselected=is_array($toselect)?$toselect:array();
- if ($num == 1 && ! empty($conf->global->MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE) && ($sall != '' || $seearch_cti != ''))
- {
- $obj = $db->fetch_object($resql);
- $id = $obj->rowid;
- header("Location: ".DOL_URL_ROOT.'/contact/card.php?id='.$id);
- exit;
- }
- $help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Módulo_Empresas';
- llxHeader('',$title,$help_url);
- $param='';
- if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage;
- if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit;
- $param.='&begin='.urlencode($begin).'&view='.urlencode($view).'&userid='.urlencode($userid).'&contactname='.urlencode($sall);
- $param.='&type='.urlencode($type).'&view='.urlencode($view);
- if (!empty($search_categ)) $param.='&search_categ='.urlencode($search_categ);
- if (!empty($search_categ_thirdparty)) $param.='&search_categ_thirdparty='.urlencode($search_categ_thirdparty);
- if (!empty($search_categ_supplier)) $param.='&search_categ_supplier='.urlencode($search_categ_supplier);
- if ($sall != '') $param.='&sall='.urlencode($sall);
- if ($search_id > 0) $param.= "&search_id=".urlencode($search_id);
- if ($search_lastname != '') $param.='&search_lastname='.urlencode($search_lastname);
- if ($search_firstname != '') $param.='&search_firstname='.urlencode($search_firstname);
- if ($search_societe != '') $param.='&search_societe='.urlencode($search_societe);
- if ($search_zip != '') $param.='&search_zip='.urlencode($search_zip);
- if ($search_town != '') $param.='&search_town='.urlencode($search_town);
- if ($search_country != '') $param.= "&search_country=".urlencode($search_country);
- if ($search_job != '') $param.='&search_job='.urlencode($search_job);
- if ($search_phone_pro != '') $param.='&search_phone_pro='.urlencode($search_phone_pro);
- if ($search_phone_perso != '') $param.='&search_phone_perso='.urlencode($search_phone_perso);
- if ($search_phone_mobile != '') $param.='&search_phone_mobile='.urlencode($search_phone_mobile);
- if ($search_fax != '') $param.='&search_fax='.urlencode($search_fax);
- if ($search_email != '') $param.='&search_email='.urlencode($search_email);
- if ($search_status != '') $param.='&search_status='.urlencode($search_status);
- if ($search_priv == '0' || $search_priv == '1') $param.="&search_priv=".urlencode($search_priv);
- if ($search_import_key != '') $param.='&search_import_key='.urlencode($search_import_key);
- if ($optioncss != '') $param.='&optioncss='.$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->societe->creer) $arrayofmassactions['createbills']=$langs->trans("CreateInvoiceForThisCustomer");
- if ($user->rights->societe->supprimer) $arrayofmassactions['predelete']=$langs->trans("Delete");
- if (in_array($massaction, array('presend','predelete'))) $arrayofmassactions=array();
- $massactionbutton=$form->selectMassAction('', $arrayofmassactions);
- $newcardbutton='';
- if ($user->rights->societe->contact->creer)
- {
- $newcardbutton='<a class="butActionNew" href="'.DOL_URL_ROOT.'/contact/card.php?action=create"><span class="valignmiddle">'.$langs->trans('NewContactAddress').'</span>';
- $newcardbutton.= '<span class="fa fa-plus-circle valignmiddle"></span>';
- $newcardbutton.= '</a>';
- }
- print '<form method="post" action="'.$_SERVER["PHP_SELF"].'" name="formfilter">';
- 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="sortfield" value="'.$sortfield.'">';
- print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
- print '<input type="hidden" name="page" value="'.$page.'">';
- print '<input type="hidden" name="type" value="'.$type.'">';
- print '<input type="hidden" name="view" value="'.dol_escape_htmltag($view).'">';
- print_barre_liste($titre, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'title_companies.png', 0, $newcardbutton, '', $limit);
- $topicmail="Information";
- $modelmail="contact";
- $objecttmp=new Contact($db);
- $trackid='ctc'.$object->id;
- include DOL_DOCUMENT_ROOT.'/core/tpl/massactions_pre.tpl.php';
- if ($sall)
- {
- foreach($fieldstosearchall as $key => $val) $fieldstosearchall[$key]=$langs->trans($val);
- print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $sall) . join(', ',$fieldstosearchall).'</div>';
- }
- if ($search_firstlast_only)
- {
- print '<div class="divsearchfieldfilter">'.$langs->trans("FilterOnInto", $search_firstlast_only) . $langs->trans("Lastname").", ".$langs->trans("Firstname").'</div>';
- }
- $moreforfilter='';
- if (! empty($conf->categorie->enabled))
- {
- require_once DOL_DOCUMENT_ROOT . '/categories/class/categorie.class.php';
- $moreforfilter.='<div class="divsearchfield">';
- $moreforfilter.=$langs->trans('Categories'). ': ';
- $moreforfilter.=$formother->select_categories(Categorie::TYPE_CONTACT,$search_categ,'search_categ',1);
- $moreforfilter.='</div>';
- if (empty($type) || $type == 'c' || $type == 'p')
- {
- $moreforfilter.='<div class="divsearchfield">';
- if ($type == 'c') $moreforfilter.=$langs->trans('CustomersCategoriesShort'). ': ';
- else if ($type == 'p') $moreforfilter.=$langs->trans('ProspectsCategoriesShort'). ': ';
- else $moreforfilter.=$langs->trans('CustomersProspectsCategoriesShort'). ': ';
- $moreforfilter.=$formother->select_categories(Categorie::TYPE_CUSTOMER,$search_categ_thirdparty,'search_categ_thirdparty',1);
- $moreforfilter.='</div>';
- }
- if (empty($type) || $type == 'f')
- {
- $moreforfilter.='<div class="divsearchfield">';
- $moreforfilter.=$langs->trans('SuppliersCategoriesShort'). ': ';
- $moreforfilter.=$formother->select_categories(Categorie::TYPE_SUPPLIER,$search_categ_supplier,'search_categ_supplier',1);
- $moreforfilter.='</div>';
- }
- }
- if ($moreforfilter)
- {
- print '<div class="liste_titre liste_titre_bydiv centpercent">';
- print $moreforfilter;
- $parameters=array('type'=>$type);
- $reshook=$hookmanager->executeHooks('printFieldPreListTitle',$parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- 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";
- // Lines for filter fields
- print '<tr class="liste_titre_filter">';
- if (! empty($arrayfields['p.rowid']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat searchstring" type="text" name="search_id" size="1" value="'.dol_escape_htmltag($search_id).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.lastname']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_lastname" size="6" value="'.dol_escape_htmltag($search_lastname).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.firstname']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_firstname" size="6" value="'.dol_escape_htmltag($search_firstname).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.poste']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_poste" size="5" value="'.dol_escape_htmltag($search_poste).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.zip']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_zip" size="3" value="'.dol_escape_htmltag($search_zip).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.town']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_town" size="5" value="'.dol_escape_htmltag($search_town).'">';
- print '</td>';
- }
- // State
- /*if (! empty($arrayfields['state.nom']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat searchstring" size="4" type="text" name="search_state" value="'.dol_escape_htmltag($search_state).'">';
- print '</td>';
- }
- // Region
- if (! empty($arrayfields['region.nom']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat searchstring" size="4" type="text" name="search_region" value="'.dol_escape_htmltag($search_region).'">';
- 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>';
- }
- if (! empty($arrayfields['p.phone']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_phone_pro" size="6" value="'.dol_escape_htmltag($search_phone_pro).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.phone_perso']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_phone_perso" size="6" value="'.dol_escape_htmltag($search_phone_perso).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.phone_mobile']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_phone_mobile" size="6" value="'.dol_escape_htmltag($search_phone_mobile).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.fax']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_fax" size="6" value="'.dol_escape_htmltag($search_fax).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.email']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_email" size="6" value="'.dol_escape_htmltag($search_email).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.skype']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_skype" size="6" value="'.dol_escape_htmltag($search_skype).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.twitter']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_twitter" size="6" value="'.dol_escape_htmltag($search_twitter).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.facebook']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_facebook" size="6" value="'.dol_escape_htmltag($search_facebook).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.thirdparty']['checked']))
- {
- print '<td class="liste_titre">';
- print '<input class="flat" type="text" name="search_societe" size="8" value="'.dol_escape_htmltag($search_societe).'">';
- print '</td>';
- }
- if (! empty($arrayfields['p.priv']['checked']))
- {
- print '<td class="liste_titre" align="center">';
- $selectarray=array('0'=>$langs->trans("ContactPublic"),'1'=>$langs->trans("ContactPrivate"));
- print $form->selectarray('search_priv',$selectarray,$search_priv,1);
- 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['p.datec']['checked']))
- {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Date modification
- if (! empty($arrayfields['p.tms']['checked']))
- {
- print '<td class="liste_titre">';
- print '</td>';
- }
- // Status
- if (! empty($arrayfields['p.statut']['checked']))
- {
- print '<td class="liste_titre center">';
- print $form->selectarray('search_status', array('-1'=>'', '0'=>$langs->trans('ActivityCeased'),'1'=>$langs->trans('InActivity')),$search_status);
- print '</td>';
- }
- if (! empty($arrayfields['p.import_key']['checked']))
- {
- print '<td class="liste_titre center">';
- print '<input class="flat searchstring" type="text" name="search_import_key" size="3" value="'.dol_escape_htmltag($search_import_key).'">';
- print '</td>';
- }
- // Action column
- print '<td class="liste_titre" align="right">';
- $searchpicto=$form->showFilterButtons();
- print $searchpicto;
- print '</td>';
- print '</tr>';
- // Ligne des titres
- print '<tr class="liste_titre">';
- if (! empty($arrayfields['p.rowid']['checked'])) print_liste_field_titre($arrayfields['p.rowid']['label'], $_SERVER["PHP_SELF"],"p.rowid","",$param,"",$sortfield,$sortorder);
- if (! empty($arrayfields['p.lastname']['checked'])) print_liste_field_titre($arrayfields['p.lastname']['label'],$_SERVER["PHP_SELF"],"p.lastname", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.firstname']['checked'])) print_liste_field_titre($arrayfields['p.firstname']['label'],$_SERVER["PHP_SELF"],"p.firstname", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.poste']['checked'])) print_liste_field_titre($arrayfields['p.poste']['label'],$_SERVER["PHP_SELF"],"p.poste", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.zip']['checked'])) print_liste_field_titre($arrayfields['p.zip']['label'],$_SERVER["PHP_SELF"],"p.zip", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.town']['checked'])) print_liste_field_titre($arrayfields['p.town']['label'],$_SERVER["PHP_SELF"],"p.town", $begin, $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['region.nom']['checked'])) print_liste_field_titre($arrayfields['region.nom']['label'],$_SERVER["PHP_SELF"],"region.nom","",$param,'',$sortfield,$sortorder);
- if (! empty($arrayfields['country.code_iso']['checked'])) print_liste_field_titre($arrayfields['country.code_iso']['label'],$_SERVER["PHP_SELF"],"co.code_iso","",$param,'align="center"',$sortfield,$sortorder);
- if (! empty($arrayfields['p.phone']['checked'])) print_liste_field_titre($arrayfields['p.phone']['label'],$_SERVER["PHP_SELF"],"p.phone", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.phone_perso']['checked'])) print_liste_field_titre($arrayfields['p.phone_perso']['label'],$_SERVER["PHP_SELF"],"p.phone_perso", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.phone_mobile']['checked'])) print_liste_field_titre($arrayfields['p.phone_mobile']['label'],$_SERVER["PHP_SELF"],"p.phone_mobile", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.fax']['checked'])) print_liste_field_titre($arrayfields['p.fax']['label'],$_SERVER["PHP_SELF"],"p.fax", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.email']['checked'])) print_liste_field_titre($arrayfields['p.email']['label'],$_SERVER["PHP_SELF"],"p.email", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.skype']['checked'])) print_liste_field_titre($arrayfields['p.skype']['label'],$_SERVER["PHP_SELF"],"p.skype", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.twitter']['checked'])) print_liste_field_titre($arrayfields['p.twitter']['label'],$_SERVER["PHP_SELF"],"p.twitter", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.facebook']['checked'])) print_liste_field_titre($arrayfields['p.facebook']['label'],$_SERVER["PHP_SELF"],"p.facebook", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.thirdparty']['checked'])) print_liste_field_titre($arrayfields['p.thirdparty']['label'],$_SERVER["PHP_SELF"],"s.nom", $begin, $param, '', $sortfield,$sortorder);
- if (! empty($arrayfields['p.priv']['checked'])) print_liste_field_titre($arrayfields['p.priv']['label'],$_SERVER["PHP_SELF"],"p.priv", $begin, $param, 'align="center"', $sortfield,$sortorder);
- // Extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
- // Hook fields
- $parameters=array('arrayfields'=>$arrayfields,'param'=>$param,'sortfield'=>$sortfield,'sortorder'=>$sortorder);
- $reshook=$hookmanager->executeHooks('printFieldListTitle',$parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- 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.statut']['checked'])) print_liste_field_titre($arrayfields['p.statut']['label'],$_SERVER["PHP_SELF"],"p.statut","",$param,'align="center"',$sortfield,$sortorder);
- if (! empty($arrayfields['p.import_key']['checked'])) print_liste_field_titre($arrayfields['p.import_key']['label'],$_SERVER["PHP_SELF"],"p.import_key","",$param,'align="center"',$sortfield,$sortorder);
- print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"],"",'','','align="center"',$sortfield,$sortorder,'maxwidthsearch ');
- print "</tr>\n";
- $i = 0;
- $totalarray=array();
- while ($i < min($num,$limit))
- {
- $obj = $db->fetch_object($result);
- print '<tr class="oddeven">';
- $contactstatic->lastname=$obj->lastname;
- $contactstatic->firstname='';
- $contactstatic->id=$obj->rowid;
- $contactstatic->statut=$obj->statut;
- $contactstatic->poste=$obj->poste;
- $contactstatic->email=$obj->email;
- $contactstatic->phone_pro=$obj->phone_pro;
- $contactstatic->phone_perso=$obj->phone_perso;
- $contactstatic->phone_mobile=$obj->phone_mobile;
- $contactstatic->zip=$obj->zip;
- $contactstatic->town=$obj->town;
- // ID
- if (! empty($arrayfields['p.rowid']['checked']))
- {
- print '<td class="tdoverflowmax50">';
- print $obj->rowid;
- print "</td>\n";
- if (! $i) $totalarray['nbfield']++;
- }
- // Name
- if (! empty($arrayfields['p.lastname']['checked']))
- {
- print '<td valign="middle">';
- print $contactstatic->getNomUrl(1,'',0);
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Firstname
- if (! empty($arrayfields['p.firstname']['checked']))
- {
- print '<td>'.$obj->firstname.'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Job position
- if (! empty($arrayfields['p.poste']['checked']))
- {
- print '<td class="tdoverflowmax100">'.$obj->poste.'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Zip
- if (! empty($arrayfields['p.zip']['checked']))
- {
- print '<td>'.$obj->zip.'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Town
- if (! empty($arrayfields['p.town']['checked']))
- {
- print '<td>'.$obj->town.'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // State
- /*if (! empty($arrayfields['state.nom']['checked']))
- {
- print "<td>".$obj->state_name."</td>\n";
- if (! $i) $totalarray['nbfield']++;
- }
- // Region
- if (! empty($arrayfields['region.nom']['checked']))
- {
- print "<td>".$obj->region_name."</td>\n";
- if (! $i) $totalarray['nbfield']++;
- }*/
- // Country
- if (! empty($arrayfields['country.code_iso']['checked']))
- {
- print '<td align="center">';
- $tmparray=getCountry($obj->fk_pays,'all');
- print $tmparray['label'];
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Phone
- if (! empty($arrayfields['p.phone']['checked']))
- {
- print '<td>'.dol_print_phone($obj->phone_pro,$obj->country_code,$obj->rowid,$obj->socid,'AC_TEL').'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Phone perso
- if (! empty($arrayfields['p.phone_perso']['checked']))
- {
- print '<td>'.dol_print_phone($obj->phone_perso,$obj->country_code,$obj->rowid,$obj->socid,'AC_TEL').'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Phone mobile
- if (! empty($arrayfields['p.phone_mobile']['checked']))
- {
- print '<td>'.dol_print_phone($obj->phone_mobile,$obj->country_code,$obj->rowid,$obj->socid,'AC_TEL').'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Fax
- if (! empty($arrayfields['p.fax']['checked']))
- {
- print '<td>'.dol_print_phone($obj->fax,$obj->country_code,$obj->rowid,$obj->socid,'AC_TEL').'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // EMail
- if (! empty($arrayfields['p.email']['checked']))
- {
- print '<td>'.dol_print_email($obj->email,$obj->rowid,$obj->socid,'AC_EMAIL',18).'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Skype
- if (! empty($arrayfields['p.skype']['checked']))
- {
- if (! empty($conf->socialnetworks->enabled)) { print '<td>'.dol_print_socialnetworks($obj->skype,$obj->rowid,$obj->socid,'skype').'</td>'; }
- if (! $i) $totalarray['nbfield']++;
- }
- // Twitter
- if (! empty($arrayfields['p.twitter']['checked']))
- {
- if (! empty($conf->socialnetworks->enabled)) { print '<td>'.dol_print_socialnetworks($obj->twitter,$obj->rowid,$obj->socid,'twitter').'</td>'; }
- if (! $i) $totalarray['nbfield']++;
- }
- // Facebook
- if (! empty($arrayfields['p.facebook']['checked']))
- {
- if (! empty($conf->socialnetworks->enabled)) { print '<td>'.dol_print_socialnetworks($obj->facebook,$obj->rowid,$obj->socid,'facebook').'</td>'; }
- if (! $i) $totalarray['nbfield']++;
- }
- // Company
- if (! empty($arrayfields['p.thirdparty']['checked']))
- {
- print '<td>';
- if ($obj->socid)
- {
- $objsoc = new Societe($db);
- $objsoc->fetch($obj->socid);
- print $objsoc->getNomUrl(1);
- }
- else
- print ' ';
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Private/Public
- if (! empty($arrayfields['p.priv']['checked']))
- {
- print '<td align="center">'.$contactstatic->LibPubPriv($obj->priv).'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Extra fields
- include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_print_fields.tpl.php';
- // 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']))
- {
- print '<td align="center">';
- print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser');
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Date modification
- if (! empty($arrayfields['p.tms']['checked']))
- {
- print '<td align="center">';
- print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser');
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- // Status
- if (! empty($arrayfields['p.statut']['checked']))
- {
- print '<td align="center">'.$contactstatic->getLibStatut(3).'</td>';
- if (! $i) $totalarray['nbfield']++;
- }
- if (! empty($arrayfields['p.import_key']['checked']))
- {
- print '<td class="tdoverflowmax100">';
- print $obj->import_key;
- print "</td>\n";
- if (! $i) $totalarray['nbfield']++;
- }
- // 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"':'').'>';
- }
- print '</td>';
- if (! $i) $totalarray['nbfield']++;
- print "</tr>\n";
- $i++;
- }
- $db->free($result);
- $parameters=array('arrayfields'=>$arrayfields, 'sql'=>$sql);
- $reshook=$hookmanager->executeHooks('printFieldListFooter',$parameters); // Note that $action and $object may have been modified by hook
- print $hookmanager->resPrint;
- print "</table>";
- print "</div>";
- //if ($num > $limit || $page) print_barre_liste('', $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, 'title_companies.png', 0, '', '', $limit, 1);
- print '</form>';
- llxFooter();
- $db->close();
|