diff --git a/htdocs/comm/prospect/index.php b/htdocs/comm/prospect/index.php new file mode 100644 index 00000000000..629132c79f9 --- /dev/null +++ b/htdocs/comm/prospect/index.php @@ -0,0 +1,179 @@ + + * Copyright (C) 2004 Laurent Destailleur + * + * 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. + * + * $Id$ + * $Source$ + * + */ +require("./pre.inc.php"); + +$user->getrights('propale'); + +if ($user->societe_id > 0) +{ + $socidp = $user->societe_id; +} + +llxHeader(); + +function valeur($sql) +{ + global $db; + if ( $db->query($sql) ) + { + if ( $db->num_rows() ) + { + $valeur = $db->result(0,0); + } + $db->free(); + } + return $valeur; +} +/* + * + */ + +print_titre("Espace prospection"); + +print ''; + +print ''; +print '
'; + +if ($conf->propal->enabled) { + print '
'; + print ''; + print ''; + print "'; + print "
Rechercher une proposition
"; + print 'Num. :

\n"; + + $sql = "SELECT p.rowid, p.ref"; + $sql .= " FROM ".MAIN_DB_PREFIX."propal as p"; + $sql .= " WHERE p.fk_statut = 0"; + + if ( $db->query($sql) ) + { + $num = $db->num_rows(); + $i = 0; + if ($num > 0 ) + { + print ''; + print ""; + print ""; + + while ($i < $num) + { + $obj = $db->fetch_object( $i); + $var=!$var; + print ""; + $i++; + } + print "
Propositions commerciales brouillons
rowid."\">".$obj->ref."

"; + } + } +} + + + +/* + * Actions commerciales a faire + * + * + */ +print '
'; + +$sql = "SELECT a.id, ".$db->pdate("a.datea")." as da, c.libelle, a.fk_user_author, s.nom as sname, s.idp"; +$sql .= " FROM ".MAIN_DB_PREFIX."actioncomm as a, ".MAIN_DB_PREFIX."c_actioncomm as c, ".MAIN_DB_PREFIX."societe as s"; +$sql .= " WHERE c.id=a.fk_action AND a.percent < 100 AND s.idp = a.fk_soc AND a.fk_user_action = $user->id"; +$sql .= " ORDER BY a.datea DESC"; + +if ( $db->query($sql) ) +{ + $num = $db->num_rows(); + if ($num > 0) + { + print ''; + print ''; + print ''; + print "\n"; + + $i = 0; + while ($i < $num ) + { + $obj = $db->fetch_object($i); + $var=!$var; + + print ""; + print ""; + print ''; + $i++; + } + print "
Actions à faire
".strftime("%d %b %Y",$obj->da)."id\">$obj->libelle $obj->label'.$obj->sname.'

"; + } + $db->free(); +} +else +{ + print $db->error(); +} + +$sql = "SELECT s.nom, s.idp, p.rowid, p.price, p.ref,".$db->pdate("p.datep")." as dp, c.label as statut, c.id as statutid"; +$sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c WHERE p.fk_soc = s.idp AND p.fk_statut = c.id AND p.fk_statut = 1"; +if ($socidp) +{ + $sql .= " AND s.idp = $socidp"; +} + +$sql .= " ORDER BY p.rowid DESC"; +$sql .= $db->plimit(5, 0); + +if ( $db->query($sql) ) +{ + $num = $db->num_rows(); + $i = 0; + if ($num > 0 ) + { + print ''; + print ''; + + while ($i < $num) + { + $obj = $db->fetch_object( $i); + $var=!$var; + print "'; + + print "\n"; + print "\n"; + print "\n"; + $i++; + } + print "
Propositions commerciales ouvertes
rowid."\">"; + print img_file(); + print ' '.$obj->ref.'idp\">$obj->nom"; + print strftime("%d %B %Y",$obj->dp)."".price($obj->price)."

"; + } +} + +print '
'; + +$db->close(); + + +llxFooter("Dernière modification $Date$ révision $Revision$"); +?>