mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 09:08:09 +01:00
371 lines
13 KiB
PHP
371 lines
13 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2003 Eric Seigne <erics@rycks.com>
|
|
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
|
*
|
|
* 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/contact/index.php
|
|
* \ingroup societe
|
|
* \brief Page liste des contacts
|
|
* \version $Id$
|
|
*/
|
|
|
|
require("../main.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/contact/class/contact.class.php");
|
|
|
|
$langs->load("companies");
|
|
$langs->load("suppliers");
|
|
|
|
// Security check
|
|
$contactid = isset($_GET["id"])?$_GET["id"]:'';
|
|
if ($user->societe_id) $socid=$user->societe_id;
|
|
$result = restrictedArea($user, 'contact', $contactid,'');
|
|
|
|
$search_nom=isset($_GET["search_nom"])?$_GET["search_nom"]:$_POST["search_nom"];
|
|
$search_prenom=isset($_GET["search_prenom"])?$_GET["search_prenom"]:$_POST["search_prenom"];
|
|
$search_societe=isset($_GET["search_societe"])?$_GET["search_societe"]:$_POST["search_societe"];
|
|
$search_email=isset($_GET["search_email"])?$_GET["search_email"]:$_POST["search_email"];
|
|
$search_priv=isset($_GET["search_priv"])?$_GET["search_priv"]:(isset($_POST["search_priv"])?$_POST["search_priv"]:'');
|
|
|
|
$type = isset($_GET["type"])?$_GET["type"]:$_POST["type"];
|
|
|
|
$view=isset($_GET["view"])?$_GET["view"]:$_POST["view"];
|
|
|
|
$sall=isset($_GET["contactname"])?$_GET["contactname"]:$_POST["contactname"];
|
|
$sortfield = isset($_GET["sortfield"])?$_GET["sortfield"]:$_POST["sortfield"];
|
|
$sortorder = isset($_GET["sortorder"])?$_GET["sortorder"]:$_POST["sortorder"];
|
|
$page = isset($_GET["page"])?$_GET["page"]:$_POST["page"];
|
|
|
|
if (! $sortorder) $sortorder="ASC";
|
|
if (! $sortfield) $sortfield="p.name";
|
|
if ($page < 0) { $page = 0 ; }
|
|
$limit = $conf->liste_limit;
|
|
$offset = $limit * $page ;
|
|
|
|
$langs->load("companies");
|
|
$titre=$langs->trans("ListOfContacts");
|
|
if ($type == "c")
|
|
{
|
|
$titre=$langs->trans("ListOfContacts").' ('.$langs->trans("ThirdPartyCustomers").')';
|
|
$urlfiche="fiche.php";
|
|
}
|
|
if ($type == "p")
|
|
{
|
|
$titre=$langs->trans("ListOfContacts").' ('.$langs->trans("ThirdPartyProspects").')';
|
|
$urlfiche="prospect/fiche.php";
|
|
}
|
|
if ($type == "f") {
|
|
$titre=$langs->trans("ListOfContacts").' ('.$langs->trans("ThirdPartySuppliers").')';
|
|
$urlfiche="fiche.php";
|
|
}
|
|
if ($type == "o") {
|
|
$titre=$langs->trans("ListOfContacts").' ('.$langs->trans("OthersNotLinkedToThirdParty").')';
|
|
$urlfiche="";
|
|
}
|
|
if ($view == 'phone') { $text=" (Vue Telephones)"; }
|
|
if ($view == 'mail') { $text=" (Vue EMail)"; }
|
|
if ($view == 'recent') { $text=" (Recents)"; }
|
|
$titre = $titre." $text";
|
|
|
|
if ($_POST["button_removefilter"])
|
|
{
|
|
$search_nom="";
|
|
$search_prenom="";
|
|
$search_societe="";
|
|
$search_email="";
|
|
$search_priv="";
|
|
$sall="";
|
|
}
|
|
if ($search_priv < 0) $search_priv='';
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
llxHeader('',$langs->trans("ContactsAddresses"),'EN:Module_Third_Parties|FR:Module_Tiers|ES:Módulo_Empresas');
|
|
|
|
$form=new Form($db);
|
|
|
|
$sql = "SELECT s.rowid as socid, s.nom,";
|
|
$sql.= " p.rowid as cidp, p.name, p.firstname, p.email,";
|
|
$sql.= " p.phone, p.phone_mobile, p.fax, p.fk_pays, p.priv,";
|
|
$sql.= " p.tms,";
|
|
$sql.= " cp.code as pays_code";
|
|
$sql.= " FROM ".MAIN_DB_PREFIX."socpeople as p";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_pays as cp ON cp.rowid = p.fk_pays";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = p.fk_soc";
|
|
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 = ".$conf->entity;
|
|
if (!$user->rights->societe->client->voir && !$socid) //restriction
|
|
{
|
|
$sql .= " AND (sc.fk_user = " .$user->id." OR p.fk_soc IS NULL)";
|
|
}
|
|
if ($_GET["userid"]) // propre au commercial
|
|
{
|
|
$sql .= " AND p.fk_user_creat=".$_GET["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_nom) // filtre sur le nom
|
|
{
|
|
$sql .= " AND p.name like '%".$db->escape($search_nom)."%'";
|
|
}
|
|
if ($search_prenom) // filtre sur le prenom
|
|
{
|
|
$sql .= " AND p.firstname like '%".$db->escape($search_prenom)."%'";
|
|
}
|
|
if ($search_societe) // filtre sur la societe
|
|
{
|
|
$sql .= " AND s.nom like '%".$db->escape($search_societe)."%'";
|
|
}
|
|
if ($search_email) // filtre sur l'email
|
|
{
|
|
$sql .= " AND p.email like '%".$db->escape($search_email)."%'";
|
|
}
|
|
if ($type == "o") // filtre sur type
|
|
{
|
|
$sql .= " AND p.fk_soc IS NULL";
|
|
}
|
|
if ($type == "f") // filtre sur type
|
|
{
|
|
$sql .= " AND fournisseur = 1";
|
|
}
|
|
if ($type == "c") // filtre sur type
|
|
{
|
|
$sql .= " AND client IN (1, 3)";
|
|
}
|
|
if ($type == "p") // filtre sur type
|
|
{
|
|
$sql .= " AND client IN (2, 3)";
|
|
}
|
|
if ($sall)
|
|
{
|
|
$sql .= " AND (p.name like '%".$db->escape($sall)."%' OR p.firstname like '%".$db->escape($sall)."%' OR p.email like '%".$db->escape($sall)."%') ";
|
|
}
|
|
if ($socid)
|
|
{
|
|
$sql .= " AND s.rowid = ".$socid;
|
|
}
|
|
// Count total nb of records
|
|
$nbtotalofrecords = 0;
|
|
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
|
|
{
|
|
$result = $db->query($sql);
|
|
$nbtotalofrecords = $db->num_rows($result);
|
|
}
|
|
// Add order and limit
|
|
if($_GET["view"] == "recent")
|
|
{
|
|
$sql.= " ORDER BY p.datec DESC ";
|
|
$sql.= " ".$db->plimit($conf->liste_limit+1, $offset);
|
|
}
|
|
else
|
|
{
|
|
$sql.= " ORDER BY $sortfield $sortorder ";
|
|
$sql.= " ".$db->plimit($conf->liste_limit+1, $offset);
|
|
}
|
|
|
|
//print $sql;
|
|
dol_syslog("contact/index.php sql=".$sql);
|
|
$result = $db->query($sql);
|
|
if ($result)
|
|
{
|
|
$contactstatic=new Contact($db);
|
|
|
|
$begin=$_GET["begin"];
|
|
$param ='&begin='.urlencode($begin).'&view='.urlencode($_GET["view"]).'&userid='.urlencode($_GET["userid"]).'&contactname='.urlencode($sall);
|
|
$param.='&type='.urlencode($type).'&view='.urlencode($view).'&search_nom='.urlencode($search_nom).'&search_prenom='.urlencode($search_prenom).'&search_societe='.urlencode($search_societe).'&search_email='.urlencode($search_email);
|
|
if ($search_priv == '0' || $search_priv == '1') $param.="&search_priv=".urlencode($search_priv);
|
|
|
|
$num = $db->num_rows($result);
|
|
$i = 0;
|
|
|
|
print_barre_liste($titre ,$page, "index.php", $param, $sortfield, $sortorder,'',$num,$nbtotalofrecords);
|
|
|
|
print '<form method="post" action="index.php">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="view" value="'.$view.'">';
|
|
print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
|
|
print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
|
|
|
|
if ($sall)
|
|
{
|
|
print $langs->trans("Filter")." (".$langs->trans("Lastname").", ".$langs->trans("Firstname")." ".$langs->trans("or")." ".$langs->trans("EMail")."): ".$sall;
|
|
}
|
|
|
|
print '<table class="liste" width="100%">';
|
|
|
|
// Ligne des titres
|
|
print '<tr class="liste_titre">';
|
|
print_liste_field_titre($langs->trans("Lastname"),"index.php","p.name", $begin, $param, '', $sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Firstname"),"index.php","p.firstname", $begin, $param, '', $sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Company"),"index.php","s.nom", $begin, $param, '', $sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("Phone"),"index.php","p.phone", $begin, $param, '', $sortfield,$sortorder);
|
|
if ($_GET["view"] == 'phone')
|
|
{
|
|
print '<td class="liste_titre">'.$langs->trans("Mobile").'</td>';
|
|
print '<td class="liste_titre">'.$langs->trans("Fax").'</td>';
|
|
}
|
|
else
|
|
{
|
|
print_liste_field_titre($langs->trans("EMail"),"index.php","p.email", $begin, $param, '', $sortfield,$sortorder);
|
|
}
|
|
print_liste_field_titre($langs->trans("DateModificationShort"),"index.php","p.tms", $begin, $param, 'align="center"', $sortfield,$sortorder);
|
|
print_liste_field_titre($langs->trans("ContactVisibility"),"index.php","p.priv", $begin, $param, 'align="center"', $sortfield,$sortorder);
|
|
print '<td class="liste_titre"> </td>';
|
|
print "</tr>\n";
|
|
|
|
// Ligne des champs de filtres
|
|
print '<tr class="liste_titre">';
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat" type="text" name="search_nom" size="10" value="'.$search_nom.'">';
|
|
print '</td>';
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat" type="text" name="search_prenom" size="10" value="'.$search_prenom.'">';
|
|
print '</td>';
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat" type="text" name="search_societe" size="10" value="'.$search_societe.'">';
|
|
print '</td>';
|
|
print '<td class="liste_titre"> </td>';
|
|
if ($_GET["view"] == 'phone')
|
|
{
|
|
print '<td class="liste_titre">';
|
|
print ' ';
|
|
print '</td>';
|
|
print '<td class="liste_titre">';
|
|
print ' ';
|
|
print '</td>';
|
|
}
|
|
else
|
|
{
|
|
print '<td class="liste_titre">';
|
|
print '<input class="flat" type="text" name="search_email" size="12" value="'.$search_email.'">';
|
|
print '</td>';
|
|
}
|
|
print '<td class="liste_titre"> </td>';
|
|
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>';
|
|
print '<td class="liste_titre" align="right">';
|
|
print '<input type="image" value="button_search" class="liste_titre" src="'.DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/search.png" name="button_search" alt="'.$langs->trans("Search").'">';
|
|
print ' <input type="image" value="button_removefilter" class="liste_titre" src="'.DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/searchclear.png" name="button_removefilter" alt="'.$langs->trans("RemoveFilter").'">';
|
|
print '</td>';
|
|
print '</tr>';
|
|
|
|
$var=True;
|
|
while ($i < min($num,$limit))
|
|
{
|
|
$obj = $db->fetch_object($result);
|
|
|
|
$var=!$var;
|
|
|
|
print "<tr $bc[$var]>";
|
|
|
|
// Name
|
|
print '<td valign="middle">';
|
|
$contactstatic->name=$obj->name;
|
|
$contactstatic->firstname='';
|
|
$contactstatic->id=$obj->cidp;
|
|
print $contactstatic->getNomUrl(1,'',20);
|
|
print '</td>';
|
|
|
|
// Firstname
|
|
print '<td>'.dol_trunc($obj->firstname,20).'</td>';
|
|
|
|
// Company
|
|
print '<td>';
|
|
if ($obj->socid)
|
|
{
|
|
print '<a href="'.DOL_URL_ROOT.'/comm/fiche.php?socid='.$obj->socid.'">';
|
|
print img_object($langs->trans("ShowCompany"),"company").' '.dol_trunc($obj->nom,20).'</a>';
|
|
}
|
|
else
|
|
{
|
|
print ' ';
|
|
}
|
|
print '</td>';
|
|
|
|
// Phone
|
|
print '<td>';
|
|
print dol_print_phone($obj->phone,$obj->pays_code,$obj->cidp,$obj->socid,'AC_TEL');
|
|
print '</td>';
|
|
|
|
if ($_GET["view"] == 'phone')
|
|
{
|
|
print '<td>'.dol_print_phone($obj->phone_mobile,$obj->pays_code,$obj->cidp,$obj->socid,'AC_TEL').'</td>';
|
|
|
|
print '<td>'.dol_print_phone($obj->fax,$obj->pays_code,$obj->cidp,$obj->socid,'AC_TEL').'</td>';
|
|
}
|
|
else
|
|
{
|
|
// EMail
|
|
print '<td>'.dol_print_email($obj->email,$obj->cidp,$obj->socid,'AC_EMAIL',18).'</td>';
|
|
}
|
|
|
|
// Date
|
|
print '<td align="center">'.dol_print_date($db->jdate($obj->tms),"day").'</td>';
|
|
|
|
// Private/Public
|
|
print '<td align="center">'.$contactstatic->LibPubPriv($obj->priv).'</td>';
|
|
|
|
// Links Add action and Export vcard
|
|
print '<td align="right">';
|
|
print '<a href="'.DOL_URL_ROOT.'/comm/action/fiche.php?action=create&backtopage=1&contactid='.$obj->cidp.'&socid='.$obj->socid.'">'.img_object($langs->trans("AddAction"),"calendar").'</a>';
|
|
print ' ';
|
|
print '<a href="'.DOL_URL_ROOT.'/contact/vcard.php?id='.$obj->cidp.'">';
|
|
print img_picto($langs->trans("VCard"),'vcard.png').' ';
|
|
print '</a></td>';
|
|
|
|
print "</tr>\n";
|
|
$i++;
|
|
}
|
|
|
|
print "</table>";
|
|
|
|
print '</form>';
|
|
|
|
if ($num > $limit) print_barre_liste('' ,$page, "index.php", '&begin='.$begin.'&view='.$_GET["view"].'&userid='.$_GET["userid"], $sortfield, $sortorder,'',$num,$nbtotalofrecords, '');
|
|
|
|
$db->free($result);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db);
|
|
}
|
|
|
|
print '<br>';
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|