* Copyright (C) 2004-2008 Laurent Destailleur * Copyright (C) 2005-2006 Regis Houssin * * 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/comm/prospect/index.php \ingroup commercial \brief Page accueil de la zone prospection \version $Id$ */ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/agenda.lib.php"); $langs->load("propal"); if ($user->societe_id > 0) { $socid = $user->societe_id; } /* * Affichage zone prospect */ llxHeader(); print_fiche_titre($langs->trans("ProspectionArea")); print ''; print ''; print '
'; if ($conf->propal->enabled) { $var=false; print ''; print ''; print ''; print ''; print ''; print ''; print "
'.$langs->trans("SearchAProposal").'
'; print $langs->trans("Ref").':
'.$langs->trans("Other").':

\n"; } /* * Prospects par status * */ $sql = "SELECT count(*) as cc, st.libelle, st.id"; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", sc.fk_soc, sc.fk_user "; $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."c_stcomm as st "; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; $sql .= " WHERE s.fk_stcomm = st.id AND s.client=2"; if (!$user->rights->societe->client->voir && !$socid) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id; $sql .= " GROUP BY st.id"; $sql .= " ORDER BY st.id"; $resql=$db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; if ($num > 0 ) { $var=true; print ''; print ''; print ''; while ($i < $num) { $obj = $db->fetch_object($resql); $var=!$var; print "'; $i++; } print "
'.$langs->trans("ProspectsByStatus").'
id."\">"; print img_action($langs->trans("Show"),$obj->id).' '; print $langs->trans("StatusProspect".$obj->id); print ''.$obj->cc.'

"; } } /* * Liste des propal brouillons */ if ($conf->propal->enabled && $user->rights->propale->lire) { $sql = "SELECT p.rowid, p.ref, p.price, s.nom"; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", sc.fk_soc, sc.fk_user "; $sql .= " FROM ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."societe as s"; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; $sql .= " WHERE p.fk_statut = 0 and p.fk_soc = s.rowid"; if (!$user->rights->societe->client->voir && !$socid) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id; $resql=$db->query($sql); if ($resql) { $var=true; $total=0; $num = $db->num_rows($resql); $i = 0; if ($num > 0) { print ''; print ''; print ''; while ($i < $num) { $obj = $db->fetch_object($resql); $var=!$var; print '"; $i++; $total += $obj->price; } if ($total>0) { $var=!$var; print '"; } print "
'.$langs->trans("ProposalsDraft").'
'; print ''.img_object($langs->trans("ShowPropal"),"propal").' '.$obj->ref.''; print ''; print price($obj->price); print "
'.$langs->trans("Total")."".price($total)."

"; } $db->free($resql); } } /* * Actions commerciales a faire * */ print '
'; if ($conf->agenda->enabled) show_array_actions_to_do(10); /* * Dernieres propales ouvertes * */ if ($conf->propal->enabled && $user->rights->propale->lire) { $sql = "SELECT s.nom, s.rowid as socid, p.rowid as propalid, p.total as total_ttc, p.ref,".$db->pdate("p.datep")." as dp, c.label as statut, c.id as statutid"; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", sc.fk_soc, sc.fk_user "; $sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c"; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; $sql .= " WHERE p.fk_soc = s.rowid AND p.fk_statut = c.id AND p.fk_statut = 1"; if (!$user->rights->societe->client->voir && !$socid) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id; if ($socid) $sql .= " AND s.rowid = ".$socid; $sql .= " ORDER BY p.rowid DESC"; $sql .= $db->plimit(5, 0); $resql=$db->query($sql); if ($resql) { $total = 0; $num = $db->num_rows($resql); $i = 0; if ($num > 0) { $var=true; print ''; print ''; while ($i < $num) { $obj = $db->fetch_object($resql); $var=!$var; print "'; print "\n"; print "\n"; print "\n"; $i++; $total += $obj->price; } if ($total>0) { print '"; } print "
'.$langs->trans("ProposalsOpened").'
propalid."\">"; print img_object($langs->trans("ShowPropal"),"propal").' '.$obj->ref.'socid."\">".img_object($langs->trans("ShowCompany"),"company").' '.$obj->nom.""; print dolibarr_print_date($obj->dp)."".price($obj->total_ttc)."
'.$langs->trans("Total")."".price($total)."

"; } } else { dolibarr_print_error($db); } } /* * Soci�t�s � contacter * */ $sql = "SELECT s.nom, s.rowid"; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", sc.fk_soc, sc.fk_user "; $sql .= " FROM ".MAIN_DB_PREFIX."societe as s"; if (!$user->rights->societe->client->voir && !$socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; $sql .= " WHERE s.fk_stcomm = 1"; if (!$user->rights->societe->client->voir && !$socid) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id; $sql .= " ORDER BY s.tms ASC"; $sql .= $db->plimit(15, 0); if ( $db->query($sql) ) { $num = $db->num_rows(); $i = 0; if ($num > 0 ) { $var=true; print ''; print ''; while ($i < $num) { $obj = $db->fetch_object(); $var=!$var; print "'; $i++; } print "
'.$langs->trans("ProspectToContact").'
rowid."\">"; print img_object($langs->trans("ShowCompany"),"company"); print ' '.$obj->nom.'

"; } } print '
'; $db->close(); llxFooter('$Date$ - $Revision$'); ?>