2004-10-19 22:43:23 +02:00
< ? php
2006-12-02 21:32:02 +01:00
/* Copyright ( C ) 2001 - 2006 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2007-03-29 21:35:39 +02:00
* Copyright ( C ) 2004 - 2007 Laurent Destailleur < eldy @ users . sourceforge . net >
2007-04-24 13:09:55 +02:00
* Copyright ( C ) 2005 - 2007 Regis Houssin < regis . houssin @ cap - networks . com >
2003-08-04 14:42:49 +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 .
*
* $Id $
* $Source $
*/
2004-10-25 00:25:38 +02:00
2005-04-26 01:25:18 +02:00
/**
2006-12-09 22:08:43 +01:00
\file htdocs / fourn / index . php
\ingroup fournisseur
\brief Page accueil de la zone fournisseurs
\version $Revision $
2005-01-08 23:20:19 +01:00
*/
2003-09-11 22:18:51 +02:00
require ( " ./pre.inc.php " );
2007-03-29 22:07:44 +02:00
require_once ( DOL_DOCUMENT_ROOT . '/fourn/fournisseur.commande.class.php' );
require_once ( DOL_DOCUMENT_ROOT . '/fourn/fournisseur.facture.class.php' );
2004-11-30 20:34:29 +01:00
2005-07-23 16:48:58 +02:00
if ( ! $user -> rights -> societe -> lire )
accessforbidden ();
2004-11-30 10:52:01 +01:00
$langs -> load ( " suppliers " );
$langs -> load ( " orders " );
2004-11-30 20:34:29 +01:00
$langs -> load ( " companies " );
2004-10-25 00:25:38 +02:00
2005-08-11 21:04:42 +02:00
// S<> curit<69> acc<63> s client
2006-09-13 20:56:30 +02:00
$socid = '' ;
2003-08-04 14:42:49 +02:00
if ( $user -> societe_id > 0 )
{
$action = '' ;
2006-09-13 20:56:30 +02:00
$socid = $user -> societe_id ;
2003-08-04 14:42:49 +02:00
}
2007-03-29 21:35:39 +02:00
/*
* Affichage page
*/
2007-03-29 22:07:44 +02:00
$commandestatic = new CommandeFournisseur ( $db );
$facturestatic = new FactureFournisseur ( $db );
$companystatic = new Societe ( $db );
2007-03-29 21:35:39 +02:00
llxHeader ( " " , $langs -> trans ( " SuppliersArea " ));
print_fiche_titre ( $langs -> trans ( " SuppliersArea " ));
2006-12-09 22:08:43 +01:00
print '<table border="0" width="100%" class="notopnoleftnoright">' ;
print '<tr><td valign="top" width="30%" class="notopnoleft">' ;
2004-02-02 04:14:29 +01:00
2007-03-29 22:07:44 +02:00
2006-12-09 22:08:43 +01:00
/*
* Liste des categories
2007-03-29 22:07:44 +02:00
* \TODO Il n ' y a aucun <EFBFBD> cran pour les saisir !
2006-12-09 22:08:43 +01:00
*/
$sql = " SELECT rowid, label " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " fournisseur_categorie " ;
2006-12-13 17:17:27 +01:00
$sql .= " ORDER BY label ASC " ;
2003-08-04 14:42:49 +02:00
2006-12-09 22:08:43 +01:00
$resql = $db -> query ( $sql );
if ( $resql )
{
2007-03-29 22:07:44 +02:00
$num = $db -> num_rows ( $resql );
$i = 0 ;
2006-12-09 22:08:43 +01:00
2007-03-29 22:07:44 +02:00
if ( $num )
{
print '<table class="liste" width="100%">' ;
print '<tr class="liste_titre"><td colspan="2">' ;
print $langs -> trans ( " Category " );
print " </td></tr> \n " ;
$var = True ;
while ( $obj = $db -> fetch_object ( $resql ))
{
$var =! $var ;
print " <tr $bc[$var] > \n " ;
print '<td><a href="liste.php?cat=' . $obj -> rowid . '">' . stripslashes ( $obj -> label ) . '</a>' ;
print '</td><td align="right">' ;
print '<a href="stats.php?cat=' . $obj -> rowid . '">(' . $langs -> trans ( " Stats " ) . ')</a>' ;
print " </tr> \n " ;
}
print " </table> \n " ;
print " <br> \n " ;
}
$db -> free ( $resql );
2006-12-09 22:08:43 +01:00
}
else
{
2007-03-29 22:07:44 +02:00
dolibarr_print_error ( $db );
2006-12-09 22:08:43 +01:00
}
2007-03-29 21:35:39 +02:00
2006-12-13 17:17:27 +01:00
/*
*
*/
$commande = new CommandeFournisseur ( $db );
$sql = " SELECT count(cf.rowid), fk_statut, " ;
$sql .= " cf.rowid,cf.ref " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " societe as s, " ;
$sql .= " " . MAIN_DB_PREFIX . " commande_fournisseur as cf " ;
2007-06-12 00:51:47 +02:00
$sql .= " WHERE cf.fk_soc = s.rowid " ;
2006-12-13 17:17:27 +01:00
$sql .= " GROUP BY cf.fk_statut " ;
$resql = $db -> query ( $sql );
if ( $resql )
{
2007-03-29 22:07:44 +02:00
$num = $db -> num_rows ( $resql );
$i = 0 ;
2006-12-13 17:17:27 +01:00
2007-03-29 22:07:44 +02:00
print '<table class="liste" width="100%">' ;
print '<tr class="liste_titre"><td>' . $langs -> trans ( " Orders " ) . '</td><td align="center">' . $langs -> trans ( " Nb " ) . '</td><td> </td>' ;
print " </tr> \n " ;
$var = True ;
2006-12-13 17:17:27 +01:00
2007-03-29 22:07:44 +02:00
while ( $i < $num )
{
$row = $db -> fetch_row ( $resql );
$var =! $var ;
print " <tr $bc[$var] > " ;
print '<td>' . $commande -> statuts [ $row [ 1 ]] . '</td>' ;
print '<td align="center">' . $row [ 0 ] . '</td>' ;
print '<td align="center"><a href="' . DOL_URL_ROOT . '/fourn/commande/liste.php?statut=' . $row [ 1 ] . '">' . $commande -> LibStatut ( $row [ 1 ], 3 ) . '</a></td>' ;
print " </tr> \n " ;
$i ++ ;
}
print " </table> " ;
print " <br> \n " ;
$db -> free ( $resql );
2006-12-13 17:17:27 +01:00
}
else
{
dolibarr_print_error ( $db );
}
2007-03-29 21:35:39 +02:00
2007-03-29 22:07:44 +02:00
/*
* Commandes brouillons
*/
if ( $conf -> fournisseur -> enabled )
{
$langs -> load ( " orders " );
2007-06-12 00:51:47 +02:00
$sql = " SELECT c.rowid, c.ref, c.total_ttc, s.nom, s.rowid as socid " ;
2007-03-29 22:07:44 +02:00
$sql .= " FROM " . MAIN_DB_PREFIX . " commande_fournisseur as c, " . MAIN_DB_PREFIX . " societe as s " ;
2007-06-12 00:51:47 +02:00
$sql .= " WHERE c.fk_soc = s.rowid AND c.fk_statut = 0 " ;
2007-03-29 22:07:44 +02:00
if ( $socid )
{
$sql .= " AND c.fk_soc = " . $socid ;
}
$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> " ;
$commandestatic -> id = $obj -> rowid ;
$commandestatic -> ref = $obj -> ref ;
print $commandestatic -> getNomUrl ( 1 , '' , 16 );
print '</td>' ;
print '<td>' ;
2007-06-12 00:51:47 +02:00
$companystatic -> id = $obj -> socid ;
2007-03-29 22:07:44 +02:00
$companystatic -> nom = $obj -> nom ;
$companystatic -> client = 0 ;
print $companystatic -> getNomUrl ( 1 , '' , 16 );
print '</td>' ;
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> " ;
print " <br> \n " ;
}
}
}
2007-03-29 21:35:39 +02:00
/**
* Factures brouillons
*/
2007-03-29 22:07:44 +02:00
if ( $conf -> fournisseur -> enabled && $user -> rights -> fournisseur -> facture -> lire )
2007-03-29 21:35:39 +02:00
{
$sql = " SELECT f.facnumber, f.rowid, f.total_ttc, f.type, " ;
2007-06-12 00:51:47 +02:00
$sql .= " s.nom, s.rowid as socid " ;
2007-03-29 22:07:44 +02:00
$sql .= " FROM " . MAIN_DB_PREFIX . " facture_fourn as f, " . MAIN_DB_PREFIX . " societe as s " ;
2007-06-12 00:51:47 +02:00
$sql .= " WHERE s.rowid = f.fk_soc AND f.fk_statut = 0 " ;
2007-03-29 21:35:39 +02:00
if ( $socid )
{
$sql .= " AND f.fk_soc = " . $socid ;
}
$resql = $db -> query ( $sql );
if ( $resql )
{
$num = $db -> num_rows ( $resql );
if ( $num )
{
2007-03-29 22:07:44 +02:00
print '<table class="noborder" width="100%">' ;
2007-03-29 21:35:39 +02:00
print '<tr class="liste_titre">' ;
print '<td colspan="3">' . $langs -> trans ( " DraftBills " ) . ' (' . $num . ')</td></tr>' ;
$i = 0 ;
$tot_ttc = 0 ;
$var = True ;
while ( $i < $num && $i < 20 )
{
$obj = $db -> fetch_object ( $resql );
$var =! $var ;
print '<tr ' . $bc [ $var ] . '><td nowrap>' ;
$facturestatic -> ref = $obj -> facnumber ;
$facturestatic -> id = $obj -> rowid ;
$facturestatic -> type = $obj -> type ;
print $facturestatic -> getNomUrl ( 1 , '' );
print '</td>' ;
print '<td>' ;
2007-06-12 00:51:47 +02:00
$companystatic -> id = $obj -> rowid ;
2007-03-29 21:35:39 +02:00
$companystatic -> nom = $obj -> nom ;
2007-03-29 22:07:44 +02:00
$companystatic -> client = 0 ;
2007-03-29 21:35:39 +02:00
print $companystatic -> getNomUrl ( 1 , '' , 16 );
print '</td>' ;
print '<td align="right">' . price ( $obj -> total_ttc ) . '</td>' ;
print '</tr>' ;
$tot_ttc += $obj -> total_ttc ;
$i ++ ;
}
print '<tr class="liste_total"><td align="left">' . $langs -> trans ( " Total " ) . '</td>' ;
print '<td colspan="2" align="right">' . price ( $tot_ttc ) . '</td>' ;
print '</tr>' ;
2007-03-29 22:07:44 +02:00
print " </table> " ;
print " <br> \n " ;
2007-03-29 21:35:39 +02:00
}
$db -> free ( $resql );
}
else
{
dolibarr_print_error ( $db );
}
}
2006-12-13 17:17:27 +01:00
/*
*
*
*/
2006-12-09 22:08:43 +01:00
print " </td> \n " ;
print '<td valign="top" width="70%" class="notopnoleft">' ;
2005-01-08 23:20:19 +01:00
/*
2006-12-09 22:08:43 +01:00
* Liste des 10 derniers saisis
2005-01-08 23:20:19 +01:00
*
*/
2007-07-13 00:02:53 +02:00
$max = 10 ;
2007-06-12 00:51:47 +02:00
$sql = " SELECT s.rowid as socid, s.nom, s.ville, " . $db -> pdate ( " s.datec " ) . " as datec, " . $db -> pdate ( " s.datea " ) . " as datea, st.libelle as stcomm, s.prefix_comm " ;
2006-04-08 16:27:49 +02:00
$sql .= " , code_fournisseur, code_compta_fournisseur " ;
2006-09-13 20:56:30 +02:00
if ( ! $user -> rights -> commercial -> client -> voir && ! $socid ) $sql .= " , sc.fk_soc, sc.fk_user " ;
2005-06-26 03:41:00 +02:00
$sql .= " FROM " . MAIN_DB_PREFIX . " societe as s, " . MAIN_DB_PREFIX . " c_stcomm as st " ;
2006-09-13 20:56:30 +02:00
if ( ! $user -> rights -> commercial -> client -> voir && ! $socid ) $sql .= " , " . MAIN_DB_PREFIX . " societe_commerciaux as sc " ;
2005-06-26 03:41:00 +02:00
$sql .= " WHERE s.fk_stcomm = st.id AND s.fournisseur=1 " ;
2007-06-12 00:51:47 +02:00
if ( ! $user -> rights -> commercial -> client -> voir && ! $socid ) $sql .= " AND s.rowid = sc.fk_soc AND sc.fk_user = " . $user -> id ;
if ( $socid ) $sql .= " AND s.rowid = " . $socid ;
2007-07-13 00:02:53 +02:00
$sql .= " ORDER BY s.datec DESC " ;
$sql .= $db -> plimit ( $max , 0 );
2003-08-04 14:42:49 +02:00
2005-07-20 14:18:41 +02:00
$resql = $db -> query ( $sql );
if ( $resql )
2003-09-06 12:41:29 +02:00
{
2007-07-13 00:02:53 +02:00
$langs -> load ( " boxes " );
$num = $db -> num_rows ( $resql );
$i = 0 ;
print '<table class="liste" width="100%">' ;
print '<tr class="liste_titre">' ;
print '<td colspan="2">' . $langs -> trans ( " BoxTitleLastSuppliers " , min ( $max , $num )) . " </td> \n " ;
print '<td align="right">' . $langs -> trans ( " DateCreation " ) . " </td> \n " ;
print " </tr> \n " ;
$var = True ;
2006-12-09 22:08:43 +01:00
2007-07-13 00:02:53 +02:00
while ( $obj = $db -> fetch_object ( $resql ) )
{
$var =! $var ;
print " <tr $bc[$var] > " ;
print '<td><a href="fiche.php?socid=' . $obj -> socid . '">' . img_object ( $langs -> trans ( " ShowSupplier " ), " company " ) . '</a>' ;
print " <a href= \" fiche.php?socid= " . $obj -> socid . " \" > " . $obj -> nom . " </a></td> \n " ;
print '<td align="left">' . $obj -> code_fournisseur . ' </td>' ;
print '<td align="right">' . dolibarr_print_date ( $obj -> datec , 'day' ) . '</td>' ;
print " </tr> \n " ;
}
print " </table> \n " ;
$db -> free ( $resql );
2003-09-06 12:41:29 +02:00
}
else
{
2007-07-13 00:02:53 +02:00
dolibarr_print_error ( $db );
2003-09-06 12:41:29 +02:00
}
2003-08-04 14:42:49 +02:00
2006-12-09 22:08:43 +01:00
print " </td></tr> \n " ;
print " </table> \n " ;
2003-08-04 14:42:49 +02:00
$db -> close ();
2005-08-11 21:04:42 +02:00
llxFooter ( '$Date$ - $Revision$' );
2003-08-04 14:42:49 +02:00
?>