2004-10-19 22:19:58 +02:00
< ? php
2005-08-25 17:07:01 +02:00
/* Copyright ( C ) 2001 - 2005 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2009-01-23 17:44:12 +01:00
* Copyright ( C ) 2004 - 2009 Laurent Destailleur < eldy @ users . sourceforge . net >
2008-06-18 22:01:01 +02:00
* Copyright ( C ) 2005 - 2008 Regis Houssin < regis @ dolibarr . fr >
2002-04-29 20:01:16 +02: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
* 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 .
*/
2004-10-30 14:15:59 +02:00
2005-01-29 01:44:52 +01:00
/**
2009-04-06 19:49:18 +02:00
* \file htdocs / comm / index . php
* \ingroup commercial
* \brief Page acceuil de la zone commercial cliente
* \version $Id $
2009-01-23 01:47:23 +01:00
*/
2003-09-11 22:18:51 +02:00
require ( " ./pre.inc.php " );
2008-01-20 14:53:02 +01:00
require_once ( DOL_DOCUMENT_ROOT . " /html.formfile.class.php " );
2006-10-24 01:07:46 +02:00
require_once ( DOL_DOCUMENT_ROOT . " /client.class.php " );
2006-04-08 00:27:25 +02:00
if ( $conf -> contrat -> enabled ) require_once ( DOL_DOCUMENT_ROOT . " /contrat/contrat.class.php " );
if ( $conf -> propal -> enabled ) require_once ( DOL_DOCUMENT_ROOT . " /propal.class.php " );
2006-06-23 23:50:30 +02:00
require_once ( DOL_DOCUMENT_ROOT . " /actioncomm.class.php " );
2008-02-26 19:34:53 +01:00
require_once ( DOL_DOCUMENT_ROOT . " /lib/agenda.lib.php " );
2005-08-25 17:07:01 +02:00
2008-05-17 02:58:10 +02:00
if ( ! $user -> rights -> societe -> lire )
2009-01-23 01:47:23 +01:00
accessforbidden ();
2009-01-23 17:44:12 +01:00
2004-10-30 14:15:59 +02:00
$langs -> load ( " commercial " );
$langs -> load ( " orders " );
2002-04-30 12:44:42 +02:00
2009-01-23 01:47:23 +01:00
// S<> curit<69> acc<63> s clien
2006-09-13 20:56:30 +02:00
$socid = '' ;
if ( $_GET [ " socid " ]) { $socid = $_GET [ " socid " ]; }
2009-01-23 01:47:23 +01:00
if ( $user -> societe_id > 0 )
2003-10-14 13:02:31 +02:00
{
2009-01-23 01:47:23 +01:00
$action = '' ;
$socid = $user -> societe_id ;
2003-10-14 13:02:31 +02:00
}
2005-07-03 04:37:16 +02:00
$max = 5 ;
2005-06-21 21:49:42 +02:00
2006-04-08 00:27:25 +02:00
2006-05-20 12:49:07 +02:00
if ( $conf -> propal -> enabled ) $propalstatic = new Propal ( $db );
2009-01-23 01:47:23 +01:00
2006-04-08 00:27:25 +02:00
2002-05-09 16:57:48 +02:00
2002-05-10 14:28:10 +02:00
/*
2005-01-29 15:58:53 +01:00
* Actions
2002-05-10 14:28:10 +02:00
*/
2002-05-09 16:57:48 +02:00
2005-08-11 20:54:59 +02:00
if ( isset ( $_GET [ " action " ]) && $_GET [ " action " ] == 'add_bookmark' )
2003-05-25 18:23:14 +02:00
{
2009-01-23 01:47:23 +01:00
$sql = " DELETE FROM " . MAIN_DB_PREFIX . " bookmark WHERE fk_soc = " . $_GET [ " socid " ] . " AND fk_user= " . $user -> id ;
if ( ! $db -> query ( $sql ) )
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
2009-01-23 01:47:23 +01:00
}
$sql = " INSERT INTO " . MAIN_DB_PREFIX . " bookmark (fk_soc, dateb, fk_user) VALUES ( " . $_GET [ " socid " ] . " , " . $db -> idate ( mktime ()) . " , " . $user -> id . " ); " ;
if ( ! $db -> query ( $sql ) )
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
2009-01-23 01:47:23 +01:00
}
2002-05-10 14:28:10 +02:00
}
2002-05-09 16:57:48 +02:00
2005-08-11 20:54:59 +02:00
if ( isset ( $_GET [ " action " ]) && $_GET [ " action " ] == 'del_bookmark' )
2003-05-25 18:23:14 +02:00
{
2009-01-23 01:47:23 +01:00
$sql = " DELETE FROM " . MAIN_DB_PREFIX . " bookmark WHERE rowid= " . $_GET [ " bid " ];
$result = $db -> query ( $sql );
2002-05-10 14:28:10 +02:00
}
2002-05-09 16:57:48 +02:00
2005-01-29 15:58:53 +01:00
/*
2008-08-09 00:12:27 +02:00
* View
2005-01-29 15:58:53 +01:00
*/
2009-04-06 19:49:18 +02:00
$now = gmmktime ();
2007-07-13 19:10:38 +02:00
$html = new Form ( $db );
2008-01-20 14:53:02 +01:00
$formfile = new FormFile ( $db );
2009-04-05 04:23:57 +02:00
$companystatic = new Societe ( $db );
$propalstatic = new Propal ( $db );
2007-07-13 19:10:38 +02:00
2006-04-08 00:27:25 +02:00
llxHeader ();
2008-02-26 19:34:53 +01:00
print_fiche_titre ( $langs -> trans ( " CustomerArea " ));
2002-05-09 16:57:48 +02:00
2005-08-11 20:54:59 +02:00
print '<table border="0" width="100%" class="notopnoleftnoright">' ;
2002-05-09 16:57:48 +02:00
2005-10-24 10:51:17 +02:00
print '<tr><td valign="top" width="30%" class="notopnoleft">' ;
2004-05-08 20:44:22 +02:00
2006-04-08 00:27:25 +02:00
// Recherche Propal
2005-08-25 17:07:01 +02:00
if ( $conf -> propal -> enabled && $user -> rights -> propale -> lire )
{
2009-01-23 01:47:23 +01:00
$var = false ;
print '<form method="post" action="' . DOL_URL_ROOT . '/comm/propal.php">' ;
print '<table class="noborder" width="100%">' ;
print '<tr class="liste_titre"><td colspan="3">' . $langs -> trans ( " SearchAProposal " ) . '</td></tr>' ;
print '<tr ' . $bc [ $var ] . '>' ;
print '<td nowrap>' . $langs -> trans ( " Ref " ) . ':</td><td><input type="text" class="flat" name="sf_ref" size="18"></td>' ;
print '<td rowspan="2"><input type="submit" value="' . $langs -> trans ( " Search " ) . '" class="button"></td></tr>' ;
print '<tr ' . $bc [ $var ] . '><td nowrap>' . $langs -> trans ( " Other " ) . ':</td><td><input type="text" class="flat" name="sall" size="18"></td>' ;
print '</tr>' ;
print " </table></form> \n " ;
print " <br /> \n " ;
2005-01-29 01:44:52 +01:00
}
/*
* Recherche Contrat
*/
2008-05-17 02:58:10 +02:00
if ( $conf -> contrat -> enabled && $user -> rights -> contrat -> lire )
2005-08-25 00:27:23 +02:00
{
2009-01-23 01:47:23 +01:00
$var = false ;
print '<form method="post" action="' . DOL_URL_ROOT . '/contrat/liste.php">' ;
print '<table class="noborder" width="100%">' ;
print '<tr class="liste_titre"><td colspan="3">' . $langs -> trans ( " SearchAContract " ) . '</td></tr>' ;
print '<tr ' . $bc [ $var ] . '>' ;
print '<td nowrap>' . $langs -> trans ( " Ref " ) . ':</td><td><input type="text" class="flat" name="search_contract" size="18"></td>' ;
print '<td rowspan="2"><input type="submit" value="' . $langs -> trans ( " Search " ) . '" class="button"></td></tr>' ;
print '<tr ' . $bc [ $var ] . '><td nowrap>' . $langs -> trans ( " Other " ) . ':</td><td><input type="text" class="flat" name="sall" size="18"></td>' ;
print '</tr>' ;
print " </table></form> \n " ;
print " <br> " ;
2005-01-29 01:44:52 +01:00
}
2004-01-24 21:51:31 +01:00
2005-01-29 01:44:52 +01:00
/*
* Liste des propal brouillons
*/
2005-05-14 17:12:15 +02:00
if ( $conf -> propal -> enabled && $user -> rights -> propale -> lire )
{
2009-04-05 04:23:57 +02:00
$sql = " SELECT p.rowid, p.ref, p.total_ht, s.rowid as socid, s.nom, s.client " ;
2009-01-23 01:47:23 +01:00
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 ( $socid )
{
$sql .= " AND s.rowid = " . $socid ;
}
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 )
{
$total = 0 ;
$num = $db -> num_rows ( $resql );
if ( $num > 0 )
{
print '<table class="noborder" width="100%">' ;
print " <tr class= \" liste_titre \" > " ;
print " <td colspan= \" 3 \" > " . $langs -> trans ( " ProposalsDraft " ) . " </td></tr> " ;
$i = 0 ;
$var = true ;
while ( $i < $num )
{
$obj = $db -> fetch_object ( $resql );
$var =! $var ;
2009-04-05 04:23:57 +02:00
print '<tr ' . $bc [ $var ] . '><td nowrap="nowrap">' ;
$propalstatic -> id = $obj -> rowid ;
$propalstatic -> ref = $obj -> ref ;
print $propalstatic -> getNomUrl ( 1 );
print '</td>' ;
print '<td nowrap="nowrap">' ;
$companystatic -> id = $obj -> socid ;
$companystatic -> nom = $obj -> nom ;
$companystatic -> client = $obj -> client ;
print $companystatic -> getNomUrl ( 1 , 'customer' , 16 );
print '</td>' ;
2009-01-23 01:47:23 +01:00
print '<td align="right" nowrap="nowrap">' . price ( $obj -> total_ht ) . '</td></tr>' ;
$i ++ ;
$total += $obj -> price ;
}
if ( $total > 0 )
{
$var =! $var ;
print '<tr class="liste_total"><td>' . $langs -> trans ( " Total " ) . '</td><td colspan="2" align="right">' . price ( $total ) . " </td></tr> " ;
}
print " </table><br> " ;
}
$db -> free ( $resql );
}
2009-04-05 04:23:57 +02:00
else
{
dol_print_error ( $db );
}
2002-04-29 20:01:16 +02:00
}
2005-06-21 21:49:42 +02:00
2003-11-09 16:37:14 +01:00
/*
2005-07-15 02:49:05 +02:00
* Commandes brouillons
2003-11-09 16:37:14 +01:00
*/
2008-05-17 02:58:10 +02:00
if ( $conf -> commande -> enabled && $user -> rights -> commande -> lire )
2004-05-18 09:59:20 +02:00
{
2009-01-23 01:47:23 +01:00
$langs -> load ( " orders " );
2009-04-05 04:23:57 +02:00
$sql = " SELECT c.rowid, c.ref, c.total_ttc, s.rowid as socid, s.nom, s.client " ;
2009-01-23 01:47:23 +01:00
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , sc.fk_soc, sc.fk_user " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " commande as c, " . MAIN_DB_PREFIX . " societe as s " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
$sql .= " WHERE c.fk_soc = s.rowid AND c.fk_statut = 0 " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
if ( $socid )
{
$sql .= " AND c.fk_soc = " . $socid ;
}
2002-04-29 20:01:16 +02:00
2009-01-23 01:47:23 +01:00
$resql = $db -> query ( $sql );
if ( $resql )
{
$total = 0 ;
$num = $db -> num_rows ( $resql );
if ( $num )
{
print '<table class="noborder" width="100%">' ;
print '<tr class="liste_titre">' ;
print '<td colspan="3">' . $langs -> trans ( " DraftOrders " ) . '</td></tr>' ;
$i = 0 ;
$var = true ;
while ( $i < $num )
{
$var =! $var ;
$obj = $db -> fetch_object ( $resql );
print '<tr ' . $bc [ $var ] . '><td nowrap="nowrap"><a href="../commande/fiche.php?id=' . $obj -> rowid . '">' . img_object ( $langs -> trans ( " ShowOrder " ), " order " ) . ' ' . $obj -> ref . '</a></td>' ;
2009-04-05 04:23:57 +02:00
print '<td nowrap="nowrap">' ;
$companystatic -> id = $obj -> socid ;
$companystatic -> nom = $obj -> nom ;
$companystatic -> client = $obj -> client ;
print $companystatic -> getNomUrl ( 1 , 'customer' , 16 );
print '</td>' ;
2009-01-23 01:47:23 +01:00
print '<td align="right" nowrap="nowrap">' . price ( $obj -> total_ttc ) . '</td></tr>' ;
$i ++ ;
$total += $obj -> total_ttc ;
}
if ( $total > 0 )
{
$var =! $var ;
print '<tr class="liste_total"><td>' . $langs -> trans ( " Total " ) . '</td><td colspan="2" align="right">' . price ( $total ) . " </td></tr> " ;
}
print " </table><br> " ;
}
}
2002-04-29 20:01:16 +02:00
}
2004-05-08 20:44:22 +02:00
2005-08-11 20:54:59 +02:00
print '</td><td valign="top" width="70%" class="notopnoleftnoright">' ;
2004-06-26 19:43:07 +02:00
2004-10-30 14:15:59 +02:00
2009-04-06 19:49:18 +02:00
$NBMAX = 3 ;
$max = 3 ;
2005-10-25 21:40:01 +02:00
2006-03-18 17:30:48 +01:00
/*
2009-04-06 19:49:18 +02:00
* Last modified proposals
2006-03-18 17:30:48 +01:00
*/
2009-04-06 19:49:18 +02:00
if ( $conf -> propal -> enabled && $user -> rights -> propale -> lire )
2008-05-17 02:58:10 +02:00
{
2009-04-06 19:49:18 +02:00
$sql = " SELECT s.nom, s.rowid, p.rowid as propalid, p.total_ht, p.ref, p.fk_statut, " . $db -> pdate ( " p.datep " ) . " as dp " ;
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 " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
$sql .= " WHERE p.fk_soc = s.rowid " ;
//$sql .= " AND p.fk_statut > 1";
if ( $socid )
{
$sql .= " AND s.rowid = " . $socid ;
}
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
$sql .= " ORDER BY p.datec DESC " ;
$sql .= $db -> plimit ( $NBMAX , 0 );
if ( $db -> query ( $sql ) )
{
$num = $db -> num_rows ();
$i = 0 ;
print '<table class="noborder" width="100%">' ;
print '<tr class="liste_titre"><td colspan="6">' . $langs -> trans ( " LastModifiedProposals " , $NBMAX ) . '</td></tr>' ;
$var = False ;
while ( $i < $num )
{
$objp = $db -> fetch_object ();
print " <tr $bc[$var] > " ;
// Ref
print '<td nowrap="nowrap" width="140">' ;
$propalstatic -> id = $objp -> propalid ;
$propalstatic -> ref = $objp -> ref ;
print '<table class="nobordernopadding"><tr class="nocellnopadd">' ;
print '<td class="nobordernopadding" nowrap="nowrap">' ;
print $propalstatic -> getNomUrl ( 1 );
print '</td>' ;
print '<td width="18" class="nobordernopadding" nowrap="nowrap">' ;
if (( $objp -> fk_statut <= 1 ) && $objp -> dp < ( $now - $conf -> propal -> cloture -> warning_delay )) print img_warning ( $langs -> trans ( " Late " ));
print '</td>' ;
print '<td width="16" align="center" class="nobordernopadding">' ;
$filename = sanitizeFileName ( $objp -> ref );
$filedir = $conf -> propal -> dir_output . '/' . sanitizeFileName ( $objp -> ref );
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?propalid=' . $objp -> propalid ;
$formfile -> show_documents ( 'propal' , $filename , $filedir , $urlsource , '' , '' , '' , '' , '' , 1 );
print '</td></tr></table>' ;
print '</td>' ;
print '<td align="left"><a href="fiche.php?socid=' . $objp -> rowid . '">' . img_object ( $langs -> trans ( " ShowCompany " ), " company " ) . ' ' . dol_trunc ( $objp -> nom , 44 ) . '</a></td>' ;
print " <td align= \" right \" > " ;
print dol_print_date ( $objp -> dp , 'day' ) . " </td> \n " ;
print " <td align= \" right \" > " . price ( $objp -> total_ht ) . " </td> \n " ;
print " <td align= \" center \" width= \" 14 \" > " . $propalstatic -> LibStatut ( $objp -> fk_statut , 3 ) . " </td> \n " ;
print " </tr> \n " ;
$i ++ ;
$var =! $var ;
}
print " </table><br> " ;
$db -> free ();
}
2008-05-17 02:58:10 +02:00
}
2006-03-18 17:30:48 +01:00
2005-06-21 21:49:42 +02:00
/*
2009-04-06 19:49:18 +02:00
* Last modified prospects
2005-06-21 21:49:42 +02:00
*/
2005-06-27 23:28:56 +02:00
if ( $user -> rights -> societe -> lire )
2005-06-21 21:49:42 +02:00
{
2009-04-06 19:49:18 +02:00
$sql = " SELECT s.rowid,s.nom,s.client,s.tms " ;
2009-01-23 01:47:23 +01:00
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.client in (1,2) " ;
if ( $socid )
{
$sql .= " AND s.rowid = $socid " ;
}
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) //restriction
{
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
}
2009-04-06 19:49:18 +02:00
$sql .= " ORDER BY s.tms DESC " ;
2009-01-23 01:47:23 +01:00
$sql .= $db -> plimit ( $max , 0 );
$resql = $db -> query ( $sql );
if ( $resql )
{
$num = $db -> num_rows ( $resql );
if ( $num )
{
$langs -> load ( " boxes " );
print '<table class="noborder" width="100%">' ;
print '<tr class="liste_titre">' ;
print '<td colspan="3">' . $langs -> trans ( " BoxTitleLastCustomersOrProspects " , $max ) . '</td></tr>' ;
$i = 0 ;
$var = false ;
while ( $i < $num )
{
$objp = $db -> fetch_object ( $resql );
print " <tr $bc[$var] > " ;
print " <td nowrap> " ;
2008-03-02 22:30:39 +01:00
if ( $objp -> client == 1 ) print " <a href= \" " . DOL_URL_ROOT . " /comm/fiche.php?socid= " . $objp -> rowid . " \" > " . img_object ( $langs -> trans ( " ShowCustomer " ), " company " ) . " " . $objp -> nom . " </a></td> " ;
if ( $objp -> client == 2 ) print " <a href= \" " . DOL_URL_ROOT . " /comm/prospect/fiche.php?socid= " . $objp -> rowid . " \" > " . img_object ( $langs -> trans ( " ShowCustomer " ), " company " ) . " " . $objp -> nom . " </a></td> " ;
2009-01-23 01:47:23 +01:00
print '<td align="right" nowrap>' ;
2008-03-02 22:30:39 +01:00
if ( $objp -> client == 1 ) print $langs -> trans ( " Customer " );
if ( $objp -> client == 2 ) print $langs -> trans ( " Prospect " );
print " </td> " ;
2009-04-06 19:49:18 +02:00
print '<td align="right" nowrap>' . dol_print_date ( $db -> jdate ( $objp -> tms ), 'day' ) . " </td> " ;
2009-01-23 01:47:23 +01:00
print '</tr>' ;
$i ++ ;
$var =! $var ;
}
print " </table><br> " ;
$db -> free ( $resql );
}
}
2005-06-21 21:49:42 +02:00
}
2005-10-25 21:40:01 +02:00
2009-04-06 19:49:18 +02:00
/*
* Last actions
*/
if ( $user -> rights -> agenda -> myactions -> read )
{
show_array_last_actions_done ( $max );
}
/*
* Actions to do
*/
if ( $user -> rights -> agenda -> myactions -> read )
{
show_array_actions_to_do ( 10 );
}
2004-05-08 20:44:22 +02:00
/*
2008-10-28 21:46:22 +01:00
* Derniers contrats
2004-05-08 20:44:22 +02:00
*
*/
2008-05-17 02:58:10 +02:00
if ( $conf -> contrat -> enabled && $user -> rights -> contrat -> lire && 0 ) // \todo A REFAIRE DEPUIS NOUVEAU CONTRAT
2004-07-13 09:20:09 +02:00
{
2009-01-23 01:47:23 +01:00
$langs -> load ( " contracts " );
$sql = " SELECT s.nom, s.rowid, c.statut, c.rowid as contratid, p.ref, c.mise_en_service as datemes, c.fin_validite as datefin, c.date_cloture as dateclo " ;
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 . " contrat as c, " . MAIN_DB_PREFIX . " product as p " ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
$sql .= " WHERE c.fk_soc = s.rowid and c.fk_product = p.rowid " ;
if ( $socid )
{
$sql .= " AND s.rowid = " . $socid ;
}
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) //restriction
2004-07-13 09:20:09 +02:00
{
2009-01-23 01:47:23 +01:00
$sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
}
$sql .= " ORDER BY c.tms DESC " ;
$sql .= $db -> plimit ( 5 , 0 );
if ( $db -> query ( $sql ) )
{
$num = $db -> num_rows ();
if ( $num > 0 )
{
2009-04-06 19:49:18 +02:00
print '<table class="noborder" width="100%">' ;
print '<tr class="liste_titre"><td colspan="3">' . $langs -> trans ( " LastContracts " , 5 ) . '</td></tr>' ;
$i = 0 ;
$staticcontrat = new Contrat ( $db );
$var = false ;
while ( $i < $num )
{
$obj = $db -> fetch_object ();
print " <tr $bc[$var] ><td><a href= \" ../contrat/fiche.php?id= " . $obj -> contratid . " \" > " . img_object ( $langs -> trans ( " ShowContract " , " contract " )) . " " . $obj -> ref . " </a></td> " ;
print " <td><a href= \" fiche.php?socid= " . $obj -> rowid . " \" > " . img_object ( $langs -> trans ( " ShowCompany " , " company " )) . " " . $obj -> nom . " </a></td> \n " ;
print " <td align= \" right \" > " . $staticcontrat -> LibStatut ( $obj -> statut , 3 ) . " </td></tr> \n " ;
$var =! $var ;
$i ++ ;
}
print " </table><br> " ;
2009-01-23 01:47:23 +01:00
}
}
else
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
2004-07-13 09:20:09 +02:00
}
2003-11-09 16:37:14 +01:00
}
2004-05-08 20:44:22 +02:00
/*
2005-08-13 16:22:16 +02:00
* Propales ouvertes
2004-05-08 20:44:22 +02:00
*
*/
2005-05-14 17:12:15 +02:00
if ( $conf -> propal -> enabled && $user -> rights -> propale -> lire )
{
2009-01-23 01:47:23 +01:00
$langs -> load ( " propal " );
$sql = " SELECT s.nom, s.rowid, p.rowid as propalid, p.total as total_ttc, p.total_ht, p.ref, p.fk_statut, " . $db -> pdate ( " p.datep " ) . " as dp " ;
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 " ;
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 = 1 " ;
if ( $socid ) $sql .= " AND s.rowid = " . $socid ;
if ( ! $user -> rights -> societe -> client -> voir && ! $socid ) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
$sql .= " ORDER BY p.rowid DESC " ;
$result = $db -> query ( $sql );
if ( $result )
{
$total = 0 ;
$num = $db -> num_rows ( $result );
$i = 0 ;
if ( $num > 0 )
{
$var = true ;
print '<table class="noborder" width="100%">' ;
print '<tr class="liste_titre"><td colspan="5">' . $langs -> trans ( " ProposalsOpened " ) . '</td></tr>' ;
while ( $i < $num )
{
$obj = $db -> fetch_object ( $result );
$var =! $var ;
print " <tr $bc[$var] > " ;
2009-01-23 17:44:12 +01:00
// Ref
2009-01-23 01:47:23 +01:00
print '<td nowrap="nowrap" width="140">' ;
$propalstatic -> id = $obj -> propalid ;
$propalstatic -> ref = $obj -> ref ;
print '<table class="nobordernopadding"><tr class="nocellnopadd">' ;
2009-01-23 17:44:12 +01:00
print '<td class="nobordernopadding" nowrap="nowrap">' ;
2009-01-23 01:47:23 +01:00
print $propalstatic -> getNomUrl ( 1 );
print '</td>' ;
print '<td width="18" class="nobordernopadding" nowrap="nowrap">' ;
if ( $obj -> dp < ( $now - $conf -> propal -> cloture -> warning_delay )) print img_warning ( $langs -> trans ( " Late " ));
print '</td>' ;
print '<td width="16" align="center" class="nobordernopadding">' ;
$filename = sanitizeFileName ( $obj -> ref );
$filedir = $conf -> propal -> dir_output . '/' . sanitizeFileName ( $obj -> ref );
$urlsource = $_SERVER [ 'PHP_SELF' ] . '?propalid=' . $obj -> propalid ;
$formfile -> show_documents ( 'propal' , $filename , $filedir , $urlsource , '' , '' , '' , '' , '' , 1 );
print '</td></tr></table>' ;
print " </td> " ;
2009-01-23 17:44:12 +01:00
2009-02-20 23:53:15 +01:00
print " <td align= \" left \" ><a href= \" fiche.php?socid= " . $obj -> rowid . " \" > " . img_object ( $langs -> trans ( " ShowCompany " ), " company " ) . " " . dol_trunc ( $obj -> nom , 44 ) . " </a></td> \n " ;
2009-01-23 01:47:23 +01:00
print " <td align= \" right \" > " ;
2009-02-20 23:53:15 +01:00
print dol_print_date ( $obj -> dp , 'day' ) . " </td> \n " ;
2009-01-23 01:47:23 +01:00
print " <td align= \" right \" > " . price ( $obj -> total_ttc ) . " </td> " ;
print " <td align= \" center \" width= \" 14 \" > " . $propalstatic -> LibStatut ( $obj -> fk_statut , 3 ) . " </td> \n " ;
print " </tr> \n " ;
$i ++ ;
$total += $obj -> total_ttc ;
}
if ( $total > 0 ) {
print '<tr class="liste_total"><td colspan="3" align="right">' . $langs -> trans ( " Total " ) . " </td><td align= \" right \" > " . price ( $total ) . " </td><td> </td></tr> " ;
}
print " </table><br> " ;
}
}
else
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $db );
2009-01-23 01:47:23 +01:00
}
2003-11-09 16:37:14 +01:00
}
2002-04-29 20:01:16 +02:00
2003-11-09 16:37:14 +01:00
print '</td></tr>' ;
2002-05-10 14:28:10 +02:00
print '</table>' ;
2002-04-29 20:01:16 +02:00
$db -> close ();
2009-01-23 01:47:23 +01:00
2002-05-10 14:28:10 +02:00
2005-05-14 03:00:54 +02:00
llxFooter ( '$Date$ - $Revision$' );
2002-04-29 20:01:16 +02:00
?>