dolibarr-cvs
[Top][All Lists]
Advanced

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

[Dolibarr-cvs] dolibarr/htdocs commpropal.php commande/fiche.php


From: Regis Houssin
Subject: [Dolibarr-cvs] dolibarr/htdocs commpropal.php commande/fiche.php
Date: Mon, 05 Jun 2006 16:26:34 +0000

CVSROOT:        /cvsroot/dolibarr
Module name:    dolibarr
Changes by:     Regis Houssin <hregis>  06/06/05 16:26:34

Modified files:
        htdocs/comm    : propal.php 
        htdocs/commande: fiche.php 

Log message:
        Fix: la date de livraison n'était plus récupérée

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/dolibarr/htdocs/comm/propal.php?cvsroot=dolibarr&r1=1.216&r2=1.217
http://cvs.savannah.gnu.org/viewcvs/dolibarr/htdocs/commande/fiche.php?cvsroot=dolibarr&r1=1.191&r2=1.192

Patches:
Index: comm/propal.php
===================================================================
RCS file: /cvsroot/dolibarr/dolibarr/htdocs/comm/propal.php,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -b -r1.216 -r1.217
--- comm/propal.php     5 Jun 2006 15:24:50 -0000       1.216
+++ comm/propal.php     5 Jun 2006 16:26:33 -0000       1.217
@@ -20,7 +20,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: propal.php,v 1.216 2006/06/05 15:24:50 hregis Exp $
+ * $Id: propal.php,v 1.217 2006/06/05 16:26:33 hregis Exp $
  * $Source: /cvsroot/dolibarr/dolibarr/htdocs/comm/propal.php,v $
  */
 
@@ -112,7 +112,7 @@
 {
        $propal = new Propal($db);
     $propal->fetch($_GET['propalid']);
-       $result=$propal->set_date_livraison($user,mktime(0, 0, 0, 
$_POST['liv_month'], $_POST['liv_day'], $_POST['liv_year']);
+       $result=$propal->set_date_livraison($user,mktime(0, 0, 0, 
$_POST['liv_month'], $_POST['liv_day'], $_POST['liv_year']));
        if ($result < 0) dolibarr_print_error($db,$propal->error);
 }
 
@@ -1600,6 +1600,6 @@
 }
 $db->close();
 
-llxFooter('$Date: 2006/06/05 15:24:50 $ - $Revision: 1.216 $');
+llxFooter('$Date: 2006/06/05 16:26:33 $ - $Revision: 1.217 $');
 
 ?>

Index: commande/fiche.php
===================================================================
RCS file: /cvsroot/dolibarr/dolibarr/htdocs/commande/fiche.php,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -b -r1.191 -r1.192
--- commande/fiche.php  5 Jun 2006 15:24:50 -0000       1.191
+++ commande/fiche.php  5 Jun 2006 16:26:33 -0000       1.192
@@ -19,7 +19,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: fiche.php,v 1.191 2006/06/05 15:24:50 hregis Exp $
+ * $Id: fiche.php,v 1.192 2006/06/05 16:26:33 hregis Exp $
  * $Source: /cvsroot/dolibarr/dolibarr/htdocs/commande/fiche.php,v $
  */
 
@@ -27,7 +27,7 @@
        \file       htdocs/commande/fiche.php
        \ingroup    commande
        \brief      Fiche commande
-       \version    $Revision: 1.191 $
+       \version    $Revision: 1.192 $
 */
 
 require('./pre.inc.php');
@@ -145,7 +145,7 @@
 {
        $commande = new Commande($db);
        $commande->fetch($_GET['id']);
-       $commande->set_date_livraison($user,mktime(0, 0, 0, 
$_POST['liv_month'], $_POST['liv_day'], $_POST['liv_year']);
+       $commande->set_date_livraison($user,mktime(0, 0, 0, 
$_POST['liv_month'], $_POST['liv_day'], $_POST['liv_year']));
 }
 
 if ($_POST['action'] == 'setdeliveryadress' && $user->rights->commande->creer)
@@ -1664,5 +1664,5 @@
 
 $db->close();
 
-llxFooter('$Date: 2006/06/05 15:24:50 $ - $Revision: 1.191 $');
+llxFooter('$Date: 2006/06/05 16:26:33 $ - $Revision: 1.192 $');
 ?>




reply via email to

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