Browse Source

fix dont change num version

atm-quentin 6 years ago
parent
commit
04eb9ca167

+ 1 - 1
htdocs/admin/commande_fournisseur_dispatch_extrafields.php

@@ -8,7 +8,7 @@
  * Copyright (C) 2013		Florian Henry			<florian.henry@open-concept.pro>
  * Copyright (C) 2015		Claudio Aschieri		<c.aschieri@19.coop>
  * Copyright (C) 2018	   Quentin Vial-Gouteyron   <quentin.vial-gouteyron@atm-consulting.fr>
- * 
+ *
  *
  * 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

+ 1 - 1
htdocs/core/class/commonobject.class.php

@@ -3586,7 +3586,7 @@ abstract class CommonObject
 				$totalToShip+=$line->qty_shipped;   // defined for shipment only
             }else if ($line->element == 'commandefournisseurdispatch' && isset($line->qty))
             {
-                if (empty($totalToShip)) $totalToShip=0;    
+                if (empty($totalToShip)) $totalToShip=0;
                 $totalToShip+=$line->qty;   // defined for reception only
 			}
 

+ 1 - 1
htdocs/filefunc.inc.php

@@ -31,7 +31,7 @@
  */
 
 if (! defined('DOL_APPLICATION_TITLE')) define('DOL_APPLICATION_TITLE','Dolibarr');
-if (! defined('DOL_VERSION')) define('DOL_VERSION','9.0.1');		// a.b.c-alpha, a.b.c-beta, a.b.c-rcX or a.b.c
+if (! defined('DOL_VERSION')) define('DOL_VERSION','9.0.0-alpha');		// a.b.c-alpha, a.b.c-beta, a.b.c-rcX or a.b.c
 
 if (! defined('EURO')) define('EURO',chr(128));
 

+ 0 - 1
htdocs/fourn/class/fournisseur.commande.class.php

@@ -3187,7 +3187,6 @@ class CommandeFournisseur extends CommonOrder
             $this->error=$this->db->lasterror();
             return -1;
         }
-
     }
 }