dolibarr-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dolibarr-cvs] dolibarr/htdocs/fourn/commande liste.php


From: Regis Houssin
Subject: [Dolibarr-cvs] dolibarr/htdocs/fourn/commande liste.php
Date: Wed, 14 Jun 2006 08:58:02 +0000

CVSROOT:        /cvsroot/dolibarr
Module name:    dolibarr
Changes by:     Regis Houssin <hregis>  06/06/14 08:58:02

Modified files:
        htdocs/fourn/commande: liste.php 

Log message:
        Fix: en fait on partait sur la class Commande au lieu de la class 
CommandeFournisseur

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/dolibarr/htdocs/fourn/commande/liste.php?cvsroot=dolibarr&r1=1.15&r2=1.16

Patches:
Index: liste.php
===================================================================
RCS file: /cvsroot/dolibarr/dolibarr/htdocs/fourn/commande/liste.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- liste.php   14 Jun 2006 08:53:17 -0000      1.15
+++ liste.php   14 Jun 2006 08:58:02 -0000      1.16
@@ -16,7 +16,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  *
- * $Id: liste.php,v 1.15 2006/06/14 08:53:17 hregis Exp $
+ * $Id: liste.php,v 1.16 2006/06/14 08:58:02 hregis Exp $
  * $Source: /cvsroot/dolibarr/dolibarr/htdocs/fourn/commande/liste.php,v $
  */
 
@@ -24,7 +24,7 @@
         \file       htdocs/fourn/commande/liste.php
         \ingroup    fournisseur
         \brief      Liste des commandes fournisseurs
-        \version    $Revision: 1.15 $
+        \version    $Revision: 1.16 $
 */
 
 require("./pre.inc.php");
@@ -58,7 +58,7 @@
 
 llxHeader('',$title);
 
-$commandestatic=new Commande($db);
+$commandestatic=new CommandeFournisseur($db);
 
 
 if ($sortorder == "") $sortorder="DESC";
@@ -156,7 +156,7 @@
         print '</td>';
 
         // Statut
-        print '<td align="right">'.$commandestatic->LibStatut($obj->fk_statut, 
'', 5).'</td>';
+        print '<td align="right">'.$commandestatic->LibStatut($obj->fk_statut, 
5).'</td>';
 
         print "</tr>\n";
         $i++;
@@ -171,5 +171,5 @@
 
 $db->close();
 
-llxFooter('$Date: 2006/06/14 08:53:17 $ - $Revision: 1.15 $');
+llxFooter('$Date: 2006/06/14 08:58:02 $ - $Revision: 1.16 $');
 ?>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]