Passed
Push — master ( 49af33...3cffbe )
by Alxarafe
21:21
created
dolibarr/htdocs/expedition/class/expeditionbatch.class.php 2 patches
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
 	/**
32 32
 	 * @var string ID to identify managed object
33 33
 	 */
34
-	public $element='expeditionlignebatch';
34
+	public $element = 'expeditionlignebatch';
35 35
 
36
-	private static $_table_element='expeditiondet_batch';		//!< Name of table without prefix where object is stored
36
+	private static $_table_element = 'expeditiondet_batch'; //!< Name of table without prefix where object is stored
37 37
 
38 38
 	var $sellby;
39 39
 	var $eatby;
@@ -63,18 +63,18 @@  discard block
 block discarded – undo
63 63
 	function fetchFromStock($id_stockdluo)
64 64
 	{
65 65
 		$sql = "SELECT";
66
-		$sql.= " pb.batch,";
67
-		$sql.= " pl.sellby,";
68
-		$sql.= " pl.eatby,";
69
-		$sql.= " ps.fk_entrepot";
66
+		$sql .= " pb.batch,";
67
+		$sql .= " pl.sellby,";
68
+		$sql .= " pl.eatby,";
69
+		$sql .= " ps.fk_entrepot";
70 70
 
71
-		$sql.= " FROM ".MAIN_DB_PREFIX."product_batch as pb";
72
-		$sql.= " JOIN ".MAIN_DB_PREFIX."product_stock as ps on pb.fk_product_stock=ps.rowid";
73
-		$sql.= ' LEFT JOIN '.MAIN_DB_PREFIX."product_lot as pl on pl.batch = pb.batch AND pl.fk_product = ps.fk_product";
74
-		$sql.= " WHERE pb.rowid = ".(int) $id_stockdluo;
71
+		$sql .= " FROM ".MAIN_DB_PREFIX."product_batch as pb";
72
+		$sql .= " JOIN ".MAIN_DB_PREFIX."product_stock as ps on pb.fk_product_stock=ps.rowid";
73
+		$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX."product_lot as pl on pl.batch = pb.batch AND pl.fk_product = ps.fk_product";
74
+		$sql .= " WHERE pb.rowid = ".(int) $id_stockdluo;
75 75
 
76 76
 		dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
77
-		$resql=$this->db->query($sql);
77
+		$resql = $this->db->query($sql);
78 78
 		if ($resql)
79 79
 		{
80 80
 			if ($this->db->num_rows($resql))
@@ -84,8 +84,8 @@  discard block
 block discarded – undo
84 84
 				$this->sellby = $this->db->jdate($obj->sellby);
85 85
 				$this->eatby = $this->db->jdate($obj->eatby);
86 86
 				$this->batch = $obj->batch;
87
-				$this->entrepot_id= $obj->fk_entrepot;
88
-				$this->fk_origin_stock=(int) $id_stockdluo;
87
+				$this->entrepot_id = $obj->fk_entrepot;
88
+				$this->fk_origin_stock = (int) $id_stockdluo;
89 89
 			}
90 90
 			$this->db->free($resql);
91 91
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 		}
94 94
 		else
95 95
 		{
96
-			$this->error="Error ".$this->db->lasterror();
96
+			$this->error = "Error ".$this->db->lasterror();
97 97
 			return -1;
98 98
 		}
99 99
 	}
@@ -111,40 +111,40 @@  discard block
 block discarded – undo
111 111
 		$id_line_expdet = (int) $id_line_expdet;
112 112
 
113 113
 		$sql = "INSERT INTO ".MAIN_DB_PREFIX.self::$_table_element." (";
114
-		$sql.= "fk_expeditiondet";
115
-		$sql.= ", sellby";
116
-		$sql.= ", eatby";
117
-		$sql.= ", batch";
118
-		$sql.= ", qty";
119
-		$sql.= ", fk_origin_stock";
120
-		$sql.= ") VALUES (";
121
-		$sql.= $id_line_expdet.",";
122
-		$sql.= " ".(! isset($this->sellby) || dol_strlen($this->sellby)==0?'NULL':("'".$this->db->idate($this->sellby))."'").",";
123
-		$sql.= " ".(! isset($this->eatby) || dol_strlen($this->eatby)==0?'NULL':("'".$this->db->idate($this->eatby))."'").",";
124
-		$sql.= " ".(! isset($this->batch)?'NULL':("'".$this->db->escape($this->batch)."'")).",";
125
-		$sql.= " ".(! isset($this->qty)?((! isset($this->dluo_qty))?'NULL':$this->dluo_qty):$this->qty).","; // dluo_qty deprecated, use qty
126
-		$sql.= " ".(! isset($this->fk_origin_stock)?'NULL':$this->fk_origin_stock);
127
-		$sql.= ")";
114
+		$sql .= "fk_expeditiondet";
115
+		$sql .= ", sellby";
116
+		$sql .= ", eatby";
117
+		$sql .= ", batch";
118
+		$sql .= ", qty";
119
+		$sql .= ", fk_origin_stock";
120
+		$sql .= ") VALUES (";
121
+		$sql .= $id_line_expdet.",";
122
+		$sql .= " ".(!isset($this->sellby) || dol_strlen($this->sellby) == 0 ? 'NULL' : ("'".$this->db->idate($this->sellby))."'").",";
123
+		$sql .= " ".(!isset($this->eatby) || dol_strlen($this->eatby) == 0 ? 'NULL' : ("'".$this->db->idate($this->eatby))."'").",";
124
+		$sql .= " ".(!isset($this->batch) ? 'NULL' : ("'".$this->db->escape($this->batch)."'")).",";
125
+		$sql .= " ".(!isset($this->qty) ? ((!isset($this->dluo_qty)) ? 'NULL' : $this->dluo_qty) : $this->qty).","; // dluo_qty deprecated, use qty
126
+		$sql .= " ".(!isset($this->fk_origin_stock) ? 'NULL' : $this->fk_origin_stock);
127
+		$sql .= ")";
128 128
 
129 129
 		dol_syslog(__METHOD__, LOG_DEBUG);
130
-		$resql=$this->db->query($sql);
131
-		if (! $resql) { $error++; $this->errors[]="Error ".$this->db->lasterror(); }
130
+		$resql = $this->db->query($sql);
131
+		if (!$resql) { $error++; $this->errors[] = "Error ".$this->db->lasterror(); }
132 132
 
133
-		if (! $error)
133
+		if (!$error)
134 134
 		{
135 135
             $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.self::$_table_element);
136
-			$this->fk_expeditiondet=$id_line_expdet;
136
+			$this->fk_expeditiondet = $id_line_expdet;
137 137
 			return $this->id;
138 138
 		}
139 139
 		else
140 140
 		{
141
-			foreach($this->errors as $errmsg)
141
+			foreach ($this->errors as $errmsg)
142 142
 			{
143 143
 	            dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
144
-	            $this->error.=($this->error?', '.$errmsg:$errmsg);
144
+	            $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
145 145
 			}
146 146
 			$this->db->rollback();
147
-			return -1*$error;
147
+			return -1 * $error;
148 148
 		}
149 149
 	}
150 150
 
@@ -155,12 +155,12 @@  discard block
 block discarded – undo
155 155
 	 * @param	int		$id_expedition	rowid of shipment
156 156
 	 * @return 	int						-1 if KO, 1 if OK
157 157
 	 */
158
-	static function deletefromexp($db,$id_expedition)
158
+	static function deletefromexp($db, $id_expedition)
159 159
 	{
160 160
 		$id_expedition = (int) $id_expedition;
161 161
 
162
-		$sql="DELETE FROM ".MAIN_DB_PREFIX.self::$_table_element;
163
-		$sql.=" WHERE fk_expeditiondet in (SELECT rowid FROM ".MAIN_DB_PREFIX."expeditiondet WHERE fk_expedition=".$id_expedition.")";
162
+		$sql = "DELETE FROM ".MAIN_DB_PREFIX.self::$_table_element;
163
+		$sql .= " WHERE fk_expeditiondet in (SELECT rowid FROM ".MAIN_DB_PREFIX."expeditiondet WHERE fk_expedition=".$id_expedition.")";
164 164
 
165 165
 		dol_syslog(__METHOD__, LOG_DEBUG);
166 166
 		if ($db->query($sql))
@@ -181,38 +181,38 @@  discard block
 block discarded – undo
181 181
 	 * @param	int			$fk_product			If provided, load also detailed information of lot
182 182
 	 * @return	int|array						-1 if KO, array of ExpeditionLineBatch if OK
183 183
 	 */
184
-	static function fetchAll($db, $id_line_expdet, $fk_product=0)
184
+	static function fetchAll($db, $id_line_expdet, $fk_product = 0)
185 185
 	{
186
-		$sql="SELECT";
187
-		$sql.= " eb.rowid,";
188
-		$sql.= " eb.fk_expeditiondet,";
189
-		$sql.= " eb.sellby as oldsellby,";				// deprecated
190
-		$sql.= " eb.eatby as oldeatby,";				// deprecated
191
-		$sql.= " eb.batch,";
192
-		$sql.= " eb.qty,";
193
-		$sql.= " eb.fk_origin_stock";
186
+		$sql = "SELECT";
187
+		$sql .= " eb.rowid,";
188
+		$sql .= " eb.fk_expeditiondet,";
189
+		$sql .= " eb.sellby as oldsellby,"; // deprecated
190
+		$sql .= " eb.eatby as oldeatby,"; // deprecated
191
+		$sql .= " eb.batch,";
192
+		$sql .= " eb.qty,";
193
+		$sql .= " eb.fk_origin_stock";
194 194
 		if ($fk_product > 0)
195 195
 		{
196
-			$sql.= ", pl.sellby";
197
-			$sql.= ", pl.eatby";
196
+			$sql .= ", pl.sellby";
197
+			$sql .= ", pl.eatby";
198 198
 		}
199
-		$sql.= " FROM ".MAIN_DB_PREFIX.self::$_table_element." as eb";
199
+		$sql .= " FROM ".MAIN_DB_PREFIX.self::$_table_element." as eb";
200 200
 		if ($fk_product > 0)
201 201
 		{
202
-			$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product_lot as pl ON pl.batch = eb.batch AND pl.fk_product = ".$fk_product;
202
+			$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product_lot as pl ON pl.batch = eb.batch AND pl.fk_product = ".$fk_product;
203 203
 		}
204
-		$sql.= " WHERE fk_expeditiondet=".(int) $id_line_expdet;
204
+		$sql .= " WHERE fk_expeditiondet=".(int) $id_line_expdet;
205 205
 
206
-		dol_syslog(__METHOD__ ."", LOG_DEBUG);
207
-		$resql=$db->query($sql);
206
+		dol_syslog(__METHOD__."", LOG_DEBUG);
207
+		$resql = $db->query($sql);
208 208
 		if ($resql)
209 209
 		{
210
-			$num=$db->num_rows($resql);
211
-			$i=0;
210
+			$num = $db->num_rows($resql);
211
+			$i = 0;
212 212
 			$ret = array();
213
-			while ($i<$num)
213
+			while ($i < $num)
214 214
 			{
215
-				$tmp=new self($db);
215
+				$tmp = new self($db);
216 216
 
217 217
 				$obj = $db->fetch_object($resql);
218 218
 
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 				$tmp->dluo_qty = $obj->qty; // dluo_qty deprecated, use qty
226 226
 				$tmp->qty = $obj->qty;
227 227
 
228
-				$ret[]=$tmp;
228
+				$ret[] = $tmp;
229 229
 				$i++;
230 230
 			}
231 231
 			$db->free($resql);
Please login to merge, or discard this patch.
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -90,8 +90,7 @@  discard block
 block discarded – undo
90 90
 			$this->db->free($resql);
91 91
 
92 92
 			return 1;
93
-		}
94
-		else
93
+		} else
95 94
 		{
96 95
 			$this->error="Error ".$this->db->lasterror();
97 96
 			return -1;
@@ -135,8 +134,7 @@  discard block
 block discarded – undo
135 134
             $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.self::$_table_element);
136 135
 			$this->fk_expeditiondet=$id_line_expdet;
137 136
 			return $this->id;
138
-		}
139
-		else
137
+		} else
140 138
 		{
141 139
 			foreach($this->errors as $errmsg)
142 140
 			{
@@ -166,8 +164,7 @@  discard block
 block discarded – undo
166 164
 		if ($db->query($sql))
167 165
 		{
168 166
 			return 1;
169
-		}
170
-		else
167
+		} else
171 168
 		{
172 169
 			return -1;
173 170
 		}
@@ -230,8 +227,7 @@  discard block
 block discarded – undo
230 227
 			}
231 228
 			$db->free($resql);
232 229
 			return $ret;
233
-		}
234
-		else
230
+		} else
235 231
 		{
236 232
 			dol_print_error($db);
237 233
 			return -1;
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/class/expedition.class.php 2 patches
Spacing   +562 added lines, -562 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 
36 36
 require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
37 37
 require_once DOL_DOCUMENT_ROOT."/core/class/commonobjectline.class.php";
38
-if (! empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
39
-if (! empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
40
-if (! empty($conf->productbatch->enabled)) require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionbatch.class.php';
38
+if (!empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
39
+if (!empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
40
+if (!empty($conf->productbatch->enabled)) require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionbatch.class.php';
41 41
 
42 42
 
43 43
 /**
@@ -48,22 +48,22 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * @var string ID to identify managed object
50 50
 	 */
51
-	public $element="shipping";
51
+	public $element = "shipping";
52 52
 
53 53
 	/**
54 54
 	 * @var int Field with ID of parent key if this field has a parent
55 55
 	 */
56
-	public $fk_element="fk_expedition";
56
+	public $fk_element = "fk_expedition";
57 57
 
58 58
 	/**
59 59
 	 * @var string Name of table without prefix where object is stored
60 60
 	 */
61
-	public $table_element="expedition";
61
+	public $table_element = "expedition";
62 62
 
63 63
 	/**
64 64
 	 * @var int    Name of subtable line
65 65
 	 */
66
-	public $table_element_line="expeditiondet";
66
+	public $table_element_line = "expeditiondet";
67 67
 
68 68
 	/**
69 69
 	 * 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 	 * @var int warehouse id
95 95
 	 */
96 96
 	public $entrepot_id;
97
-	public $lines=array();
97
+	public $lines = array();
98 98
 
99 99
 	/**
100 100
 	 * @var string Tracking number
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	// A denormalized value
124 124
 	public $trueSize;
125 125
 
126
-	public $date_delivery;		// Date delivery planed
126
+	public $date_delivery; // Date delivery planed
127 127
 
128 128
 	/**
129 129
 	 * @deprecated
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	public $date_valid;
148 148
 
149 149
 	public $meths;
150
-	public $listmeths;			// List of carriers
150
+	public $listmeths; // List of carriers
151 151
 
152 152
     /**
153 153
 	 * Draft status
@@ -227,26 +227,26 @@  discard block
 block discarded – undo
227 227
 				$dir = dol_buildpath($reldir."core/modules/expedition/");
228 228
 
229 229
 				// Load file with numbering class (if found)
230
-				$mybool|=@include_once $dir.$file;
230
+				$mybool |= @include_once $dir.$file;
231 231
 			}
232 232
 
233
-			if (! $mybool)
233
+			if (!$mybool)
234 234
 			{
235
-				dol_print_error('',"Failed to include file ".$file);
235
+				dol_print_error('', "Failed to include file ".$file);
236 236
 				return '';
237 237
 			}
238 238
 
239 239
 			$obj = new $classname();
240 240
 			$numref = "";
241
-			$numref = $obj->getNextValue($soc,$this);
241
+			$numref = $obj->getNextValue($soc, $this);
242 242
 
243
-			if ( $numref != "")
243
+			if ($numref != "")
244 244
 			{
245 245
 				return $numref;
246 246
 			}
247 247
 			else
248 248
 			{
249
-				dol_print_error($this->db,get_class($this)."::getNextNumRef ".$obj->error);
249
+				dol_print_error($this->db, get_class($this)."::getNextNumRef ".$obj->error);
250 250
 				return "";
251 251
 			}
252 252
 		}
@@ -264,13 +264,13 @@  discard block
 block discarded – undo
264 264
 	 * 	@param		int		$notrigger	1=Does not execute triggers, 0= execute triggers
265 265
 	 *  @return int 				<0 si erreur, id expedition creee si ok
266 266
 	 */
267
-	function create($user, $notrigger=0)
267
+	function create($user, $notrigger = 0)
268 268
 	{
269 269
 		global $conf, $hookmanager;
270 270
 
271
-		$now=dol_now();
271
+		$now = dol_now();
272 272
 
273
-		require_once DOL_DOCUMENT_ROOT .'/product/stock/class/mouvementstock.class.php';
273
+		require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
274 274
 		$error = 0;
275 275
 
276 276
 		// Clean parameters
@@ -284,90 +284,90 @@  discard block
 block discarded – undo
284 284
 		$this->db->begin();
285 285
 
286 286
 		$sql = "INSERT INTO ".MAIN_DB_PREFIX."expedition (";
287
-		$sql.= "ref";
288
-		$sql.= ", entity";
289
-		$sql.= ", ref_customer";
290
-		$sql.= ", ref_int";
291
-		$sql.= ", date_creation";
292
-		$sql.= ", fk_user_author";
293
-		$sql.= ", date_expedition";
294
-		$sql.= ", date_delivery";
295
-		$sql.= ", fk_soc";
296
-		$sql.= ", fk_projet";
297
-		$sql.= ", fk_address";
298
-		$sql.= ", fk_shipping_method";
299
-		$sql.= ", tracking_number";
300
-		$sql.= ", weight";
301
-		$sql.= ", size";
302
-		$sql.= ", width";
303
-		$sql.= ", height";
304
-		$sql.= ", weight_units";
305
-		$sql.= ", size_units";
306
-		$sql.= ", note_private";
307
-		$sql.= ", note_public";
308
-		$sql.= ", model_pdf";
309
-		$sql.= ", fk_incoterms, location_incoterms";
310
-		$sql.= ") VALUES (";
311
-		$sql.= "'(PROV)'";
312
-		$sql.= ", ".$conf->entity;
313
-		$sql.= ", ".($this->ref_customer?"'".$this->db->escape($this->ref_customer)."'":"null");
314
-		$sql.= ", ".($this->ref_int?"'".$this->db->escape($this->ref_int)."'":"null");
315
-		$sql.= ", '".$this->db->idate($now)."'";
316
-		$sql.= ", ".$user->id;
317
-		$sql.= ", ".($this->date_expedition>0?"'".$this->db->idate($this->date_expedition)."'":"null");
318
-		$sql.= ", ".($this->date_delivery>0?"'".$this->db->idate($this->date_delivery)."'":"null");
319
-		$sql.= ", ".$this->socid;
320
-		$sql.= ", ".$this->fk_project;
321
-		$sql.= ", ".($this->fk_delivery_address>0?$this->fk_delivery_address:"null");
322
-		$sql.= ", ".($this->shipping_method_id>0?$this->shipping_method_id:"null");
323
-		$sql.= ", '".$this->db->escape($this->tracking_number)."'";
324
-		$sql.= ", ".$this->weight;
325
-		$sql.= ", ".$this->sizeS;	// TODO Should use this->trueDepth
326
-		$sql.= ", ".$this->sizeW;	// TODO Should use this->trueWidth
327
-		$sql.= ", ".$this->sizeH;	// TODO Should use this->trueHeight
328
-		$sql.= ", ".$this->weight_units;
329
-		$sql.= ", ".$this->size_units;
330
-		$sql.= ", ".(!empty($this->note_private)?"'".$this->db->escape($this->note_private)."'":"null");
331
-		$sql.= ", ".(!empty($this->note_public)?"'".$this->db->escape($this->note_public)."'":"null");
332
-		$sql.= ", ".(!empty($this->model_pdf)?"'".$this->db->escape($this->model_pdf)."'":"null");
333
-		$sql.= ", ".(int) $this->fk_incoterms;
334
-		$sql.= ", '".$this->db->escape($this->location_incoterms)."'";
335
-		$sql.= ")";
287
+		$sql .= "ref";
288
+		$sql .= ", entity";
289
+		$sql .= ", ref_customer";
290
+		$sql .= ", ref_int";
291
+		$sql .= ", date_creation";
292
+		$sql .= ", fk_user_author";
293
+		$sql .= ", date_expedition";
294
+		$sql .= ", date_delivery";
295
+		$sql .= ", fk_soc";
296
+		$sql .= ", fk_projet";
297
+		$sql .= ", fk_address";
298
+		$sql .= ", fk_shipping_method";
299
+		$sql .= ", tracking_number";
300
+		$sql .= ", weight";
301
+		$sql .= ", size";
302
+		$sql .= ", width";
303
+		$sql .= ", height";
304
+		$sql .= ", weight_units";
305
+		$sql .= ", size_units";
306
+		$sql .= ", note_private";
307
+		$sql .= ", note_public";
308
+		$sql .= ", model_pdf";
309
+		$sql .= ", fk_incoterms, location_incoterms";
310
+		$sql .= ") VALUES (";
311
+		$sql .= "'(PROV)'";
312
+		$sql .= ", ".$conf->entity;
313
+		$sql .= ", ".($this->ref_customer ? "'".$this->db->escape($this->ref_customer)."'" : "null");
314
+		$sql .= ", ".($this->ref_int ? "'".$this->db->escape($this->ref_int)."'" : "null");
315
+		$sql .= ", '".$this->db->idate($now)."'";
316
+		$sql .= ", ".$user->id;
317
+		$sql .= ", ".($this->date_expedition > 0 ? "'".$this->db->idate($this->date_expedition)."'" : "null");
318
+		$sql .= ", ".($this->date_delivery > 0 ? "'".$this->db->idate($this->date_delivery)."'" : "null");
319
+		$sql .= ", ".$this->socid;
320
+		$sql .= ", ".$this->fk_project;
321
+		$sql .= ", ".($this->fk_delivery_address > 0 ? $this->fk_delivery_address : "null");
322
+		$sql .= ", ".($this->shipping_method_id > 0 ? $this->shipping_method_id : "null");
323
+		$sql .= ", '".$this->db->escape($this->tracking_number)."'";
324
+		$sql .= ", ".$this->weight;
325
+		$sql .= ", ".$this->sizeS; // TODO Should use this->trueDepth
326
+		$sql .= ", ".$this->sizeW; // TODO Should use this->trueWidth
327
+		$sql .= ", ".$this->sizeH; // TODO Should use this->trueHeight
328
+		$sql .= ", ".$this->weight_units;
329
+		$sql .= ", ".$this->size_units;
330
+		$sql .= ", ".(!empty($this->note_private) ? "'".$this->db->escape($this->note_private)."'" : "null");
331
+		$sql .= ", ".(!empty($this->note_public) ? "'".$this->db->escape($this->note_public)."'" : "null");
332
+		$sql .= ", ".(!empty($this->model_pdf) ? "'".$this->db->escape($this->model_pdf)."'" : "null");
333
+		$sql .= ", ".(int) $this->fk_incoterms;
334
+		$sql .= ", '".$this->db->escape($this->location_incoterms)."'";
335
+		$sql .= ")";
336 336
 
337 337
 		dol_syslog(get_class($this)."::create", LOG_DEBUG);
338
-		$resql=$this->db->query($sql);
338
+		$resql = $this->db->query($sql);
339 339
 		if ($resql)
340 340
 		{
341 341
 			$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."expedition");
342 342
 
343 343
 			$sql = "UPDATE ".MAIN_DB_PREFIX."expedition";
344
-			$sql.= " SET ref = '(PROV".$this->id.")'";
345
-			$sql.= " WHERE rowid = ".$this->id;
344
+			$sql .= " SET ref = '(PROV".$this->id.")'";
345
+			$sql .= " WHERE rowid = ".$this->id;
346 346
 
347 347
 			dol_syslog(get_class($this)."::create", LOG_DEBUG);
348 348
 			if ($this->db->query($sql))
349 349
 			{
350 350
 				// Insertion des lignes
351
-				$num=count($this->lines);
351
+				$num = count($this->lines);
352 352
 				for ($i = 0; $i < $num; $i++)
353 353
 				{
354
-					if (! isset($this->lines[$i]->detail_batch))
354
+					if (!isset($this->lines[$i]->detail_batch))
355 355
 					{	// no batch management
356
-						if (! $this->create_line($this->lines[$i]->entrepot_id, $this->lines[$i]->origin_line_id, $this->lines[$i]->qty, $this->lines[$i]->array_options) > 0)
356
+						if (!$this->create_line($this->lines[$i]->entrepot_id, $this->lines[$i]->origin_line_id, $this->lines[$i]->qty, $this->lines[$i]->array_options) > 0)
357 357
 						{
358 358
 							$error++;
359 359
 						}
360 360
 					}
361 361
 					else
362 362
 					{	// with batch management
363
-						if (! $this->create_line_batch($this->lines[$i],$this->lines[$i]->array_options) > 0)
363
+						if (!$this->create_line_batch($this->lines[$i], $this->lines[$i]->array_options) > 0)
364 364
 						{
365 365
 							$error++;
366 366
 						}
367 367
 					}
368 368
 				}
369 369
 
370
-				if (! $error && $this->id && $this->origin_id)
370
+				if (!$error && $this->id && $this->origin_id)
371 371
 				{
372 372
 					$ret = $this->add_object_linked();
373 373
 					if (!$ret)
@@ -377,42 +377,42 @@  discard block
 block discarded – undo
377 377
 				}
378 378
 
379 379
 				// Actions on extra fields
380
-				if (! $error && empty($conf->global->MAIN_EXTRAFIELDS_DISABLED))
380
+				if (!$error && empty($conf->global->MAIN_EXTRAFIELDS_DISABLED))
381 381
 				{
382
-					$result=$this->insertExtraFields();
382
+					$result = $this->insertExtraFields();
383 383
 					if ($result < 0)
384 384
 					{
385 385
 						$error++;
386 386
 					}
387 387
 				}
388 388
 
389
-				if (! $error && ! $notrigger)
389
+				if (!$error && !$notrigger)
390 390
 				{
391 391
 					// Call trigger
392
-					$result=$this->call_trigger('SHIPPING_CREATE',$user);
392
+					$result = $this->call_trigger('SHIPPING_CREATE', $user);
393 393
 					if ($result < 0) { $error++; }
394 394
 					// End call triggers
395 395
 
396
-					if (! $error)
396
+					if (!$error)
397 397
 					{
398 398
 						$this->db->commit();
399 399
 						return $this->id;
400 400
 					}
401 401
 					else
402 402
 					{
403
-						foreach($this->errors as $errmsg)
403
+						foreach ($this->errors as $errmsg)
404 404
 						{
405 405
 							dol_syslog(get_class($this)."::create ".$errmsg, LOG_ERR);
406
-							$this->error.=($this->error?', '.$errmsg:$errmsg);
406
+							$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
407 407
 						}
408 408
 						$this->db->rollback();
409
-						return -1*$error;
409
+						return -1 * $error;
410 410
 					}
411 411
 				}
412 412
 				else
413 413
 				{
414 414
 					$error++;
415
-					$this->error=$this->db->lasterror()." - sql=$sql";
415
+					$this->error = $this->db->lasterror()." - sql=$sql";
416 416
 					$this->db->rollback();
417 417
 					return -3;
418 418
 				}
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
 			else
421 421
 			{
422 422
 				$error++;
423
-				$this->error=$this->db->lasterror()." - sql=$sql";
423
+				$this->error = $this->db->lasterror()." - sql=$sql";
424 424
 				$this->db->rollback();
425 425
 				return -2;
426 426
 			}
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
 		else
429 429
 		{
430 430
 			$error++;
431
-			$this->error=$this->db->error()." - sql=$sql";
431
+			$this->error = $this->db->error()." - sql=$sql";
432 432
 			$this->db->rollback();
433 433
 			return -1;
434 434
 		}
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
 	 * @param	array	$array_options		extrafields array
445 445
 	 * @return	int							<0 if KO, line_id if OK
446 446
 	 */
447
-	function create_line($entrepot_id, $origin_line_id, $qty,$array_options=0)
447
+	function create_line($entrepot_id, $origin_line_id, $qty, $array_options = 0)
448 448
 	{
449 449
         //phpcs:enable
450 450
 		$expeditionline = new ExpeditionLigne($this->db);
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
 
457 457
 		if (($lineId = $expeditionline->insert()) < 0)
458 458
 		{
459
-			$this->errors[]=$expeditionline->error;
459
+			$this->errors[] = $expeditionline->error;
460 460
 		}
461 461
 		return $lineId;
462 462
 	}
@@ -470,13 +470,13 @@  discard block
 block discarded – undo
470 470
 	 * @param	array		$array_options		extrafields array
471 471
 	 * @return	int							<0 if KO, >0 if OK
472 472
 	 */
473
-	function create_line_batch($line_ext,$array_options=0)
473
+	function create_line_batch($line_ext, $array_options = 0)
474 474
 	{
475 475
         // phpcs:enable
476 476
 		$error = 0;
477 477
 		$stockLocationQty = array(); // associated array with batch qty in stock location
478 478
 
479
-		$tab=$line_ext->detail_batch;
479
+		$tab = $line_ext->detail_batch;
480 480
 		// create stockLocation Qty array
481 481
 		foreach ($tab as $detbatch)
482 482
 		{
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
 		// create shipment lines
489 489
 		foreach ($stockLocationQty as $stockLocation => $qty)
490 490
 		{
491
-			if (($line_id = $this->create_line($stockLocation,$line_ext->origin_line_id,$qty,$array_options)) < 0)
491
+			if (($line_id = $this->create_line($stockLocation, $line_ext->origin_line_id, $qty, $array_options)) < 0)
492 492
 			{
493 493
 				$error++;
494 494
 			}
@@ -497,8 +497,8 @@  discard block
 block discarded – undo
497 497
 				// create shipment batch lines for stockLocation
498 498
 				foreach ($tab as $detbatch)
499 499
 				{
500
-					if ($detbatch->entrepot_id == $stockLocation){
501
-						if (! ($detbatch->create($line_id) >0))		// Create an expeditionlinebatch
500
+					if ($detbatch->entrepot_id == $stockLocation) {
501
+						if (!($detbatch->create($line_id) > 0))		// Create an expeditionlinebatch
502 502
 						{
503 503
 							$error++;
504 504
 						}
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
 			}
508 508
 		}
509 509
 
510
-		if (! $error) return 1;
510
+		if (!$error) return 1;
511 511
 		else return -1;
512 512
 	}
513 513
 
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
 	 * 	@param	string	$ref_int	Internal reference of other object
521 521
 	 *	@return int			        >0 if OK, 0 if not found, <0 if KO
522 522
 	 */
523
-	function fetch($id, $ref='', $ref_ext='', $ref_int='')
523
+	function fetch($id, $ref = '', $ref_ext = '', $ref_int = '')
524 524
 	{
525 525
 		global $conf;
526 526
 
@@ -528,23 +528,23 @@  discard block
 block discarded – undo
528 528
 		if (empty($id) && empty($ref) && empty($ref_ext) && empty($ref_int)) return -1;
529 529
 
530 530
 		$sql = "SELECT e.rowid, e.ref, e.fk_soc as socid, e.date_creation, e.ref_customer, e.ref_ext, e.ref_int, e.fk_user_author, e.fk_statut, e.fk_projet, e.billed";
531
-		$sql.= ", e.weight, e.weight_units, e.size, e.size_units, e.width, e.height";
532
-		$sql.= ", e.date_expedition as date_expedition, e.model_pdf, e.fk_address, e.date_delivery";
533
-		$sql.= ", e.fk_shipping_method, e.tracking_number";
534
-		$sql.= ", e.note_private, e.note_public";
535
-		$sql.= ', e.fk_incoterms, e.location_incoterms';
536
-		$sql.= ', i.libelle as libelle_incoterms';
537
-		$sql.= ', s.libelle as shipping_method';
538
-		$sql.= ", el.fk_source as origin_id, el.sourcetype as origin";
539
-		$sql.= " FROM ".MAIN_DB_PREFIX."expedition as e";
540
-		$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."element_element as el ON el.fk_target = e.rowid AND el.targettype = '".$this->db->escape($this->element)."'";
541
-		$sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_incoterms as i ON e.fk_incoterms = i.rowid';
542
-		$sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_shipment_mode as s ON e.fk_shipping_method = s.rowid';
543
-		$sql.= " WHERE e.entity IN (".getEntity('expedition').")";
544
-		if ($id)   	  $sql.= " AND e.rowid=".$id;
545
-		if ($ref)     $sql.= " AND e.ref='".$this->db->escape($ref)."'";
546
-		if ($ref_ext) $sql.= " AND e.ref_ext='".$this->db->escape($ref_ext)."'";
547
-		if ($ref_int) $sql.= " AND e.ref_int='".$this->db->escape($ref_int)."'";
531
+		$sql .= ", e.weight, e.weight_units, e.size, e.size_units, e.width, e.height";
532
+		$sql .= ", e.date_expedition as date_expedition, e.model_pdf, e.fk_address, e.date_delivery";
533
+		$sql .= ", e.fk_shipping_method, e.tracking_number";
534
+		$sql .= ", e.note_private, e.note_public";
535
+		$sql .= ', e.fk_incoterms, e.location_incoterms';
536
+		$sql .= ', i.libelle as libelle_incoterms';
537
+		$sql .= ', s.libelle as shipping_method';
538
+		$sql .= ", el.fk_source as origin_id, el.sourcetype as origin";
539
+		$sql .= " FROM ".MAIN_DB_PREFIX."expedition as e";
540
+		$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."element_element as el ON el.fk_target = e.rowid AND el.targettype = '".$this->db->escape($this->element)."'";
541
+		$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_incoterms as i ON e.fk_incoterms = i.rowid';
542
+		$sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_shipment_mode as s ON e.fk_shipping_method = s.rowid';
543
+		$sql .= " WHERE e.entity IN (".getEntity('expedition').")";
544
+		if ($id)   	  $sql .= " AND e.rowid=".$id;
545
+		if ($ref)     $sql .= " AND e.ref='".$this->db->escape($ref)."'";
546
+		if ($ref_ext) $sql .= " AND e.ref_ext='".$this->db->escape($ref_ext)."'";
547
+		if ($ref_int) $sql .= " AND e.ref_int='".$this->db->escape($ref_int)."'";
548 548
 
549 549
 		dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
550 550
 		$result = $this->db->query($sql);
@@ -557,25 +557,25 @@  discard block
 block discarded – undo
557 557
 				$this->id                   = $obj->rowid;
558 558
 				$this->ref                  = $obj->ref;
559 559
 				$this->socid                = $obj->socid;
560
-				$this->ref_customer	    = $obj->ref_customer;
560
+				$this->ref_customer = $obj->ref_customer;
561 561
 				$this->ref_ext		    = $obj->ref_ext;
562 562
 				$this->ref_int		    = $obj->ref_int;
563 563
 				$this->statut               = $obj->fk_statut;
564 564
 				$this->user_author_id       = $obj->fk_user_author;
565 565
 				$this->date_creation        = $this->db->jdate($obj->date_creation);
566
-				$this->date                 = $this->db->jdate($obj->date_expedition);	// TODO deprecated
567
-				$this->date_expedition      = $this->db->jdate($obj->date_expedition);	// TODO deprecated
568
-				$this->date_shipping        = $this->db->jdate($obj->date_expedition);	// Date real
569
-				$this->date_delivery        = $this->db->jdate($obj->date_delivery);	// Date planed
566
+				$this->date                 = $this->db->jdate($obj->date_expedition); // TODO deprecated
567
+				$this->date_expedition      = $this->db->jdate($obj->date_expedition); // TODO deprecated
568
+				$this->date_shipping        = $this->db->jdate($obj->date_expedition); // Date real
569
+				$this->date_delivery        = $this->db->jdate($obj->date_delivery); // Date planed
570 570
 				$this->fk_delivery_address  = $obj->fk_address;
571 571
 				$this->modelpdf             = $obj->model_pdf;
572 572
 				$this->shipping_method_id   = $obj->fk_shipping_method;
573
-				$this->shipping_method	    = $obj->shipping_method;
573
+				$this->shipping_method = $obj->shipping_method;
574 574
 				$this->tracking_number      = $obj->tracking_number;
575
-				$this->origin               = ($obj->origin?$obj->origin:'commande'); // For compatibility
575
+				$this->origin               = ($obj->origin ? $obj->origin : 'commande'); // For compatibility
576 576
 				$this->origin_id            = $obj->origin_id;
577 577
 				$this->billed               = $obj->billed;
578
-				$this->fk_project	    = $obj->fk_projet;
578
+				$this->fk_project = $obj->fk_projet;
579 579
 
580 580
 				$this->trueWeight           = $obj->weight;
581 581
 				$this->weight_units         = $obj->weight_units;
@@ -609,7 +609,7 @@  discard block
 block discarded – undo
609 609
 				/*
610 610
 				 * Thirparty
611 611
 				 */
612
-				$result=$this->fetch_thirdparty();
612
+				$result = $this->fetch_thirdparty();
613 613
 
614 614
 				// Retreive extrafields
615 615
 				$this->fetch_optionals();
@@ -617,7 +617,7 @@  discard block
 block discarded – undo
617 617
 				/*
618 618
 				 * Lines
619 619
 				 */
620
-				$result=$this->fetch_lines();
620
+				$result = $this->fetch_lines();
621 621
 				if ($result < 0)
622 622
 				{
623 623
 					return -3;
@@ -628,13 +628,13 @@  discard block
 block discarded – undo
628 628
 			else
629 629
 			{
630 630
 				dol_syslog(get_class($this).'::Fetch no expedition found', LOG_ERR);
631
-				$this->error='Delivery with id '.$id.' not found';
631
+				$this->error = 'Delivery with id '.$id.' not found';
632 632
 				return 0;
633 633
 			}
634 634
 		}
635 635
 		else
636 636
 		{
637
-			$this->error=$this->db->error();
637
+			$this->error = $this->db->error();
638 638
 			return -1;
639 639
 		}
640 640
 	}
@@ -646,7 +646,7 @@  discard block
 block discarded – undo
646 646
 	 *  @param		int			$notrigger	1=Does not execute triggers, 0= execute triggers
647 647
 	 *  @return     int						<0 if OK, >0 if KO
648 648
 	 */
649
-	function valid($user, $notrigger=0)
649
+	function valid($user, $notrigger = 0)
650 650
 	{
651 651
 		global $conf, $langs;
652 652
 
@@ -661,10 +661,10 @@  discard block
 block discarded – undo
661 661
 			return 0;
662 662
 		}
663 663
 
664
-		if (! ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->creer))
665
-	   	|| (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->shipping_advance->validate))))
664
+		if (!((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->expedition->creer))
665
+	   	|| (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->expedition->shipping_advance->validate))))
666 666
 		{
667
-			$this->error='Permission denied';
667
+			$this->error = 'Permission denied';
668 668
 			dol_syslog(get_class($this)."::valid ".$this->error, LOG_ERR);
669 669
 			return -1;
670 670
 		}
@@ -678,10 +678,10 @@  discard block
 block discarded – undo
678 678
 		$soc->fetch($this->socid);
679 679
 
680 680
 		// Class of company linked to order
681
-		$result=$soc->set_as_client();
681
+		$result = $soc->set_as_client();
682 682
 
683 683
 		// Define new ref
684
-		if (! $error && (preg_match('/^[\(]?PROV/i', $this->ref) || empty($this->ref))) // empty should not happened, but when it occurs, the test save life
684
+		if (!$error && (preg_match('/^[\(]?PROV/i', $this->ref) || empty($this->ref))) // empty should not happened, but when it occurs, the test save life
685 685
 		{
686 686
 			$numref = $this->getNextNumRef($soc);
687 687
 		}
@@ -691,26 +691,26 @@  discard block
 block discarded – undo
691 691
 		}
692 692
 		$this->newref = $numref;
693 693
 
694
-		$now=dol_now();
694
+		$now = dol_now();
695 695
 
696 696
 		// Validate
697 697
 		$sql = "UPDATE ".MAIN_DB_PREFIX."expedition SET";
698
-		$sql.= " ref='".$numref."'";
699
-		$sql.= ", fk_statut = 1";
700
-		$sql.= ", date_valid = '".$this->db->idate($now)."'";
701
-		$sql.= ", fk_user_valid = ".$user->id;
702
-		$sql.= " WHERE rowid = ".$this->id;
698
+		$sql .= " ref='".$numref."'";
699
+		$sql .= ", fk_statut = 1";
700
+		$sql .= ", date_valid = '".$this->db->idate($now)."'";
701
+		$sql .= ", fk_user_valid = ".$user->id;
702
+		$sql .= " WHERE rowid = ".$this->id;
703 703
 
704 704
 		dol_syslog(get_class($this)."::valid update expedition", LOG_DEBUG);
705
-		$resql=$this->db->query($sql);
706
-		if (! $resql)
705
+		$resql = $this->db->query($sql);
706
+		if (!$resql)
707 707
 		{
708
-			$this->error=$this->db->lasterror();
708
+			$this->error = $this->db->lasterror();
709 709
 			$error++;
710 710
 		}
711 711
 
712 712
 		// If stock increment is done on sending (recommanded choice)
713
-		if (! $error && ! empty($conf->stock->enabled) && ! empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT))
713
+		if (!$error && !empty($conf->stock->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT))
714 714
 		{
715 715
 			require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
716 716
 
@@ -718,16 +718,16 @@  discard block
 block discarded – undo
718 718
 
719 719
 			// Loop on each product line to add a stock movement
720 720
 			$sql = "SELECT cd.fk_product, cd.subprice,";
721
-			$sql.= " ed.rowid, ed.qty, ed.fk_entrepot,";
722
-			$sql.= " edb.rowid as edbrowid, edb.eatby, edb.sellby, edb.batch, edb.qty as edbqty, edb.fk_origin_stock";
723
-			$sql.= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
724
-			$sql.= " ".MAIN_DB_PREFIX."expeditiondet as ed";
725
-			$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."expeditiondet_batch as edb on edb.fk_expeditiondet = ed.rowid";
726
-			$sql.= " WHERE ed.fk_expedition = ".$this->id;
727
-			$sql.= " AND cd.rowid = ed.fk_origin_line";
721
+			$sql .= " ed.rowid, ed.qty, ed.fk_entrepot,";
722
+			$sql .= " edb.rowid as edbrowid, edb.eatby, edb.sellby, edb.batch, edb.qty as edbqty, edb.fk_origin_stock";
723
+			$sql .= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
724
+			$sql .= " ".MAIN_DB_PREFIX."expeditiondet as ed";
725
+			$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."expeditiondet_batch as edb on edb.fk_expeditiondet = ed.rowid";
726
+			$sql .= " WHERE ed.fk_expedition = ".$this->id;
727
+			$sql .= " AND cd.rowid = ed.fk_origin_line";
728 728
 
729 729
 			dol_syslog(get_class($this)."::valid select details", LOG_DEBUG);
730
-			$resql=$this->db->query($sql);
730
+			$resql = $this->db->query($sql);
731 731
 			if ($resql)
732 732
 			{
733 733
 				$cpt = $this->db->num_rows($resql);
@@ -754,10 +754,10 @@  discard block
 block discarded – undo
754 754
 						// line without batch detail
755 755
 
756 756
 						// We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record.
757
-						$result=$mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentValidatedInDolibarr",$numref));
757
+						$result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentValidatedInDolibarr", $numref));
758 758
 						if ($result < 0) {
759 759
 							$error++;
760
-							$this->errors[]=$mouvS->error;
760
+							$this->errors[] = $mouvS->error;
761 761
 							$this->errors = array_merge($this->errors, $mouvS->errors);
762 762
 							break;
763 763
 						}
@@ -768,10 +768,10 @@  discard block
 block discarded – undo
768 768
 
769 769
 						// We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record.
770 770
 						// Note: ->fk_origin_stock = id into table llx_product_batch (may be rename into llx_product_stock_batch in another version)
771
-						$result=$mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentValidatedInDolibarr",$numref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, $obj->fk_origin_stock);
771
+						$result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentValidatedInDolibarr", $numref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, $obj->fk_origin_stock);
772 772
 						if ($result < 0) {
773 773
 							$error++;
774
-							$this->errors[]=$mouvS->error;
774
+							$this->errors[] = $mouvS->error;
775 775
 							$this->errors = array_merge($this->errors, $mouvS->errors);
776 776
 							break;
777 777
 						}
@@ -781,7 +781,7 @@  discard block
 block discarded – undo
781 781
 			else
782 782
 			{
783 783
 				$this->db->rollback();
784
-				$this->error=$this->db->error();
784
+				$this->error = $this->db->error();
785 785
 				return -2;
786 786
 			}
787 787
 		}
@@ -789,20 +789,20 @@  discard block
 block discarded – undo
789 789
 		// Change status of order to "shipment in process"
790 790
 		$ret = $this->setStatut(Commande::STATUS_SHIPMENTONPROCESS, $this->origin_id, $this->origin);
791 791
 
792
-		if (! $ret)
792
+		if (!$ret)
793 793
 		{
794 794
 			$error++;
795 795
 		}
796 796
 
797
-		if (! $error && ! $notrigger)
797
+		if (!$error && !$notrigger)
798 798
 		{
799 799
 			// Call trigger
800
-			$result=$this->call_trigger('SHIPPING_VALIDATE',$user);
800
+			$result = $this->call_trigger('SHIPPING_VALIDATE', $user);
801 801
 			if ($result < 0) { $error++; }
802 802
 			// End call triggers
803 803
 		}
804 804
 
805
-		if (! $error)
805
+		if (!$error)
806 806
 		{
807 807
 			$this->oldref = $this->ref;
808 808
 
@@ -823,13 +823,13 @@  discard block
 block discarded – undo
823 823
 					{
824 824
 						dol_syslog("Rename ok");
825 825
 						// Rename docs starting with $oldref with $newref
826
-						$listoffiles=dol_dir_list($conf->expedition->dir_output.'/sending/'.$newref, 'files', 1, '^'.preg_quote($oldref,'/'));
827
-						foreach($listoffiles as $fileentry)
826
+						$listoffiles = dol_dir_list($conf->expedition->dir_output.'/sending/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
827
+						foreach ($listoffiles as $fileentry)
828 828
 						{
829
-							$dirsource=$fileentry['name'];
830
-							$dirdest=preg_replace('/^'.preg_quote($oldref,'/').'/',$newref, $dirsource);
831
-							$dirsource=$fileentry['path'].'/'.$dirsource;
832
-							$dirdest=$fileentry['path'].'/'.$dirdest;
829
+							$dirsource = $fileentry['name'];
830
+							$dirdest = preg_replace('/^'.preg_quote($oldref, '/').'/', $newref, $dirsource);
831
+							$dirsource = $fileentry['path'].'/'.$dirsource;
832
+							$dirdest = $fileentry['path'].'/'.$dirdest;
833 833
 							@rename($dirsource, $dirdest);
834 834
 						}
835 835
 					}
@@ -838,26 +838,26 @@  discard block
 block discarded – undo
838 838
 		}
839 839
 
840 840
 		// Set new ref and current status
841
-		if (! $error)
841
+		if (!$error)
842 842
 		{
843 843
 			$this->ref = $numref;
844 844
 			$this->statut = 1;
845 845
 		}
846 846
 
847
-		if (! $error)
847
+		if (!$error)
848 848
 		{
849 849
 			$this->db->commit();
850 850
 			return 1;
851 851
 		}
852 852
 		else
853 853
 		{
854
-			foreach($this->errors as $errmsg)
854
+			foreach ($this->errors as $errmsg)
855 855
 			{
856 856
 				dol_syslog(get_class($this)."::valid ".$errmsg, LOG_ERR);
857
-				$this->error.=($this->error?', '.$errmsg:$errmsg);
857
+				$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
858 858
 			}
859 859
 			$this->db->rollback();
860
-			return -1*$error;
860
+			return -1 * $error;
861 861
 		}
862 862
 	}
863 863
 
@@ -881,14 +881,14 @@  discard block
 block discarded – undo
881 881
 				// Expedition validee
882 882
 				include_once DOL_DOCUMENT_ROOT.'/livraison/class/livraison.class.php';
883 883
 				$delivery = new Livraison($this->db);
884
-				$result=$delivery->create_from_sending($user, $this->id);
884
+				$result = $delivery->create_from_sending($user, $this->id);
885 885
 				if ($result > 0)
886 886
 				{
887 887
 					return $result;
888 888
 				}
889 889
 				else
890 890
 				{
891
-					$this->error=$delivery->error;
891
+					$this->error = $delivery->error;
892 892
 					return $result;
893 893
 				}
894 894
 			}
@@ -908,7 +908,7 @@  discard block
 block discarded – undo
908 908
 	 * @param	array	$array_options		extrafields array
909 909
 	 * @return	int							<0 if KO, >0 if OK
910 910
 	 */
911
-	function addline($entrepot_id, $id, $qty,$array_options=0)
911
+	function addline($entrepot_id, $id, $qty, $array_options = 0)
912 912
 	{
913 913
 		global $conf, $langs;
914 914
 
@@ -922,22 +922,22 @@  discard block
 block discarded – undo
922 922
 		$orderline = new OrderLine($this->db);
923 923
 		$orderline->fetch($id);
924 924
 
925
-		if (! empty($conf->stock->enabled) && ! empty($orderline->fk_product))
925
+		if (!empty($conf->stock->enabled) && !empty($orderline->fk_product))
926 926
 		{
927 927
 			$fk_product = $orderline->fk_product;
928 928
 
929
-			if (! ($entrepot_id > 0) && empty($conf->global->STOCK_WAREHOUSE_NOT_REQUIRED_FOR_SHIPMENTS))
929
+			if (!($entrepot_id > 0) && empty($conf->global->STOCK_WAREHOUSE_NOT_REQUIRED_FOR_SHIPMENTS))
930 930
 			{
931 931
 				$langs->load("errors");
932
-				$this->error=$langs->trans("ErrorWarehouseRequiredIntoShipmentLine");
932
+				$this->error = $langs->trans("ErrorWarehouseRequiredIntoShipmentLine");
933 933
 				return -1;
934 934
 			}
935 935
 
936 936
 			if ($conf->global->STOCK_MUST_BE_ENOUGH_FOR_SHIPMENT)
937 937
 			{
938 938
 				// Check must be done for stock of product into warehouse if $entrepot_id defined
939
-				$product=new Product($this->db);
940
-				$result=$product->fetch($fk_product);
939
+				$product = new Product($this->db);
940
+				$result = $product->fetch($fk_product);
941 941
 
942 942
 				if ($entrepot_id > 0) {
943 943
 					$product->load_stock('warehouseopen');
@@ -946,11 +946,11 @@  discard block
 block discarded – undo
946 946
 				else
947 947
 					$product_stock = $product->stock_reel;
948 948
 
949
-				$product_type=$product->type;
949
+				$product_type = $product->type;
950 950
 				if ($product_type == 0 && $product_stock < $qty)
951 951
 				{
952 952
 					$langs->load("errors");
953
-					$this->error=$langs->trans('ErrorStockIsNotEnoughToAddProductOnShipment', $product->ref);
953
+					$this->error = $langs->trans('ErrorStockIsNotEnoughToAddProductOnShipment', $product->ref);
954 954
 					$this->db->rollback();
955 955
 					return -3;
956 956
 				}
@@ -958,14 +958,14 @@  discard block
 block discarded – undo
958 958
 		}
959 959
 
960 960
 		// If product need a batch number, we should not have called this function but addline_batch instead.
961
-		if (! empty($conf->productbatch->enabled) && ! empty($orderline->fk_product) && ! empty($orderline->product_tobatch))
961
+		if (!empty($conf->productbatch->enabled) && !empty($orderline->fk_product) && !empty($orderline->product_tobatch))
962 962
 		{
963
-			$this->error='ADDLINE_WAS_CALLED_INSTEAD_OF_ADDLINEBATCH';
963
+			$this->error = 'ADDLINE_WAS_CALLED_INSTEAD_OF_ADDLINEBATCH';
964 964
 			return -4;
965 965
 		}
966 966
 
967 967
 		// extrafields
968
-		if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options)>0) // For avoid conflicts if trigger used
968
+		if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options) > 0) // For avoid conflicts if trigger used
969 969
 			$line->array_options = $array_options;
970 970
 
971 971
 		$this->lines[$num] = $line;
@@ -979,33 +979,33 @@  discard block
 block discarded – undo
979 979
 	 * @param	array		$array_options		extrafields array
980 980
 	 * @return	int						<0 if KO, >0 if OK
981 981
 	 */
982
-	function addline_batch($dbatch,$array_options=0)
982
+	function addline_batch($dbatch, $array_options = 0)
983 983
 	{
984 984
         // phpcs:enable
985
-		global $conf,$langs;
985
+		global $conf, $langs;
986 986
 
987 987
 		$num = count($this->lines);
988
-		if ($dbatch['qty']>0)
988
+		if ($dbatch['qty'] > 0)
989 989
 		{
990 990
 			$line = new ExpeditionLigne($this->db);
991
-			$tab=array();
991
+			$tab = array();
992 992
 			foreach ($dbatch['detail'] as $key=>$value)
993 993
 			{
994
-				if ($value['q']>0)
994
+				if ($value['q'] > 0)
995 995
 				{
996 996
 					// $value['q']=qty to move
997 997
 					// $value['id_batch']=id into llx_product_batch of record to move
998 998
 					//var_dump($value);
999 999
 
1000 1000
 					$linebatch = new ExpeditionLineBatch($this->db);
1001
-					$ret=$linebatch->fetchFromStock($value['id_batch']);	// load serial, sellby, eatby
1002
-					if ($ret<0)
1001
+					$ret = $linebatch->fetchFromStock($value['id_batch']); // load serial, sellby, eatby
1002
+					if ($ret < 0)
1003 1003
 					{
1004
-						$this->error=$linebatch->error;
1004
+						$this->error = $linebatch->error;
1005 1005
 						return -1;
1006 1006
 					}
1007
-					$linebatch->qty=$value['q'];
1008
-					$tab[]=$linebatch;
1007
+					$linebatch->qty = $value['q'];
1008
+					$tab[] = $linebatch;
1009 1009
 
1010 1010
 					if ($conf->global->STOCK_MUST_BE_ENOUGH_FOR_SHIPMENT)
1011 1011
 					{
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
 						if ($prod_batch->qty < $linebatch->qty)
1017 1017
 						{
1018 1018
 							$langs->load("errors");
1019
-							$this->errors[]=$langs->trans('ErrorStockIsNotEnoughToAddProductOnShipment', $prod_batch->fk_product);
1019
+							$this->errors[] = $langs->trans('ErrorStockIsNotEnoughToAddProductOnShipment', $prod_batch->fk_product);
1020 1020
 							dol_syslog(get_class($this)."::addline_batch error=Product ".$prod_batch->batch.": ".$this->errorsToString(), LOG_ERR);
1021 1021
 							$this->db->rollback();
1022 1022
 							return -1;
@@ -1029,10 +1029,10 @@  discard block
 block discarded – undo
1029 1029
 			$line->entrepot_id = $linebatch->entrepot_id;
1030 1030
 			$line->origin_line_id = $dbatch['ix_l'];
1031 1031
 			$line->qty = $dbatch['qty'];
1032
-			$line->detail_batch=$tab;
1032
+			$line->detail_batch = $tab;
1033 1033
 
1034 1034
 			// extrafields
1035
-			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options)>0) // For avoid conflicts if trigger used
1035
+			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options) > 0) // For avoid conflicts if trigger used
1036 1036
 				$line->array_options = $array_options;
1037 1037
 
1038 1038
 			//var_dump($line);
@@ -1048,32 +1048,32 @@  discard block
 block discarded – undo
1048 1048
 	 *  @param  int		$notrigger	    0=launch triggers after, 1=disable triggers
1049 1049
 	 *  @return int 			       	<0 if KO, >0 if OK
1050 1050
 	 */
1051
-	function update($user=null, $notrigger=0)
1051
+	function update($user = null, $notrigger = 0)
1052 1052
 	{
1053 1053
 		global $conf;
1054
-		$error=0;
1054
+		$error = 0;
1055 1055
 
1056 1056
 		// Clean parameters
1057 1057
 
1058
-		if (isset($this->ref)) $this->ref=trim($this->ref);
1059
-		if (isset($this->entity)) $this->entity=trim($this->entity);
1060
-		if (isset($this->ref_customer)) $this->ref_customer=trim($this->ref_customer);
1061
-		if (isset($this->socid)) $this->socid=trim($this->socid);
1062
-		if (isset($this->fk_user_author)) $this->fk_user_author=trim($this->fk_user_author);
1063
-		if (isset($this->fk_user_valid)) $this->fk_user_valid=trim($this->fk_user_valid);
1064
-		if (isset($this->fk_delivery_address)) $this->fk_delivery_address=trim($this->fk_delivery_address);
1065
-		if (isset($this->shipping_method_id)) $this->shipping_method_id=trim($this->shipping_method_id);
1066
-		if (isset($this->tracking_number)) $this->tracking_number=trim($this->tracking_number);
1067
-		if (isset($this->statut)) $this->statut=(int) $this->statut;
1068
-		if (isset($this->trueDepth)) $this->trueDepth=trim($this->trueDepth);
1069
-		if (isset($this->trueWidth)) $this->trueWidth=trim($this->trueWidth);
1070
-		if (isset($this->trueHeight)) $this->trueHeight=trim($this->trueHeight);
1071
-		if (isset($this->size_units)) $this->size_units=trim($this->size_units);
1072
-		if (isset($this->weight_units)) $this->weight_units=trim($this->weight_units);
1073
-		if (isset($this->trueWeight)) $this->weight=trim($this->trueWeight);
1074
-		if (isset($this->note_private)) $this->note=trim($this->note_private);
1075
-		if (isset($this->note_public)) $this->note=trim($this->note_public);
1076
-		if (isset($this->modelpdf)) $this->modelpdf=trim($this->modelpdf);
1058
+		if (isset($this->ref)) $this->ref = trim($this->ref);
1059
+		if (isset($this->entity)) $this->entity = trim($this->entity);
1060
+		if (isset($this->ref_customer)) $this->ref_customer = trim($this->ref_customer);
1061
+		if (isset($this->socid)) $this->socid = trim($this->socid);
1062
+		if (isset($this->fk_user_author)) $this->fk_user_author = trim($this->fk_user_author);
1063
+		if (isset($this->fk_user_valid)) $this->fk_user_valid = trim($this->fk_user_valid);
1064
+		if (isset($this->fk_delivery_address)) $this->fk_delivery_address = trim($this->fk_delivery_address);
1065
+		if (isset($this->shipping_method_id)) $this->shipping_method_id = trim($this->shipping_method_id);
1066
+		if (isset($this->tracking_number)) $this->tracking_number = trim($this->tracking_number);
1067
+		if (isset($this->statut)) $this->statut = (int) $this->statut;
1068
+		if (isset($this->trueDepth)) $this->trueDepth = trim($this->trueDepth);
1069
+		if (isset($this->trueWidth)) $this->trueWidth = trim($this->trueWidth);
1070
+		if (isset($this->trueHeight)) $this->trueHeight = trim($this->trueHeight);
1071
+		if (isset($this->size_units)) $this->size_units = trim($this->size_units);
1072
+		if (isset($this->weight_units)) $this->weight_units = trim($this->weight_units);
1073
+		if (isset($this->trueWeight)) $this->weight = trim($this->trueWeight);
1074
+		if (isset($this->note_private)) $this->note = trim($this->note_private);
1075
+		if (isset($this->note_public)) $this->note = trim($this->note_public);
1076
+		if (isset($this->modelpdf)) $this->modelpdf = trim($this->modelpdf);
1077 1077
 
1078 1078
 
1079 1079
 
@@ -1083,46 +1083,46 @@  discard block
 block discarded – undo
1083 1083
 		// Update request
1084 1084
 		$sql = "UPDATE ".MAIN_DB_PREFIX."expedition SET";
1085 1085
 
1086
-		$sql.= " tms=".(dol_strlen($this->tms)!=0 ? "'".$this->db->idate($this->tms)."'" : 'null').",";
1087
-		$sql.= " ref=".(isset($this->ref)?"'".$this->db->escape($this->ref)."'":"null").",";
1088
-		$sql.= " ref_customer=".(isset($this->ref_customer)?"'".$this->db->escape($this->ref_customer)."'":"null").",";
1089
-		$sql.= " fk_soc=".(isset($this->socid)?$this->socid:"null").",";
1090
-		$sql.= " date_creation=".(dol_strlen($this->date_creation)!=0 ? "'".$this->db->idate($this->date_creation)."'" : 'null').",";
1091
-		$sql.= " fk_user_author=".(isset($this->fk_user_author)?$this->fk_user_author:"null").",";
1092
-		$sql.= " date_valid=".(dol_strlen($this->date_valid)!=0 ? "'".$this->db->idate($this->date_valid)."'" : 'null').",";
1093
-		$sql.= " fk_user_valid=".(isset($this->fk_user_valid)?$this->fk_user_valid:"null").",";
1094
-		$sql.= " date_expedition=".(dol_strlen($this->date_expedition)!=0 ? "'".$this->db->idate($this->date_expedition)."'" : 'null').",";
1095
-		$sql.= " date_delivery=".(dol_strlen($this->date_delivery)!=0 ? "'".$this->db->idate($this->date_delivery)."'" : 'null').",";
1096
-		$sql.= " fk_address=".(isset($this->fk_delivery_address)?$this->fk_delivery_address:"null").",";
1097
-		$sql.= " fk_shipping_method=".((isset($this->shipping_method_id) && $this->shipping_method_id > 0)?$this->shipping_method_id:"null").",";
1098
-		$sql.= " tracking_number=".(isset($this->tracking_number)?"'".$this->db->escape($this->tracking_number)."'":"null").",";
1099
-		$sql.= " fk_statut=".(isset($this->statut)?$this->statut:"null").",";
1100
-		$sql.= " fk_projet=".(isset($this->fk_project)?$this->fk_project:"null").",";
1101
-		$sql.= " height=".(($this->trueHeight != '')?$this->trueHeight:"null").",";
1102
-		$sql.= " width=".(($this->trueWidth != '')?$this->trueWidth:"null").",";
1103
-		$sql.= " size_units=".(isset($this->size_units)?$this->size_units:"null").",";
1104
-		$sql.= " size=".(($this->trueDepth != '')?$this->trueDepth:"null").",";
1105
-		$sql.= " weight_units=".(isset($this->weight_units)?$this->weight_units:"null").",";
1106
-		$sql.= " weight=".(($this->trueWeight != '')?$this->trueWeight:"null").",";
1107
-		$sql.= " note_private=".(isset($this->note_private)?"'".$this->db->escape($this->note_private)."'":"null").",";
1108
-		$sql.= " note_public=".(isset($this->note_public)?"'".$this->db->escape($this->note_public)."'":"null").",";
1109
-		$sql.= " model_pdf=".(isset($this->modelpdf)?"'".$this->db->escape($this->modelpdf)."'":"null").",";
1110
-		$sql.= " entity=".$conf->entity;
1111
-
1112
-		$sql.= " WHERE rowid=".$this->id;
1086
+		$sql .= " tms=".(dol_strlen($this->tms) != 0 ? "'".$this->db->idate($this->tms)."'" : 'null').",";
1087
+		$sql .= " ref=".(isset($this->ref) ? "'".$this->db->escape($this->ref)."'" : "null").",";
1088
+		$sql .= " ref_customer=".(isset($this->ref_customer) ? "'".$this->db->escape($this->ref_customer)."'" : "null").",";
1089
+		$sql .= " fk_soc=".(isset($this->socid) ? $this->socid : "null").",";
1090
+		$sql .= " date_creation=".(dol_strlen($this->date_creation) != 0 ? "'".$this->db->idate($this->date_creation)."'" : 'null').",";
1091
+		$sql .= " fk_user_author=".(isset($this->fk_user_author) ? $this->fk_user_author : "null").",";
1092
+		$sql .= " date_valid=".(dol_strlen($this->date_valid) != 0 ? "'".$this->db->idate($this->date_valid)."'" : 'null').",";
1093
+		$sql .= " fk_user_valid=".(isset($this->fk_user_valid) ? $this->fk_user_valid : "null").",";
1094
+		$sql .= " date_expedition=".(dol_strlen($this->date_expedition) != 0 ? "'".$this->db->idate($this->date_expedition)."'" : 'null').",";
1095
+		$sql .= " date_delivery=".(dol_strlen($this->date_delivery) != 0 ? "'".$this->db->idate($this->date_delivery)."'" : 'null').",";
1096
+		$sql .= " fk_address=".(isset($this->fk_delivery_address) ? $this->fk_delivery_address : "null").",";
1097
+		$sql .= " fk_shipping_method=".((isset($this->shipping_method_id) && $this->shipping_method_id > 0) ? $this->shipping_method_id : "null").",";
1098
+		$sql .= " tracking_number=".(isset($this->tracking_number) ? "'".$this->db->escape($this->tracking_number)."'" : "null").",";
1099
+		$sql .= " fk_statut=".(isset($this->statut) ? $this->statut : "null").",";
1100
+		$sql .= " fk_projet=".(isset($this->fk_project) ? $this->fk_project : "null").",";
1101
+		$sql .= " height=".(($this->trueHeight != '') ? $this->trueHeight : "null").",";
1102
+		$sql .= " width=".(($this->trueWidth != '') ? $this->trueWidth : "null").",";
1103
+		$sql .= " size_units=".(isset($this->size_units) ? $this->size_units : "null").",";
1104
+		$sql .= " size=".(($this->trueDepth != '') ? $this->trueDepth : "null").",";
1105
+		$sql .= " weight_units=".(isset($this->weight_units) ? $this->weight_units : "null").",";
1106
+		$sql .= " weight=".(($this->trueWeight != '') ? $this->trueWeight : "null").",";
1107
+		$sql .= " note_private=".(isset($this->note_private) ? "'".$this->db->escape($this->note_private)."'" : "null").",";
1108
+		$sql .= " note_public=".(isset($this->note_public) ? "'".$this->db->escape($this->note_public)."'" : "null").",";
1109
+		$sql .= " model_pdf=".(isset($this->modelpdf) ? "'".$this->db->escape($this->modelpdf)."'" : "null").",";
1110
+		$sql .= " entity=".$conf->entity;
1111
+
1112
+		$sql .= " WHERE rowid=".$this->id;
1113 1113
 
1114 1114
 		$this->db->begin();
1115 1115
 
1116 1116
 		dol_syslog(get_class($this)."::update", LOG_DEBUG);
1117 1117
 		$resql = $this->db->query($sql);
1118
-		if (! $resql) { $error++; $this->errors[]="Error ".$this->db->lasterror(); }
1118
+		if (!$resql) { $error++; $this->errors[] = "Error ".$this->db->lasterror(); }
1119 1119
 
1120
-		if (! $error)
1120
+		if (!$error)
1121 1121
 		{
1122
-			if (! $notrigger)
1122
+			if (!$notrigger)
1123 1123
 			{
1124 1124
 				// Call trigger
1125
-				$result=$this->call_trigger('SHIPPING_MODIFY',$user);
1125
+				$result = $this->call_trigger('SHIPPING_MODIFY', $user);
1126 1126
 				if ($result < 0) { $error++; }
1127 1127
 				// End call triggers
1128 1128
 			}
@@ -1131,13 +1131,13 @@  discard block
 block discarded – undo
1131 1131
 		// Commit or rollback
1132 1132
 		if ($error)
1133 1133
 		{
1134
-			foreach($this->errors as $errmsg)
1134
+			foreach ($this->errors as $errmsg)
1135 1135
 			{
1136 1136
 				dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
1137
-				$this->error.=($this->error?', '.$errmsg:$errmsg);
1137
+				$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1138 1138
 			}
1139 1139
 			$this->db->rollback();
1140
-			return -1*$error;
1140
+			return -1 * $error;
1141 1141
 		}
1142 1142
 		else
1143 1143
 		{
@@ -1159,32 +1159,32 @@  discard block
 block discarded – undo
1159 1159
 		require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1160 1160
 		require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionbatch.class.php';
1161 1161
 
1162
-		$error=0;
1163
-		$this->error='';
1162
+		$error = 0;
1163
+		$this->error = '';
1164 1164
 
1165 1165
 		$this->db->begin();
1166 1166
 
1167 1167
 		// Add a protection to refuse deleting if shipment has at least one delivery
1168
-		$this->fetchObjectLinked($this->id, 'shipping', 0, 'delivery');	// Get deliveries linked to this shipment
1168
+		$this->fetchObjectLinked($this->id, 'shipping', 0, 'delivery'); // Get deliveries linked to this shipment
1169 1169
 		if (count($this->linkedObjectsIds) > 0)
1170 1170
 		{
1171
-			$this->error='ErrorThereIsSomeDeliveries';
1171
+			$this->error = 'ErrorThereIsSomeDeliveries';
1172 1172
 			$error++;
1173 1173
 		}
1174 1174
 
1175
-		if (! $error)
1175
+		if (!$error)
1176 1176
 		{
1177
-			if (! $notrigger)
1177
+			if (!$notrigger)
1178 1178
 			{
1179 1179
 				// Call trigger
1180
-				$result=$this->call_trigger('SHIPPING_DELETE',$user);
1180
+				$result = $this->call_trigger('SHIPPING_DELETE', $user);
1181 1181
 				if ($result < 0) { $error++; }
1182 1182
 				// End call triggers
1183 1183
 			}
1184 1184
 		}
1185 1185
 
1186 1186
 		// Stock control
1187
-		if (! $error && $conf->stock->enabled && $conf->global->STOCK_CALCULATE_ON_SHIPMENT && $this->statut > 0)
1187
+		if (!$error && $conf->stock->enabled && $conf->global->STOCK_CALCULATE_ON_SHIPMENT && $this->statut > 0)
1188 1188
 		{
1189 1189
 			require_once DOL_DOCUMENT_ROOT."/product/stock/class/mouvementstock.class.php";
1190 1190
 
@@ -1192,13 +1192,13 @@  discard block
 block discarded – undo
1192 1192
 
1193 1193
 			// Loop on each product line to add a stock movement
1194 1194
 			$sql = "SELECT cd.fk_product, cd.subprice, ed.qty, ed.fk_entrepot, ed.rowid as expeditiondet_id";
1195
-			$sql.= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
1196
-			$sql.= " ".MAIN_DB_PREFIX."expeditiondet as ed";
1197
-			$sql.= " WHERE ed.fk_expedition = ".$this->id;
1198
-			$sql.= " AND cd.rowid = ed.fk_origin_line";
1195
+			$sql .= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
1196
+			$sql .= " ".MAIN_DB_PREFIX."expeditiondet as ed";
1197
+			$sql .= " WHERE ed.fk_expedition = ".$this->id;
1198
+			$sql .= " AND cd.rowid = ed.fk_origin_line";
1199 1199
 
1200 1200
 			dol_syslog(get_class($this)."::delete select details", LOG_DEBUG);
1201
-			$resql=$this->db->query($sql);
1201
+			$resql = $this->db->query($sql);
1202 1202
 			if ($resql)
1203 1203
 			{
1204 1204
 				$cpt = $this->db->num_rows($resql);
@@ -1214,20 +1214,20 @@  discard block
 block discarded – undo
1214 1214
 					$lotArray = null;
1215 1215
 					if ($conf->productbatch->enabled)
1216 1216
 					{
1217
-						$lotArray = ExpeditionLineBatch::fetchAll($this->db,$obj->expeditiondet_id);
1218
-						if (! is_array($lotArray))
1217
+						$lotArray = ExpeditionLineBatch::fetchAll($this->db, $obj->expeditiondet_id);
1218
+						if (!is_array($lotArray))
1219 1219
 						{
1220
-							$error++;$this->errors[]="Error ".$this->db->lasterror();
1220
+							$error++; $this->errors[] = "Error ".$this->db->lasterror();
1221 1221
 						}
1222 1222
 					}
1223 1223
 					if (empty($lotArray)) {
1224 1224
 						// no lot/serial
1225 1225
 						// We increment stock of product (and sub-products)
1226 1226
 						// We use warehouse selected for each line
1227
-						$result=$mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $obj->qty, 0, $langs->trans("ShipmentDeletedInDolibarr", $this->ref));  // Price is set to 0, because we don't want to see WAP changed
1227
+						$result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $obj->qty, 0, $langs->trans("ShipmentDeletedInDolibarr", $this->ref)); // Price is set to 0, because we don't want to see WAP changed
1228 1228
 						if ($result < 0)
1229 1229
 						{
1230
-							$error++;$this->errors=$this->errors + $mouvS->errors;
1230
+							$error++; $this->errors = $this->errors + $mouvS->errors;
1231 1231
 							break;
1232 1232
 						}
1233 1233
 					}
@@ -1235,12 +1235,12 @@  discard block
 block discarded – undo
1235 1235
 					{
1236 1236
 						// We increment stock of batches
1237 1237
 						// We use warehouse selected for each line
1238
-						foreach($lotArray as $lot)
1238
+						foreach ($lotArray as $lot)
1239 1239
 						{
1240
-							$result=$mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $lot->qty, 0, $langs->trans("ShipmentDeletedInDolibarr", $this->ref), $lot->eatby, $lot->sellby, $lot->batch);  // Price is set to 0, because we don't want to see WAP changed
1240
+							$result = $mouvS->reception($user, $obj->fk_product, $obj->fk_entrepot, $lot->qty, 0, $langs->trans("ShipmentDeletedInDolibarr", $this->ref), $lot->eatby, $lot->sellby, $lot->batch); // Price is set to 0, because we don't want to see WAP changed
1241 1241
 							if ($result < 0)
1242 1242
 							{
1243
-								$error++;$this->errors=$this->errors + $mouvS->errors;
1243
+								$error++; $this->errors = $this->errors + $mouvS->errors;
1244 1244
 								break;
1245 1245
 							}
1246 1246
 						}
@@ -1250,41 +1250,41 @@  discard block
 block discarded – undo
1250 1250
 			}
1251 1251
 			else
1252 1252
 			{
1253
-				$error++;$this->errors[]="Error ".$this->db->lasterror();
1253
+				$error++; $this->errors[] = "Error ".$this->db->lasterror();
1254 1254
 			}
1255 1255
 		}
1256 1256
 
1257 1257
 		// delete batch expedition line
1258
-		if (! $error && $conf->productbatch->enabled)
1258
+		if (!$error && $conf->productbatch->enabled)
1259 1259
 		{
1260
-			if (ExpeditionLineBatch::deletefromexp($this->db,$this->id) < 0)
1260
+			if (ExpeditionLineBatch::deletefromexp($this->db, $this->id) < 0)
1261 1261
 			{
1262
-				$error++;$this->errors[]="Error ".$this->db->lasterror();
1262
+				$error++; $this->errors[] = "Error ".$this->db->lasterror();
1263 1263
 			}
1264 1264
 		}
1265 1265
 
1266
-		if (! $error)
1266
+		if (!$error)
1267 1267
 		{
1268 1268
 			$sql = "DELETE FROM ".MAIN_DB_PREFIX."expeditiondet";
1269
-			$sql.= " WHERE fk_expedition = ".$this->id;
1269
+			$sql .= " WHERE fk_expedition = ".$this->id;
1270 1270
 
1271
-			if ( $this->db->query($sql) )
1271
+			if ($this->db->query($sql))
1272 1272
 			{
1273 1273
 				// Delete linked object
1274 1274
 				$res = $this->deleteObjectLinked();
1275 1275
 				if ($res < 0) $error++;
1276 1276
 
1277
-				if (! $error)
1277
+				if (!$error)
1278 1278
 				{
1279 1279
 					$sql = "DELETE FROM ".MAIN_DB_PREFIX."expedition";
1280
-					$sql.= " WHERE rowid = ".$this->id;
1280
+					$sql .= " WHERE rowid = ".$this->id;
1281 1281
 
1282 1282
 					if ($this->db->query($sql))
1283 1283
 					{
1284
-						if (! empty($this->origin) && $this->origin_id > 0)
1284
+						if (!empty($this->origin) && $this->origin_id > 0)
1285 1285
 						{
1286 1286
 							$this->fetch_origin();
1287
-							$origin=$this->origin;
1287
+							$origin = $this->origin;
1288 1288
 							if ($this->$origin->statut == Commande::STATUS_SHIPMENTONPROCESS)     // If order source of shipment is "shipment in progress"
1289 1289
 							{
1290 1290
 								// Check if there is no more shipment. If not, we can move back status of order to "validated" instead of "shipment in progress"
@@ -1297,19 +1297,19 @@  discard block
 block discarded – undo
1297 1297
 							}
1298 1298
 						}
1299 1299
 
1300
-						if (! $error)
1300
+						if (!$error)
1301 1301
 						{
1302 1302
 							$this->db->commit();
1303 1303
 
1304 1304
 							// We delete PDFs
1305 1305
 							$ref = dol_sanitizeFileName($this->ref);
1306
-							if (! empty($conf->expedition->dir_output))
1306
+							if (!empty($conf->expedition->dir_output))
1307 1307
 							{
1308
-								$dir = $conf->expedition->dir_output . '/sending/' . $ref ;
1309
-								$file = $dir . '/' . $ref . '.pdf';
1308
+								$dir = $conf->expedition->dir_output.'/sending/'.$ref;
1309
+								$file = $dir.'/'.$ref.'.pdf';
1310 1310
 								if (file_exists($file))
1311 1311
 								{
1312
-									if (! dol_delete_file($file))
1312
+									if (!dol_delete_file($file))
1313 1313
 									{
1314 1314
 										return 0;
1315 1315
 									}
@@ -1318,7 +1318,7 @@  discard block
 block discarded – undo
1318 1318
 								{
1319 1319
 									if (!dol_delete_dir_recursive($dir))
1320 1320
 									{
1321
-										$this->error=$langs->trans("ErrorCanNotDeleteDir",$dir);
1321
+										$this->error = $langs->trans("ErrorCanNotDeleteDir", $dir);
1322 1322
 										return 0;
1323 1323
 									}
1324 1324
 								}
@@ -1334,21 +1334,21 @@  discard block
 block discarded – undo
1334 1334
 					}
1335 1335
 					else
1336 1336
 					{
1337
-						$this->error=$this->db->lasterror()." - sql=$sql";
1337
+						$this->error = $this->db->lasterror()." - sql=$sql";
1338 1338
 						$this->db->rollback();
1339 1339
 						return -3;
1340 1340
 					}
1341 1341
 				}
1342 1342
 				else
1343 1343
 				{
1344
-					$this->error=$this->db->lasterror()." - sql=$sql";
1344
+					$this->error = $this->db->lasterror()." - sql=$sql";
1345 1345
 					$this->db->rollback();
1346 1346
 					return -2;
1347 1347
 				}
1348 1348
 			}
1349 1349
 			else
1350 1350
 			{
1351
-				$this->error=$this->db->lasterror()." - sql=$sql";
1351
+				$this->error = $this->db->lasterror()." - sql=$sql";
1352 1352
 				$this->db->rollback();
1353 1353
 				return -1;
1354 1354
 			}
@@ -1373,17 +1373,17 @@  discard block
 block discarded – undo
1373 1373
 		// TODO: recuperer les champs du document associe a part
1374 1374
 
1375 1375
 		$sql = "SELECT cd.rowid, cd.fk_product, cd.label as custom_label, cd.description, cd.qty as qty_asked, cd.product_type";
1376
-		$sql.= ", cd.total_ht, cd.total_localtax1, cd.total_localtax2, cd.total_ttc, cd.total_tva";
1377
-		$sql.= ", cd.vat_src_code, cd.tva_tx, cd.localtax1_tx, cd.localtax2_tx, cd.localtax1_type, cd.localtax2_type, cd.info_bits, cd.price, cd.subprice, cd.remise_percent,cd.buy_price_ht as pa_ht";
1378
-		$sql.= ", cd.fk_multicurrency, cd.multicurrency_code, cd.multicurrency_subprice, cd.multicurrency_total_ht, cd.multicurrency_total_tva, cd.multicurrency_total_ttc";
1379
-		$sql.= ", ed.rowid as line_id, ed.qty as qty_shipped, ed.fk_origin_line, ed.fk_entrepot";
1380
-		$sql.= ", p.ref as product_ref, p.label as product_label, p.fk_product_type";
1381
-		$sql.= ", p.weight, p.weight_units, p.length, p.length_units, p.surface, p.surface_units, p.volume, p.volume_units, p.tobatch as product_tobatch";
1382
-		$sql.= " FROM ".MAIN_DB_PREFIX."expeditiondet as ed, ".MAIN_DB_PREFIX."commandedet as cd";
1383
-		$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = cd.fk_product";
1384
-		$sql.= " WHERE ed.fk_expedition = ".$this->id;
1385
-		$sql.= " AND ed.fk_origin_line = cd.rowid";
1386
-		$sql.= " ORDER BY cd.rang, ed.fk_origin_line";
1376
+		$sql .= ", cd.total_ht, cd.total_localtax1, cd.total_localtax2, cd.total_ttc, cd.total_tva";
1377
+		$sql .= ", cd.vat_src_code, cd.tva_tx, cd.localtax1_tx, cd.localtax2_tx, cd.localtax1_type, cd.localtax2_type, cd.info_bits, cd.price, cd.subprice, cd.remise_percent,cd.buy_price_ht as pa_ht";
1378
+		$sql .= ", cd.fk_multicurrency, cd.multicurrency_code, cd.multicurrency_subprice, cd.multicurrency_total_ht, cd.multicurrency_total_tva, cd.multicurrency_total_ttc";
1379
+		$sql .= ", ed.rowid as line_id, ed.qty as qty_shipped, ed.fk_origin_line, ed.fk_entrepot";
1380
+		$sql .= ", p.ref as product_ref, p.label as product_label, p.fk_product_type";
1381
+		$sql .= ", p.weight, p.weight_units, p.length, p.length_units, p.surface, p.surface_units, p.volume, p.volume_units, p.tobatch as product_tobatch";
1382
+		$sql .= " FROM ".MAIN_DB_PREFIX."expeditiondet as ed, ".MAIN_DB_PREFIX."commandedet as cd";
1383
+		$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = cd.fk_product";
1384
+		$sql .= " WHERE ed.fk_expedition = ".$this->id;
1385
+		$sql .= " AND ed.fk_origin_line = cd.rowid";
1386
+		$sql .= " ORDER BY cd.rang, ed.fk_origin_line";
1387 1387
 
1388 1388
 		dol_syslog(get_class($this)."::fetch_lines", LOG_DEBUG);
1389 1389
 		$resql = $this->db->query($sql);
@@ -1407,8 +1407,8 @@  discard block
 block discarded – undo
1407 1407
 				$obj = $this->db->fetch_object($resql);
1408 1408
 
1409 1409
 				if ($originline == $obj->fk_origin_line) {
1410
-					$line->entrepot_id       = 0; // entrepod_id in details_entrepot
1411
-					$line->qty_shipped    	+= $obj->qty_shipped;
1410
+					$line->entrepot_id = 0; // entrepod_id in details_entrepot
1411
+					$line->qty_shipped += $obj->qty_shipped;
1412 1412
 				} else {
1413 1413
 					$line = new ExpeditionLigne($this->db);
1414 1414
 					$line->entrepot_id    	= $obj->fk_entrepot;
@@ -1422,24 +1422,24 @@  discard block
 block discarded – undo
1422 1422
 				$line->details_entrepot[]     = $detail_entrepot;
1423 1423
 
1424 1424
 				$line->line_id          = $obj->line_id;
1425
-				$line->rowid            = $obj->line_id;    // TODO deprecated
1425
+				$line->rowid            = $obj->line_id; // TODO deprecated
1426 1426
 				$line->id               = $obj->line_id;
1427 1427
 
1428
-				$line->fk_origin     	= 'orderline';
1428
+				$line->fk_origin = 'orderline';
1429 1429
 				$line->fk_origin_line 	= $obj->fk_origin_line;
1430
-				$line->origin_line_id 	= $obj->fk_origin_line;	    // TODO deprecated
1430
+				$line->origin_line_id 	= $obj->fk_origin_line; // TODO deprecated
1431 1431
 
1432
-				$line->fk_expedition    = $this->id;                // id of parent
1432
+				$line->fk_expedition    = $this->id; // id of parent
1433 1433
 
1434 1434
 				$line->product_type     = $obj->product_type;
1435 1435
 				$line->fk_product     	= $obj->fk_product;
1436 1436
 				$line->fk_product_type	= $obj->fk_product_type;
1437
-				$line->ref				= $obj->product_ref;		// TODO deprecated
1438
-				$line->product_ref		= $obj->product_ref;
1439
-				$line->product_label	= $obj->product_label;
1440
-				$line->libelle        	= $obj->product_label;		// TODO deprecated
1441
-				$line->product_tobatch  = $obj->product_tobatch;
1442
-				$line->label			= $obj->custom_label;
1437
+				$line->ref = $obj->product_ref; // TODO deprecated
1438
+				$line->product_ref = $obj->product_ref;
1439
+				$line->product_label = $obj->product_label;
1440
+				$line->libelle        	= $obj->product_label; // TODO deprecated
1441
+				$line->product_tobatch = $obj->product_tobatch;
1442
+				$line->label = $obj->custom_label;
1443 1443
 				$line->description    	= $obj->description;
1444 1444
 				$line->qty_asked      	= $obj->qty_asked;
1445 1445
 				$line->weight         	= $obj->weight;
@@ -1447,44 +1447,44 @@  discard block
 block discarded – undo
1447 1447
 				$line->length         	= $obj->length;
1448 1448
 				$line->length_units   	= $obj->length_units;
1449 1449
 				$line->surface        	= $obj->surface;
1450
-				$line->surface_units   	= $obj->surface_units;
1450
+				$line->surface_units = $obj->surface_units;
1451 1451
 				$line->volume         	= $obj->volume;
1452 1452
 				$line->volume_units   	= $obj->volume_units;
1453 1453
 
1454
-				$line->pa_ht 			= $obj->pa_ht;
1454
+				$line->pa_ht = $obj->pa_ht;
1455 1455
 
1456 1456
 				// Local taxes
1457
-				$localtax_array=array(0=>$obj->localtax1_type, 1=>$obj->localtax1_tx, 2=>$obj->localtax2_type, 3=>$obj->localtax2_tx);
1457
+				$localtax_array = array(0=>$obj->localtax1_type, 1=>$obj->localtax1_tx, 2=>$obj->localtax2_type, 3=>$obj->localtax2_tx);
1458 1458
 				$localtax1_tx = get_localtax($obj->tva_tx, 1, $this->thirdparty);
1459 1459
 				$localtax2_tx = get_localtax($obj->tva_tx, 2, $this->thirdparty);
1460 1460
 
1461 1461
 				// For invoicing
1462
-				$tabprice = calcul_price_total($obj->qty_shipped, $obj->subprice, $obj->remise_percent, $obj->tva_tx, $localtax1_tx, $localtax2_tx, 0, 'HT', $obj->info_bits, $obj->fk_product_type, $mysoc, $localtax_array);	// We force type to 0
1463
-				$line->desc	         	= $obj->description;		// We need ->desc because some code into CommonObject use desc (property defined for other elements)
1464
-				$line->qty 				= $line->qty_shipped;
1465
-				$line->total_ht			= $tabprice[0];
1462
+				$tabprice = calcul_price_total($obj->qty_shipped, $obj->subprice, $obj->remise_percent, $obj->tva_tx, $localtax1_tx, $localtax2_tx, 0, 'HT', $obj->info_bits, $obj->fk_product_type, $mysoc, $localtax_array); // We force type to 0
1463
+				$line->desc = $obj->description; // We need ->desc because some code into CommonObject use desc (property defined for other elements)
1464
+				$line->qty = $line->qty_shipped;
1465
+				$line->total_ht = $tabprice[0];
1466 1466
 				$line->total_localtax1 	= $tabprice[9];
1467 1467
 				$line->total_localtax2 	= $tabprice[10];
1468 1468
 				$line->total_ttc	 	= $tabprice[2];
1469 1469
 				$line->total_tva	 	= $tabprice[1];
1470
-				$line->vat_src_code	 	= $obj->vat_src_code;
1471
-				$line->tva_tx 		 	= $obj->tva_tx;
1470
+				$line->vat_src_code = $obj->vat_src_code;
1471
+				$line->tva_tx = $obj->tva_tx;
1472 1472
 				$line->localtax1_tx 	= $obj->localtax1_tx;
1473 1473
 				$line->localtax2_tx 	= $obj->localtax2_tx;
1474
-				$line->info_bits        = $obj->info_bits;
1475
-				$line->price			= $obj->price;
1476
-				$line->subprice			= $obj->subprice;
1477
-				$line->remise_percent	= $obj->remise_percent;
1474
+				$line->info_bits = $obj->info_bits;
1475
+				$line->price = $obj->price;
1476
+				$line->subprice = $obj->subprice;
1477
+				$line->remise_percent = $obj->remise_percent;
1478 1478
 
1479
-				$this->total_ht+= $tabprice[0];
1480
-				$this->total_tva+= $tabprice[1];
1481
-				$this->total_ttc+= $tabprice[2];
1482
-				$this->total_localtax1+= $tabprice[9];
1483
-				$this->total_localtax2+= $tabprice[10];
1479
+				$this->total_ht += $tabprice[0];
1480
+				$this->total_tva += $tabprice[1];
1481
+				$this->total_ttc += $tabprice[2];
1482
+				$this->total_localtax1 += $tabprice[9];
1483
+				$this->total_localtax2 += $tabprice[10];
1484 1484
 
1485 1485
 				// Multicurrency
1486
-				$this->fk_multicurrency 		= $obj->fk_multicurrency;
1487
-				$this->multicurrency_code 		= $obj->multicurrency_code;
1486
+				$this->fk_multicurrency = $obj->fk_multicurrency;
1487
+				$this->multicurrency_code = $obj->multicurrency_code;
1488 1488
 				$this->multicurrency_subprice 	= $obj->multicurrency_subprice;
1489 1489
 				$this->multicurrency_total_ht 	= $obj->multicurrency_total_ht;
1490 1490
 				$this->multicurrency_total_tva 	= $obj->multicurrency_total_tva;
@@ -1496,7 +1496,7 @@  discard block
 block discarded – undo
1496 1496
 				}
1497 1497
 
1498 1498
 				// Detail of batch
1499
-				if (! empty($conf->productbatch->enabled) && $obj->line_id > 0 && $obj->product_tobatch > 0)
1499
+				if (!empty($conf->productbatch->enabled) && $obj->line_id > 0 && $obj->product_tobatch > 0)
1500 1500
 				{
1501 1501
 					require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionbatch.class.php';
1502 1502
 
@@ -1521,7 +1521,7 @@  discard block
 block discarded – undo
1521 1521
 				}
1522 1522
 				else
1523 1523
 				{
1524
-					$line->total_ht			+= $tabprice[0];
1524
+					$line->total_ht += $tabprice[0];
1525 1525
 					$line->total_localtax1 	+= $tabprice[9];
1526 1526
 					$line->total_localtax2 	+= $tabprice[10];
1527 1527
 					$line->total_ttc	 	+= $tabprice[2];
@@ -1536,7 +1536,7 @@  discard block
 block discarded – undo
1536 1536
 		}
1537 1537
 		else
1538 1538
 		{
1539
-			$this->error=$this->db->error();
1539
+			$this->error = $this->db->error();
1540 1540
 			return -3;
1541 1541
 		}
1542 1542
 	}
@@ -1556,7 +1556,7 @@  discard block
 block discarded – undo
1556 1556
 		{
1557 1557
 			$this->db->begin();
1558 1558
 
1559
-			$line=new ExpeditionLigne($this->db);
1559
+			$line = new ExpeditionLigne($this->db);
1560 1560
 
1561 1561
 			// For triggers
1562 1562
 			$line->fetch($lineid);
@@ -1576,7 +1576,7 @@  discard block
 block discarded – undo
1576 1576
 		}
1577 1577
 		else
1578 1578
 		{
1579
-			$this->error='ErrorDeleteLineNotAllowedByObjectStatus';
1579
+			$this->error = 'ErrorDeleteLineNotAllowedByObjectStatus';
1580 1580
 			return -2;
1581 1581
 		}
1582 1582
 	}
@@ -1593,13 +1593,13 @@  discard block
 block discarded – undo
1593 1593
 	 *  @param      int     	$save_lastsearch_value		-1=Auto, 0=No save of lastsearch_values when clicking, 1=Save lastsearch_values whenclicking
1594 1594
 	 *	@return     string          						String with URL
1595 1595
 	 */
1596
-	function getNomUrl($withpicto=0, $option='', $max=0, $short=0, $notooltip=0, $save_lastsearch_value=-1)
1596
+	function getNomUrl($withpicto = 0, $option = '', $max = 0, $short = 0, $notooltip = 0, $save_lastsearch_value = -1)
1597 1597
 	{
1598 1598
 		global $langs;
1599 1599
 
1600
-		$result='';
1601
-		$label = '<u>' . $langs->trans("ShowSending") . '</u>';
1602
-		$label .= '<br><b>' . $langs->trans('Ref') . ':</b> '.$this->ref;
1600
+		$result = '';
1601
+		$label = '<u>'.$langs->trans("ShowSending").'</u>';
1602
+		$label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
1603 1603
 		$label .= '<br><b>'.$langs->trans('RefCustomer').':</b> '.($this->ref_customer ? $this->ref_customer : $this->ref_client);
1604 1604
 
1605 1605
 		$url = DOL_URL_ROOT.'/expedition/card.php?id='.$this->id;
@@ -1609,29 +1609,29 @@  discard block
 block discarded – undo
1609 1609
 		if ($option !== 'nolink')
1610 1610
 		{
1611 1611
 			// Add param to save lastsearch_values or not
1612
-			$add_save_lastsearch_values=($save_lastsearch_value == 1 ? 1 : 0);
1613
-			if ($save_lastsearch_value == -1 && preg_match('/list\.php/',$_SERVER["PHP_SELF"])) $add_save_lastsearch_values=1;
1614
-			if ($add_save_lastsearch_values) $url.='&save_lastsearch_values=1';
1612
+			$add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1613
+			if ($save_lastsearch_value == -1 && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) $add_save_lastsearch_values = 1;
1614
+			if ($add_save_lastsearch_values) $url .= '&save_lastsearch_values=1';
1615 1615
 		}
1616 1616
 
1617
-		$linkclose='';
1617
+		$linkclose = '';
1618 1618
 		if (empty($notooltip))
1619 1619
 		{
1620
-			if (! empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER))
1620
+			if (!empty($conf->global->MAIN_OPTIMIZEFORTEXTBROWSER))
1621 1621
 			{
1622
-				$label=$langs->trans("ShowSending");
1623
-				$linkclose.=' alt="'.dol_escape_htmltag($label, 1).'"';
1622
+				$label = $langs->trans("ShowSending");
1623
+				$linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
1624 1624
 			}
1625
-			$linkclose.= ' title="'.dol_escape_htmltag($label, 1).'"';
1626
-			$linkclose.=' class="classfortooltip"';
1625
+			$linkclose .= ' title="'.dol_escape_htmltag($label, 1).'"';
1626
+			$linkclose .= ' class="classfortooltip"';
1627 1627
 		}
1628 1628
 
1629 1629
 		$linkstart = '<a href="'.$url.'" title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip">';
1630
-		$linkend='</a>';
1630
+		$linkend = '</a>';
1631 1631
 
1632 1632
 		$result .= $linkstart;
1633
-		if ($withpicto) $result.=img_object(($notooltip?'':$label), $this->picto, ($notooltip?(($withpicto != 2) ? 'class="paddingright"' : ''):'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip?0:1);
1634
-		if ($withpicto != 2) $result.= $this->ref;
1633
+		if ($withpicto) $result .= img_object(($notooltip ? '' : $label), $this->picto, ($notooltip ? (($withpicto != 2) ? 'class="paddingright"' : '') : 'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
1634
+		if ($withpicto != 2) $result .= $this->ref;
1635 1635
 		$result .= $linkend;
1636 1636
 
1637 1637
 		return $result;
@@ -1643,9 +1643,9 @@  discard block
 block discarded – undo
1643 1643
 	 *	@param      int		$mode      	0=Long label, 1=Short label, 2=Picto + Short label, 3=Picto, 4=Picto + Long label, 5=Short label + Picto
1644 1644
 	 *	@return     string      		Libelle
1645 1645
 	 */
1646
-	function getLibStatut($mode=0)
1646
+	function getLibStatut($mode = 0)
1647 1647
 	{
1648
-		return $this->LibStatut($this->statut,$mode);
1648
+		return $this->LibStatut($this->statut, $mode);
1649 1649
 	}
1650 1650
 
1651 1651
     // phpcs:disable PEAR.NamingConventions.ValidFunctionName.NotCamelCaps
@@ -1656,40 +1656,40 @@  discard block
 block discarded – undo
1656 1656
 	 * @param      int		$mode       0=Long label, 1=Short label, 2=Picto + Short label, 3=Picto, 4=Picto + Long label, 5=Short label + Picto
1657 1657
 	 * @return     string				Label of status
1658 1658
 	 */
1659
-	function LibStatut($statut,$mode)
1659
+	function LibStatut($statut, $mode)
1660 1660
 	{
1661 1661
         // phpcs:enable
1662 1662
 		global $langs;
1663 1663
 
1664
-		if ($mode==0)
1664
+		if ($mode == 0)
1665 1665
 		{
1666
-			if ($statut==0) return $langs->trans($this->statuts[$statut]);
1667
-			elseif ($statut==1) return $langs->trans($this->statuts[$statut]);
1668
-			elseif ($statut==2) return $langs->trans($this->statuts[$statut]);
1666
+			if ($statut == 0) return $langs->trans($this->statuts[$statut]);
1667
+			elseif ($statut == 1) return $langs->trans($this->statuts[$statut]);
1668
+			elseif ($statut == 2) return $langs->trans($this->statuts[$statut]);
1669 1669
 		}
1670
-		elseif ($mode==1)
1670
+		elseif ($mode == 1)
1671 1671
 		{
1672
-			if ($statut==0) return $langs->trans($this->statutshorts[$statut]);
1673
-			elseif ($statut==1) return $langs->trans($this->statutshorts[$statut]);
1674
-			elseif ($statut==2) return $langs->trans($this->statutshorts[$statut]);
1672
+			if ($statut == 0) return $langs->trans($this->statutshorts[$statut]);
1673
+			elseif ($statut == 1) return $langs->trans($this->statutshorts[$statut]);
1674
+			elseif ($statut == 2) return $langs->trans($this->statutshorts[$statut]);
1675 1675
 		}
1676 1676
 		elseif ($mode == 3)
1677 1677
 		{
1678
-			if ($statut==0) return img_picto($langs->trans($this->statuts[$statut]),'statut0');
1679
-			elseif ($statut==1) return img_picto($langs->trans($this->statuts[$statut]),'statut4');
1680
-			elseif ($statut==2) return img_picto($langs->trans($this->statuts[$statut]),'statut6');
1678
+			if ($statut == 0) return img_picto($langs->trans($this->statuts[$statut]), 'statut0');
1679
+			elseif ($statut == 1) return img_picto($langs->trans($this->statuts[$statut]), 'statut4');
1680
+			elseif ($statut == 2) return img_picto($langs->trans($this->statuts[$statut]), 'statut6');
1681 1681
 		}
1682 1682
 		elseif ($mode == 4)
1683 1683
 		{
1684
-			if ($statut==0) return img_picto($langs->trans($this->statuts[$statut]),'statut0').' '.$langs->trans($this->statuts[$statut]);
1685
-			elseif ($statut==1) return img_picto($langs->trans($this->statuts[$statut]),'statut4').' '.$langs->trans($this->statuts[$statut]);
1686
-			elseif ($statut==2) return img_picto($langs->trans($this->statuts[$statut]),'statut6').' '.$langs->trans($this->statuts[$statut]);
1684
+			if ($statut == 0) return img_picto($langs->trans($this->statuts[$statut]), 'statut0').' '.$langs->trans($this->statuts[$statut]);
1685
+			elseif ($statut == 1) return img_picto($langs->trans($this->statuts[$statut]), 'statut4').' '.$langs->trans($this->statuts[$statut]);
1686
+			elseif ($statut == 2) return img_picto($langs->trans($this->statuts[$statut]), 'statut6').' '.$langs->trans($this->statuts[$statut]);
1687 1687
 		}
1688 1688
 		elseif ($mode == 5)
1689 1689
 		{
1690
-			if ($statut==0) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut0');
1691
-			elseif ($statut==1) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut4');
1692
-			elseif ($statut==2) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut6');
1690
+			if ($statut == 0) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]), 'statut0');
1691
+			elseif ($statut == 1) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]), 'statut4');
1692
+			elseif ($statut == 2) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]), 'statut6');
1693 1693
 		}
1694 1694
 	}
1695 1695
 
@@ -1704,7 +1704,7 @@  discard block
 block discarded – undo
1704 1704
 	{
1705 1705
 		global $langs;
1706 1706
 
1707
-		$now=dol_now();
1707
+		$now = dol_now();
1708 1708
 
1709 1709
 		dol_syslog(get_class($this)."::initAsSpecimen");
1710 1710
 
@@ -1712,8 +1712,8 @@  discard block
 block discarded – undo
1712 1712
 		$num_prods = 0;
1713 1713
 		$prodids = array();
1714 1714
 		$sql = "SELECT rowid";
1715
-		$sql.= " FROM ".MAIN_DB_PREFIX."product";
1716
-		$sql.= " WHERE entity IN (".getEntity('product').")";
1715
+		$sql .= " FROM ".MAIN_DB_PREFIX."product";
1716
+		$sql .= " WHERE entity IN (".getEntity('product').")";
1717 1717
 		$resql = $this->db->query($sql);
1718 1718
 		if ($resql)
1719 1719
 		{
@@ -1727,20 +1727,20 @@  discard block
 block discarded – undo
1727 1727
 			}
1728 1728
 		}
1729 1729
 
1730
-		$order=new Commande($this->db);
1730
+		$order = new Commande($this->db);
1731 1731
 		$order->initAsSpecimen();
1732 1732
 
1733 1733
 		// Initialise parametres
1734
-		$this->id=0;
1734
+		$this->id = 0;
1735 1735
 		$this->ref = 'SPECIMEN';
1736
-		$this->specimen=1;
1736
+		$this->specimen = 1;
1737 1737
 		$this->statut               = 1;
1738 1738
 		$this->livraison_id         = 0;
1739 1739
 		$this->date                 = $now;
1740 1740
 		$this->date_creation        = $now;
1741 1741
 		$this->date_valid           = $now;
1742 1742
 		$this->date_delivery        = $now;
1743
-		$this->date_expedition      = $now + 24*3600;
1743
+		$this->date_expedition      = $now + 24 * 3600;
1744 1744
 
1745 1745
 		$this->entrepot_id          = 0;
1746 1746
 		$this->fk_delivery_address  = 0;
@@ -1752,22 +1752,22 @@  discard block
 block discarded – undo
1752 1752
 		$this->origin_id            = 1;
1753 1753
 		$this->origin               = 'commande';
1754 1754
 
1755
-		$this->note_private			= 'Private note';
1756
-		$this->note_public			= 'Public note';
1755
+		$this->note_private = 'Private note';
1756
+		$this->note_public = 'Public note';
1757 1757
 
1758 1758
 		$nbp = 5;
1759 1759
 		$xnbp = 0;
1760 1760
 		while ($xnbp < $nbp)
1761 1761
 		{
1762
-			$line=new ExpeditionLigne($this->db);
1763
-			$line->desc=$langs->trans("Description")." ".$xnbp;
1764
-			$line->libelle=$langs->trans("Description")." ".$xnbp;
1765
-			$line->qty=10;
1766
-			$line->qty_asked=5;
1767
-			$line->qty_shipped=4;
1768
-			$line->fk_product=$this->commande->lines[$xnbp]->fk_product;
1769
-
1770
-			$this->lines[]=$line;
1762
+			$line = new ExpeditionLigne($this->db);
1763
+			$line->desc = $langs->trans("Description")." ".$xnbp;
1764
+			$line->libelle = $langs->trans("Description")." ".$xnbp;
1765
+			$line->qty = 10;
1766
+			$line->qty_asked = 5;
1767
+			$line->qty_shipped = 4;
1768
+			$line->fk_product = $this->commande->lines[$xnbp]->fk_product;
1769
+
1770
+			$this->lines[] = $line;
1771 1771
 			$xnbp++;
1772 1772
 		}
1773 1773
 	}
@@ -1786,11 +1786,11 @@  discard block
 block discarded – undo
1786 1786
 		if ($user->rights->expedition->creer)
1787 1787
 		{
1788 1788
 			$sql = "UPDATE ".MAIN_DB_PREFIX."expedition";
1789
-			$sql.= " SET date_delivery = ".($date_livraison ? "'".$this->db->idate($date_livraison)."'" : 'null');
1790
-			$sql.= " WHERE rowid = ".$this->id;
1789
+			$sql .= " SET date_delivery = ".($date_livraison ? "'".$this->db->idate($date_livraison)."'" : 'null');
1790
+			$sql .= " WHERE rowid = ".$this->id;
1791 1791
 
1792 1792
 			dol_syslog(get_class($this)."::set_date_livraison", LOG_DEBUG);
1793
-			$resql=$this->db->query($sql);
1793
+			$resql = $this->db->query($sql);
1794 1794
 			if ($resql)
1795 1795
 			{
1796 1796
 				$this->date_delivery = $date_livraison;
@@ -1798,7 +1798,7 @@  discard block
 block discarded – undo
1798 1798
 			}
1799 1799
 			else
1800 1800
 			{
1801
-				$this->error=$this->db->error();
1801
+				$this->error = $this->db->error();
1802 1802
 				return -1;
1803 1803
 			}
1804 1804
 		}
@@ -1821,17 +1821,17 @@  discard block
 block discarded – undo
1821 1821
 		$this->meths = array();
1822 1822
 
1823 1823
 		$sql = "SELECT em.rowid, em.code, em.libelle";
1824
-		$sql.= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1825
-		$sql.= " WHERE em.active = 1";
1826
-		$sql.= " ORDER BY em.libelle ASC";
1824
+		$sql .= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1825
+		$sql .= " WHERE em.active = 1";
1826
+		$sql .= " ORDER BY em.libelle ASC";
1827 1827
 
1828 1828
 		$resql = $this->db->query($sql);
1829 1829
 		if ($resql)
1830 1830
 		{
1831 1831
 			while ($obj = $this->db->fetch_object($resql))
1832 1832
 			{
1833
-				$label=$langs->trans('SendingMethod'.$obj->code);
1834
-				$this->meths[$obj->rowid] = ($label != 'SendingMethod'.$obj->code?$label:$obj->libelle);
1833
+				$label = $langs->trans('SendingMethod'.$obj->code);
1834
+				$this->meths[$obj->rowid] = ($label != 'SendingMethod'.$obj->code ? $label : $obj->libelle);
1835 1835
 			}
1836 1836
 		}
1837 1837
 	}
@@ -1843,17 +1843,17 @@  discard block
 block discarded – undo
1843 1843
 	 *  @param  id      $id     only this carrier, all if none
1844 1844
 	 *  @return void
1845 1845
 	 */
1846
-	function list_delivery_methods($id='')
1846
+	function list_delivery_methods($id = '')
1847 1847
 	{
1848 1848
         // phpcs:enable
1849 1849
 		global $langs;
1850 1850
 
1851 1851
 		$this->listmeths = array();
1852
-		$i=0;
1852
+		$i = 0;
1853 1853
 
1854 1854
 		$sql = "SELECT em.rowid, em.code, em.libelle, em.description, em.tracking, em.active";
1855
-		$sql.= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1856
-		if ($id!='') $sql.= " WHERE em.rowid=".$id;
1855
+		$sql .= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1856
+		if ($id != '') $sql .= " WHERE em.rowid=".$id;
1857 1857
 
1858 1858
 		$resql = $this->db->query($sql);
1859 1859
 		if ($resql)
@@ -1862,8 +1862,8 @@  discard block
 block discarded – undo
1862 1862
 			{
1863 1863
 				$this->listmeths[$i]['rowid'] = $obj->rowid;
1864 1864
 				$this->listmeths[$i]['code'] = $obj->code;
1865
-				$label=$langs->trans('SendingMethod'.$obj->code);
1866
-				$this->listmeths[$i]['libelle'] = ($label != 'SendingMethod'.$obj->code?$label:$obj->libelle);
1865
+				$label = $langs->trans('SendingMethod'.$obj->code);
1866
+				$this->listmeths[$i]['libelle'] = ($label != 'SendingMethod'.$obj->code ? $label : $obj->libelle);
1867 1867
 				$this->listmeths[$i]['description'] = $obj->description;
1868 1868
 				$this->listmeths[$i]['tracking'] = $obj->tracking;
1869 1869
 				$this->listmeths[$i]['active'] = $obj->active;
@@ -1880,26 +1880,26 @@  discard block
 block discarded – undo
1880 1880
 	 *
1881 1881
 	 *  @return void
1882 1882
 	 */
1883
-	function update_delivery_method($id='')
1883
+	function update_delivery_method($id = '')
1884 1884
 	{
1885 1885
         // phpcs:enable
1886
-		if ($id=='')
1886
+		if ($id == '')
1887 1887
 		{
1888 1888
 			$sql = "INSERT INTO ".MAIN_DB_PREFIX."c_shipment_mode (code, libelle, description, tracking)";
1889
-			$sql.=" VALUES ('".$this->db->escape($this->update['code'])."','".$this->db->escape($this->update['libelle'])."','".$this->db->escape($this->update['description'])."','".$this->db->escape($this->update['tracking'])."')";
1889
+			$sql .= " VALUES ('".$this->db->escape($this->update['code'])."','".$this->db->escape($this->update['libelle'])."','".$this->db->escape($this->update['description'])."','".$this->db->escape($this->update['tracking'])."')";
1890 1890
 			$resql = $this->db->query($sql);
1891 1891
 		}
1892 1892
 		else
1893 1893
 		{
1894 1894
 			$sql = "UPDATE ".MAIN_DB_PREFIX."c_shipment_mode SET";
1895
-			$sql.= " code='".$this->db->escape($this->update['code'])."'";
1896
-			$sql.= ",libelle='".$this->db->escape($this->update['libelle'])."'";
1897
-			$sql.= ",description='".$this->db->escape($this->update['description'])."'";
1898
-			$sql.= ",tracking='".$this->db->escape($this->update['tracking'])."'";
1899
-			$sql.= " WHERE rowid=".$id;
1895
+			$sql .= " code='".$this->db->escape($this->update['code'])."'";
1896
+			$sql .= ",libelle='".$this->db->escape($this->update['libelle'])."'";
1897
+			$sql .= ",description='".$this->db->escape($this->update['description'])."'";
1898
+			$sql .= ",tracking='".$this->db->escape($this->update['tracking'])."'";
1899
+			$sql .= " WHERE rowid=".$id;
1900 1900
 			$resql = $this->db->query($sql);
1901 1901
 		}
1902
-		if ($resql < 0) dol_print_error($this->db,'');
1902
+		if ($resql < 0) dol_print_error($this->db, '');
1903 1903
 	}
1904 1904
 
1905 1905
     // phpcs:disable PEAR.NamingConventions.ValidFunctionName.NotCamelCaps
@@ -1914,7 +1914,7 @@  discard block
 block discarded – undo
1914 1914
 	{
1915 1915
         // phpcs:enable
1916 1916
 		$sql = 'UPDATE '.MAIN_DB_PREFIX.'c_shipment_mode SET active=1';
1917
-		$sql.= ' WHERE rowid='.$id;
1917
+		$sql .= ' WHERE rowid='.$id;
1918 1918
 
1919 1919
 		$resql = $this->db->query($sql);
1920 1920
 	}
@@ -1931,7 +1931,7 @@  discard block
 block discarded – undo
1931 1931
 	{
1932 1932
         // phpcs:enable
1933 1933
 		$sql = 'UPDATE '.MAIN_DB_PREFIX.'c_shipment_mode SET active=0';
1934
-		$sql.= ' WHERE rowid='.$id;
1934
+		$sql .= ' WHERE rowid='.$id;
1935 1935
 
1936 1936
 		$resql = $this->db->query($sql);
1937 1937
 	}
@@ -1943,13 +1943,13 @@  discard block
 block discarded – undo
1943 1943
 	 * @param	string	$value		Value
1944 1944
 	 * @return	void
1945 1945
 	 */
1946
-	function getUrlTrackingStatus($value='')
1946
+	function getUrlTrackingStatus($value = '')
1947 1947
 	{
1948
-		if (! empty($this->shipping_method_id))
1948
+		if (!empty($this->shipping_method_id))
1949 1949
 		{
1950 1950
 			$sql = "SELECT em.code, em.tracking";
1951
-			$sql.= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1952
-			$sql.= " WHERE em.rowid = ".$this->shipping_method_id;
1951
+			$sql .= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1952
+			$sql .= " WHERE em.rowid = ".$this->shipping_method_id;
1953 1953
 
1954 1954
 			$resql = $this->db->query($sql);
1955 1955
 			if ($resql)
@@ -1964,7 +1964,7 @@  discard block
 block discarded – undo
1964 1964
 		if (!empty($tracking) && !empty($value))
1965 1965
 		{
1966 1966
 			$url = str_replace('{TRACKID}', $value, $tracking);
1967
-			$this->tracking_url = sprintf('<a target="_blank" href="%s">'.($value?$value:'url').'</a>',$url,$url);
1967
+			$this->tracking_url = sprintf('<a target="_blank" href="%s">'.($value ? $value : 'url').'</a>', $url, $url);
1968 1968
 		}
1969 1969
 		else
1970 1970
 		{
@@ -1979,16 +1979,16 @@  discard block
 block discarded – undo
1979 1979
 	 */
1980 1980
 	function setClosed()
1981 1981
 	{
1982
-		global $conf,$langs,$user;
1982
+		global $conf, $langs, $user;
1983 1983
 
1984
-		$error=0;
1984
+		$error = 0;
1985 1985
 
1986 1986
 		$this->db->begin();
1987 1987
 
1988 1988
 		$sql = 'UPDATE '.MAIN_DB_PREFIX.'expedition SET fk_statut='.self::STATUS_CLOSED;
1989 1989
 		$sql .= ' WHERE rowid = '.$this->id.' AND fk_statut > 0';
1990 1990
 
1991
-		$resql=$this->db->query($sql);
1991
+		$resql = $this->db->query($sql);
1992 1992
 		if ($resql)
1993 1993
 		{
1994 1994
 			// Set order billed if 100% of order is shipped (qty in shipment lines match qty in order lines)
@@ -1997,17 +1997,17 @@  discard block
 block discarded – undo
1997 1997
 				$order = new Commande($this->db);
1998 1998
 				$order->fetch($this->origin_id);
1999 1999
 
2000
-				$order->loadExpeditions(self::STATUS_CLOSED);		// Fill $order->expeditions = array(orderlineid => qty)
2000
+				$order->loadExpeditions(self::STATUS_CLOSED); // Fill $order->expeditions = array(orderlineid => qty)
2001 2001
 
2002 2002
 				$shipments_match_order = 1;
2003
-				foreach($order->lines as $line)
2003
+				foreach ($order->lines as $line)
2004 2004
 				{
2005 2005
 					$lineid = $line->id;
2006 2006
 					$qty = $line->qty;
2007
-					if (($line->product_type == 0 || ! empty($conf->global->STOCK_SUPPORTS_SERVICES)) && $order->expeditions[$lineid] != $qty)
2007
+					if (($line->product_type == 0 || !empty($conf->global->STOCK_SUPPORTS_SERVICES)) && $order->expeditions[$lineid] != $qty)
2008 2008
 					{
2009 2009
 						$shipments_match_order = 0;
2010
-						$text='Qty for order line id '.$lineid.' is '.$qty.'. However in the shipments with status Expedition::STATUS_CLOSED='.self::STATUS_CLOSED.' we have qty = '.$order->expeditions[$lineid].', so we can t close order';
2010
+						$text = 'Qty for order line id '.$lineid.' is '.$qty.'. However in the shipments with status Expedition::STATUS_CLOSED='.self::STATUS_CLOSED.' we have qty = '.$order->expeditions[$lineid].', so we can t close order';
2011 2011
 						dol_syslog($text);
2012 2012
 						break;
2013 2013
 					}
@@ -2019,11 +2019,11 @@  discard block
 block discarded – undo
2019 2019
 				}
2020 2020
 			}
2021 2021
 
2022
-			$this->statut=self::STATUS_CLOSED;
2022
+			$this->statut = self::STATUS_CLOSED;
2023 2023
 
2024 2024
 
2025 2025
 			// If stock increment is done on closing
2026
-			if (! $error && ! empty($conf->stock->enabled) && ! empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE))
2026
+			if (!$error && !empty($conf->stock->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE))
2027 2027
 			{
2028 2028
 				require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
2029 2029
 
@@ -2032,16 +2032,16 @@  discard block
 block discarded – undo
2032 2032
 				// Loop on each product line to add a stock movement
2033 2033
 				// TODO possibilite d'expedier a partir d'une propale ou autre origine ?
2034 2034
 				$sql = "SELECT cd.fk_product, cd.subprice,";
2035
-				$sql.= " ed.rowid, ed.qty, ed.fk_entrepot,";
2036
-				$sql.= " edb.rowid as edbrowid, edb.eatby, edb.sellby, edb.batch, edb.qty as edbqty, edb.fk_origin_stock";
2037
-				$sql.= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
2038
-				$sql.= " ".MAIN_DB_PREFIX."expeditiondet as ed";
2039
-				$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."expeditiondet_batch as edb on edb.fk_expeditiondet = ed.rowid";
2040
-				$sql.= " WHERE ed.fk_expedition = ".$this->id;
2041
-				$sql.= " AND cd.rowid = ed.fk_origin_line";
2035
+				$sql .= " ed.rowid, ed.qty, ed.fk_entrepot,";
2036
+				$sql .= " edb.rowid as edbrowid, edb.eatby, edb.sellby, edb.batch, edb.qty as edbqty, edb.fk_origin_stock";
2037
+				$sql .= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
2038
+				$sql .= " ".MAIN_DB_PREFIX."expeditiondet as ed";
2039
+				$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."expeditiondet_batch as edb on edb.fk_expeditiondet = ed.rowid";
2040
+				$sql .= " WHERE ed.fk_expedition = ".$this->id;
2041
+				$sql .= " AND cd.rowid = ed.fk_origin_line";
2042 2042
 
2043 2043
 				dol_syslog(get_class($this)."::valid select details", LOG_DEBUG);
2044
-				$resql=$this->db->query($sql);
2044
+				$resql = $this->db->query($sql);
2045 2045
 				if ($resql)
2046 2046
 				{
2047 2047
 					$cpt = $this->db->num_rows($resql);
@@ -2067,7 +2067,7 @@  discard block
 block discarded – undo
2067 2067
 							// line without batch detail
2068 2068
 
2069 2069
 							// We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
2070
-							$result=$mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentClassifyClosedInDolibarr",$numref));
2070
+							$result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentClassifyClosedInDolibarr", $numref));
2071 2071
 							if ($result < 0) {
2072 2072
 								$this->error = $mouvS->error;
2073 2073
 								$this->errors = $mouvS->errors;
@@ -2079,7 +2079,7 @@  discard block
 block discarded – undo
2079 2079
 							// line with batch detail
2080 2080
 
2081 2081
 							// We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
2082
-							$result=$mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentClassifyClosedInDolibarr",$numref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, $obj->fk_origin_stock);
2082
+							$result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, $qty, $obj->subprice, $langs->trans("ShipmentClassifyClosedInDolibarr", $numref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, $obj->fk_origin_stock);
2083 2083
 							if ($result < 0) {
2084 2084
 								$this->error = $mouvS->error;
2085 2085
 								$this->errors = $mouvS->errors;
@@ -2090,15 +2090,15 @@  discard block
 block discarded – undo
2090 2090
 				}
2091 2091
 				else
2092 2092
 				{
2093
-					$this->error=$this->db->lasterror();
2093
+					$this->error = $this->db->lasterror();
2094 2094
 					$error++;
2095 2095
 				}
2096 2096
 			}
2097 2097
 
2098 2098
 			// Call trigger
2099
-			if (! $error)
2099
+			if (!$error)
2100 2100
 			{
2101
-				$result=$this->call_trigger('SHIPPING_CLOSED',$user);
2101
+				$result = $this->call_trigger('SHIPPING_CLOSED', $user);
2102 2102
 				if ($result < 0) {
2103 2103
 					$error++;
2104 2104
 				}
@@ -2110,7 +2110,7 @@  discard block
 block discarded – undo
2110 2110
 			$error++;
2111 2111
 		}
2112 2112
 
2113
-		if (! $error)
2113
+		if (!$error)
2114 2114
 		{
2115 2115
 			$this->db->commit();
2116 2116
 			return 1;
@@ -2132,27 +2132,27 @@  discard block
 block discarded – undo
2132 2132
 	{
2133 2133
         // phpcs:enable
2134 2134
 		global $user;
2135
-		$error=0;
2135
+		$error = 0;
2136 2136
 
2137 2137
 		$this->db->begin();
2138 2138
 
2139
-		$sql = 'UPDATE '.MAIN_DB_PREFIX.'expedition SET fk_statut=2, billed=1';    // TODO Update only billed
2139
+		$sql = 'UPDATE '.MAIN_DB_PREFIX.'expedition SET fk_statut=2, billed=1'; // TODO Update only billed
2140 2140
 		$sql .= ' WHERE rowid = '.$this->id.' AND fk_statut > 0';
2141 2141
 
2142
-		$resql=$this->db->query($sql);
2142
+		$resql = $this->db->query($sql);
2143 2143
 		if ($resql)
2144 2144
 		{
2145
-			$this->statut=2;
2146
-			$this->billed=1;
2145
+			$this->statut = 2;
2146
+			$this->billed = 1;
2147 2147
 
2148 2148
 			// Call trigger
2149
-			$result=$this->call_trigger('SHIPPING_BILLED',$user);
2149
+			$result = $this->call_trigger('SHIPPING_BILLED', $user);
2150 2150
 			if ($result < 0) {
2151 2151
 				$error++;
2152 2152
 			}
2153 2153
 		} else {
2154 2154
 			$error++;
2155
-			$this->errors[]=$this->db->lasterror;
2155
+			$this->errors[] = $this->db->lasterror;
2156 2156
 		}
2157 2157
 
2158 2158
 		if (empty($error)) {
@@ -2173,9 +2173,9 @@  discard block
 block discarded – undo
2173 2173
 	 */
2174 2174
 	function reOpen()
2175 2175
 	{
2176
-		global $conf,$langs,$user;
2176
+		global $conf, $langs, $user;
2177 2177
 
2178
-		$error=0;
2178
+		$error = 0;
2179 2179
 
2180 2180
 		// Protection. This avoid to move stock later when we should not
2181 2181
 		if ($this->statut == self::STATUS_VALIDATED)
@@ -2188,14 +2188,14 @@  discard block
 block discarded – undo
2188 2188
 		$sql = 'UPDATE '.MAIN_DB_PREFIX.'expedition SET fk_statut=1';
2189 2189
 		$sql .= ' WHERE rowid = '.$this->id.' AND fk_statut > 0';
2190 2190
 
2191
-		$resql=$this->db->query($sql);
2191
+		$resql = $this->db->query($sql);
2192 2192
 		if ($resql)
2193 2193
 		{
2194
-			$this->statut=1;
2195
-			$this->billed=0;
2194
+			$this->statut = 1;
2195
+			$this->billed = 0;
2196 2196
 
2197 2197
 			// If stock increment is done on closing
2198
-			if (! $error && ! empty($conf->stock->enabled) && ! empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE))
2198
+			if (!$error && !empty($conf->stock->enabled) && !empty($conf->global->STOCK_CALCULATE_ON_SHIPMENT_CLOSE))
2199 2199
 			{
2200 2200
 				require_once DOL_DOCUMENT_ROOT.'/product/stock/class/mouvementstock.class.php';
2201 2201
 
@@ -2204,16 +2204,16 @@  discard block
 block discarded – undo
2204 2204
 				// Loop on each product line to add a stock movement
2205 2205
 				// TODO possibilite d'expedier a partir d'une propale ou autre origine
2206 2206
 				$sql = "SELECT cd.fk_product, cd.subprice,";
2207
-				$sql.= " ed.rowid, ed.qty, ed.fk_entrepot,";
2208
-				$sql.= " edb.rowid as edbrowid, edb.eatby, edb.sellby, edb.batch, edb.qty as edbqty, edb.fk_origin_stock";
2209
-				$sql.= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
2210
-				$sql.= " ".MAIN_DB_PREFIX."expeditiondet as ed";
2211
-				$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."expeditiondet_batch as edb on edb.fk_expeditiondet = ed.rowid";
2212
-				$sql.= " WHERE ed.fk_expedition = ".$this->id;
2213
-				$sql.= " AND cd.rowid = ed.fk_origin_line";
2207
+				$sql .= " ed.rowid, ed.qty, ed.fk_entrepot,";
2208
+				$sql .= " edb.rowid as edbrowid, edb.eatby, edb.sellby, edb.batch, edb.qty as edbqty, edb.fk_origin_stock";
2209
+				$sql .= " FROM ".MAIN_DB_PREFIX."commandedet as cd,";
2210
+				$sql .= " ".MAIN_DB_PREFIX."expeditiondet as ed";
2211
+				$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."expeditiondet_batch as edb on edb.fk_expeditiondet = ed.rowid";
2212
+				$sql .= " WHERE ed.fk_expedition = ".$this->id;
2213
+				$sql .= " AND cd.rowid = ed.fk_origin_line";
2214 2214
 
2215 2215
 				dol_syslog(get_class($this)."::valid select details", LOG_DEBUG);
2216
-				$resql=$this->db->query($sql);
2216
+				$resql = $this->db->query($sql);
2217 2217
 				if ($resql)
2218 2218
 				{
2219 2219
 					$cpt = $this->db->num_rows($resql);
@@ -2240,7 +2240,7 @@  discard block
 block discarded – undo
2240 2240
 							// line without batch detail
2241 2241
 
2242 2242
 							// We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
2243
-							$result=$mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, -$qty, $obj->subprice, $langs->trans("ShipmentUnClassifyCloseddInDolibarr",$numref));
2243
+							$result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, -$qty, $obj->subprice, $langs->trans("ShipmentUnClassifyCloseddInDolibarr", $numref));
2244 2244
 							if ($result < 0) {
2245 2245
 								$this->error = $mouvS->error;
2246 2246
 								$this->errors = $mouvS->errors;
@@ -2252,7 +2252,7 @@  discard block
 block discarded – undo
2252 2252
 							// line with batch detail
2253 2253
 
2254 2254
 							// We decrement stock of product (and sub-products) -> update table llx_product_stock (key of this table is fk_product+fk_entrepot) and add a movement record
2255
-							$result=$mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, -$qty, $obj->subprice, $langs->trans("ShipmentUnClassifyCloseddInDolibarr",$numref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, $obj->fk_origin_stock);
2255
+							$result = $mouvS->livraison($user, $obj->fk_product, $obj->fk_entrepot, -$qty, $obj->subprice, $langs->trans("ShipmentUnClassifyCloseddInDolibarr", $numref), '', $this->db->jdate($obj->eatby), $this->db->jdate($obj->sellby), $obj->batch, $obj->fk_origin_stock);
2256 2256
 							if ($result < 0) {
2257 2257
 								$this->error = $mouvS->error;
2258 2258
 								$this->errors = $mouvS->errors;
@@ -2263,25 +2263,25 @@  discard block
 block discarded – undo
2263 2263
 				}
2264 2264
 				else
2265 2265
 				{
2266
-					$this->error=$this->db->lasterror();
2266
+					$this->error = $this->db->lasterror();
2267 2267
 					$error++;
2268 2268
 				}
2269 2269
 			}
2270 2270
 
2271
-			if (! $error)
2271
+			if (!$error)
2272 2272
 			{
2273 2273
 				// Call trigger
2274
-				$result=$this->call_trigger('SHIPPING_REOPEN',$user);
2274
+				$result = $this->call_trigger('SHIPPING_REOPEN', $user);
2275 2275
 				if ($result < 0) {
2276 2276
 					$error++;
2277 2277
 				}
2278 2278
    			}
2279 2279
 		} else {
2280 2280
 			$error++;
2281
-			$this->errors[]=$this->db->lasterror();
2281
+			$this->errors[] = $this->db->lasterror();
2282 2282
 		}
2283 2283
 
2284
-		if (! $error)
2284
+		if (!$error)
2285 2285
 		{
2286 2286
 			$this->db->commit();
2287 2287
 			return 1;
@@ -2304,19 +2304,19 @@  discard block
 block discarded – undo
2304 2304
      *  @param      null|array  $moreparams     Array to provide more information
2305 2305
 	 *  @return     int         				0 if KO, 1 if OK
2306 2306
 	 */
2307
-	public function generateDocument($modele, $outputlangs,$hidedetails=0, $hidedesc=0, $hideref=0,$moreparams=null)
2307
+	public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
2308 2308
 	{
2309
-		global $conf,$langs;
2309
+		global $conf, $langs;
2310 2310
 
2311 2311
 		$langs->load("sendings");
2312 2312
 
2313
-		if (! dol_strlen($modele)) {
2313
+		if (!dol_strlen($modele)) {
2314 2314
 
2315 2315
 			$modele = 'rouget';
2316 2316
 
2317 2317
 			if ($this->modelpdf) {
2318 2318
 				$modele = $this->modelpdf;
2319
-			} elseif (! empty($conf->global->EXPEDITION_ADDON_PDF)) {
2319
+			} elseif (!empty($conf->global->EXPEDITION_ADDON_PDF)) {
2320 2320
 				$modele = $conf->global->EXPEDITION_ADDON_PDF;
2321 2321
 			}
2322 2322
 		}
@@ -2325,7 +2325,7 @@  discard block
 block discarded – undo
2325 2325
 
2326 2326
 		$this->fetch_origin();
2327 2327
 
2328
-		return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref,$moreparams);
2328
+		return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
2329 2329
 	}
2330 2330
 
2331 2331
 	/**
@@ -2355,12 +2355,12 @@  discard block
 block discarded – undo
2355 2355
 	/**
2356 2356
 	 * @var string ID to identify managed object
2357 2357
 	 */
2358
-	public $element='expeditiondet';
2358
+	public $element = 'expeditiondet';
2359 2359
 
2360 2360
 	/**
2361 2361
 	 * @var string Name of table without prefix where object is stored
2362 2362
 	 */
2363
-	public $table_element='expeditiondet';
2363
+	public $table_element = 'expeditiondet';
2364 2364
 
2365 2365
 	/**
2366 2366
 	 * @deprecated
@@ -2505,7 +2505,7 @@  discard block
 block discarded – undo
2505 2505
      */
2506 2506
 	function __construct($db)
2507 2507
 	{
2508
-		$this->db=$db;
2508
+		$this->db = $db;
2509 2509
 	}
2510 2510
 
2511 2511
 	/**
@@ -2517,18 +2517,18 @@  discard block
 block discarded – undo
2517 2517
 	function fetch($rowid)
2518 2518
 	{
2519 2519
 		$sql = 'SELECT ed.rowid, ed.fk_expedition, ed.fk_entrepot, ed.fk_origin_line, ed.qty, ed.rang';
2520
-		$sql.= ' FROM '.MAIN_DB_PREFIX.$this->table_element.' as ed';
2521
-		$sql.= ' WHERE ed.rowid = '.$rowid;
2520
+		$sql .= ' FROM '.MAIN_DB_PREFIX.$this->table_element.' as ed';
2521
+		$sql .= ' WHERE ed.rowid = '.$rowid;
2522 2522
 		$result = $this->db->query($sql);
2523 2523
 		if ($result)
2524 2524
 		{
2525 2525
 			$objp = $this->db->fetch_object($result);
2526
-			$this->id				= $objp->rowid;
2527
-			$this->fk_expedition	= $objp->fk_expedition;
2528
-			$this->entrepot_id		= $objp->fk_entrepot;
2529
-			$this->fk_origin_line	= $objp->fk_origin_line;
2530
-			$this->qty				= $objp->qty;
2531
-			$this->rang				= $objp->rang;
2526
+			$this->id = $objp->rowid;
2527
+			$this->fk_expedition = $objp->fk_expedition;
2528
+			$this->entrepot_id = $objp->fk_entrepot;
2529
+			$this->fk_origin_line = $objp->fk_origin_line;
2530
+			$this->qty = $objp->qty;
2531
+			$this->rang = $objp->rang;
2532 2532
 
2533 2533
 			$this->db->free($result);
2534 2534
 
@@ -2549,34 +2549,34 @@  discard block
 block discarded – undo
2549 2549
 	 *	@param      int		$notrigger		1 = disable triggers
2550 2550
 	 *	@return     int						<0 if KO, line id >0 if OK
2551 2551
 	 */
2552
-	function insert($user=null, $notrigger=0)
2552
+	function insert($user = null, $notrigger = 0)
2553 2553
 	{
2554 2554
 		global $langs, $conf;
2555 2555
 
2556
-		$error=0;
2556
+		$error = 0;
2557 2557
 
2558 2558
 		// Check parameters
2559
-		if (empty($this->fk_expedition) || empty($this->fk_origin_line) || ! is_numeric($this->qty))
2559
+		if (empty($this->fk_expedition) || empty($this->fk_origin_line) || !is_numeric($this->qty))
2560 2560
 		{
2561 2561
 			$this->error = 'ErrorMandatoryParametersNotProvided';
2562 2562
 			return -1;
2563 2563
 		}
2564 2564
 		// Clean parameters
2565
-		if (empty($this->entrepot_id)) $this->entrepot_id='null';
2565
+		if (empty($this->entrepot_id)) $this->entrepot_id = 'null';
2566 2566
 
2567 2567
 		$this->db->begin();
2568 2568
 
2569 2569
 		$sql = "INSERT INTO ".MAIN_DB_PREFIX."expeditiondet (";
2570
-		$sql.= "fk_expedition";
2571
-		$sql.= ", fk_entrepot";
2572
-		$sql.= ", fk_origin_line";
2573
-		$sql.= ", qty";
2574
-		$sql.= ") VALUES (";
2575
-		$sql.= $this->fk_expedition;
2576
-		$sql.= ", ".$this->entrepot_id;
2577
-		$sql.= ", ".$this->fk_origin_line;
2578
-		$sql.= ", ".$this->qty;
2579
-		$sql.= ")";
2570
+		$sql .= "fk_expedition";
2571
+		$sql .= ", fk_entrepot";
2572
+		$sql .= ", fk_origin_line";
2573
+		$sql .= ", qty";
2574
+		$sql .= ") VALUES (";
2575
+		$sql .= $this->fk_expedition;
2576
+		$sql .= ", ".$this->entrepot_id;
2577
+		$sql .= ", ".$this->fk_origin_line;
2578
+		$sql .= ", ".$this->qty;
2579
+		$sql .= ")";
2580 2580
 
2581 2581
 		dol_syslog(get_class($this)."::insert", LOG_DEBUG);
2582 2582
 		$resql = $this->db->query($sql);
@@ -2584,19 +2584,19 @@  discard block
 block discarded – undo
2584 2584
 		{
2585 2585
 			$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."expeditiondet");
2586 2586
 
2587
-			if (! $error && empty($conf->global->MAIN_EXTRAFIELDS_DISABLED))
2587
+			if (!$error && empty($conf->global->MAIN_EXTRAFIELDS_DISABLED))
2588 2588
 			{
2589
-				$result=$this->insertExtraFields();
2589
+				$result = $this->insertExtraFields();
2590 2590
 				if ($result < 0)
2591 2591
 				{
2592 2592
 					$error++;
2593 2593
 				}
2594 2594
 			}
2595 2595
 
2596
-			if (! $error && ! $notrigger)
2596
+			if (!$error && !$notrigger)
2597 2597
 			{
2598 2598
 				// Call trigger
2599
-				$result=$this->call_trigger('LINESHIPPING_INSERT',$user);
2599
+				$result = $this->call_trigger('LINESHIPPING_INSERT', $user);
2600 2600
 				if ($result < 0)
2601 2601
 				{
2602 2602
 					$error++;
@@ -2604,19 +2604,19 @@  discard block
 block discarded – undo
2604 2604
 				// End call triggers
2605 2605
 			}
2606 2606
 
2607
-			if (! $error) {
2607
+			if (!$error) {
2608 2608
 				$this->db->commit();
2609 2609
 				return $this->id;
2610 2610
 			}
2611 2611
 
2612
-			foreach($this->errors as $errmsg)
2612
+			foreach ($this->errors as $errmsg)
2613 2613
 			{
2614 2614
 				dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
2615
-				$this->error.=($this->error?', '.$errmsg:$errmsg);
2615
+				$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
2616 2616
 			}
2617 2617
 
2618 2618
 			$this->db->rollback();
2619
-			return -1*$error;
2619
+			return -1 * $error;
2620 2620
 		}
2621 2621
 		else
2622 2622
 		{
@@ -2635,7 +2635,7 @@  discard block
 block discarded – undo
2635 2635
 	{
2636 2636
 		global $conf;
2637 2637
 
2638
-		$error=0;
2638
+		$error = 0;
2639 2639
 
2640 2640
 		$this->db->begin();
2641 2641
 
@@ -2643,37 +2643,37 @@  discard block
 block discarded – undo
2643 2643
 		if ($conf->productbatch->enabled)
2644 2644
 		{
2645 2645
 			$sql = "DELETE FROM ".MAIN_DB_PREFIX."expeditiondet_batch";
2646
-			$sql.= " WHERE fk_expeditiondet = ".$this->id;
2646
+			$sql .= " WHERE fk_expeditiondet = ".$this->id;
2647 2647
 
2648 2648
 			if (!$this->db->query($sql))
2649 2649
 			{
2650
-				$this->errors[]=$this->db->lasterror()." - sql=$sql";
2650
+				$this->errors[] = $this->db->lasterror()." - sql=$sql";
2651 2651
 				$error++;
2652 2652
 			}
2653 2653
 		}
2654 2654
 
2655 2655
 		$sql = "DELETE FROM ".MAIN_DB_PREFIX."expeditiondet";
2656
-		$sql.= " WHERE rowid = ".$this->id;
2656
+		$sql .= " WHERE rowid = ".$this->id;
2657 2657
 
2658
-		if (! $error && $this->db->query($sql))
2658
+		if (!$error && $this->db->query($sql))
2659 2659
 		{
2660 2660
 			// Remove extrafields
2661 2661
 			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) // For avoid conflicts if trigger used
2662 2662
 			{
2663
-				$result=$this->deleteExtraFields();
2663
+				$result = $this->deleteExtraFields();
2664 2664
 				if ($result < 0)
2665 2665
 				{
2666
-					$this->errors[]=$this->error;
2666
+					$this->errors[] = $this->error;
2667 2667
 					$error++;
2668 2668
 				}
2669 2669
 			}
2670
-			if (! $error && ! $notrigger)
2670
+			if (!$error && !$notrigger)
2671 2671
 			{
2672 2672
 				// Call trigger
2673
-				$result=$this->call_trigger('LINESHIPPING_DELETE',$user);
2673
+				$result = $this->call_trigger('LINESHIPPING_DELETE', $user);
2674 2674
 				if ($result < 0)
2675 2675
 				{
2676
-					$this->errors[]=$this->error;
2676
+					$this->errors[] = $this->error;
2677 2677
 					$error++;
2678 2678
 				}
2679 2679
 				// End call triggers
@@ -2681,23 +2681,23 @@  discard block
 block discarded – undo
2681 2681
 		}
2682 2682
 		else
2683 2683
 		{
2684
-			$this->errors[]=$this->db->lasterror()." - sql=$sql";
2684
+			$this->errors[] = $this->db->lasterror()." - sql=$sql";
2685 2685
 			$error++;
2686 2686
 		}
2687 2687
 
2688
-		if (! $error) {
2688
+		if (!$error) {
2689 2689
 			$this->db->commit();
2690 2690
 			return 1;
2691 2691
 		}
2692 2692
 		else
2693 2693
 		{
2694
-			foreach($this->errors as $errmsg)
2694
+			foreach ($this->errors as $errmsg)
2695 2695
 			{
2696 2696
 				dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
2697
-				$this->error.=($this->error?', '.$errmsg:$errmsg);
2697
+				$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
2698 2698
 			}
2699 2699
 			$this->db->rollback();
2700
-			return -1*$error;
2700
+			return -1 * $error;
2701 2701
 		}
2702 2702
 	}
2703 2703
 
@@ -2712,15 +2712,15 @@  discard block
 block discarded – undo
2712 2712
 	{
2713 2713
 		global $conf;
2714 2714
 
2715
-		$error=0;
2715
+		$error = 0;
2716 2716
 
2717 2717
 		dol_syslog(get_class($this)."::update id=$this->id, entrepot_id=$this->entrepot_id, product_id=$this->fk_product, qty=$this->qty");
2718 2718
 
2719 2719
 		$this->db->begin();
2720 2720
 
2721 2721
 		// Clean parameters
2722
-		if (empty($this->qty)) $this->qty=0;
2723
-		$qty=price2num($this->qty);
2722
+		if (empty($this->qty)) $this->qty = 0;
2723
+		$qty = price2num($this->qty);
2724 2724
 		$remainingQty = 0;
2725 2725
 		$batch = null;
2726 2726
 		$batch_id = null;
@@ -2730,7 +2730,7 @@  discard block
 block discarded – undo
2730 2730
 			if (count($this->detail_batch) > 1)
2731 2731
 			{
2732 2732
 				dol_syslog(get_class($this).'::update only possible for one batch', LOG_ERR);
2733
-				$this->errors[]='ErrorBadParameters';
2733
+				$this->errors[] = 'ErrorBadParameters';
2734 2734
 				$error++;
2735 2735
 			}
2736 2736
 			else
@@ -2741,13 +2741,13 @@  discard block
 block discarded – undo
2741 2741
 				if ($this->entrepot_id != $this->detail_batch[0]->entrepot_id)
2742 2742
 				{
2743 2743
 					dol_syslog(get_class($this).'::update only possible for batch of same warehouse', LOG_ERR);
2744
-					$this->errors[]='ErrorBadParameters';
2744
+					$this->errors[] = 'ErrorBadParameters';
2745 2745
 					$error++;
2746 2746
 				}
2747 2747
 				$qty = price2num($this->detail_batch[0]->qty);
2748 2748
 			}
2749 2749
 		}
2750
-		else if (! empty($this->detail_batch))
2750
+		else if (!empty($this->detail_batch))
2751 2751
 		{
2752 2752
 			$batch = $this->detail_batch->batch;
2753 2753
 			$batch_id = $this->detail_batch->fk_origin_stock;
@@ -2755,38 +2755,38 @@  discard block
 block discarded – undo
2755 2755
 			if ($this->entrepot_id != $this->detail_batch->entrepot_id)
2756 2756
 			{
2757 2757
 				dol_syslog(get_class($this).'::update only possible for batch of same warehouse', LOG_ERR);
2758
-				$this->errors[]='ErrorBadParameters';
2758
+				$this->errors[] = 'ErrorBadParameters';
2759 2759
 				$error++;
2760 2760
 			}
2761 2761
 			$qty = price2num($this->detail_batch->qty);
2762 2762
 		}
2763 2763
 
2764 2764
 		// check parameters
2765
-		if (! isset($this->id) || ! isset($this->entrepot_id))
2765
+		if (!isset($this->id) || !isset($this->entrepot_id))
2766 2766
 		{
2767 2767
 			dol_syslog(get_class($this).'::update missing line id and/or warehouse id', LOG_ERR);
2768
-			$this->errors[]='ErrorMandatoryParametersNotProvided';
2768
+			$this->errors[] = 'ErrorMandatoryParametersNotProvided';
2769 2769
 			$error++;
2770 2770
 			return -1;
2771 2771
 		}
2772 2772
 
2773 2773
 		// update lot
2774 2774
 
2775
-		if (! empty($batch) && $conf->productbatch->enabled)
2775
+		if (!empty($batch) && $conf->productbatch->enabled)
2776 2776
 		{
2777 2777
 			dol_syslog(get_class($this)."::update expedition batch id=$expedition_batch_id, batch_id=$batch_id, batch=$batch");
2778 2778
 
2779 2779
 			if (empty($batch_id) || empty($this->fk_product)) {
2780 2780
 				dol_syslog(get_class($this).'::update missing fk_origin_stock (batch_id) and/or fk_product', LOG_ERR);
2781
-				$this->errors[]='ErrorMandatoryParametersNotProvided';
2781
+				$this->errors[] = 'ErrorMandatoryParametersNotProvided';
2782 2782
 				$error++;
2783 2783
 			}
2784 2784
 
2785 2785
 			// fetch remaining lot qty
2786 2786
 			require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionbatch.class.php';
2787
-			if (! $error && ($lotArray = ExpeditionLineBatch::fetchAll($this->db, $this->id)) < 0)
2787
+			if (!$error && ($lotArray = ExpeditionLineBatch::fetchAll($this->db, $this->id)) < 0)
2788 2788
 			{
2789
-				$this->errors[]=$this->db->lasterror()." - ExpeditionLineBatch::fetchAll";
2789
+				$this->errors[] = $this->db->lasterror()." - ExpeditionLineBatch::fetchAll";
2790 2790
 				$error++;
2791 2791
 			}
2792 2792
 			else
@@ -2806,25 +2806,25 @@  discard block
 block discarded – undo
2806 2806
 				// fetch from product_lot
2807 2807
 				require_once DOL_DOCUMENT_ROOT.'/product/stock/class/productlot.class.php';
2808 2808
 				$lot = new Productlot($this->db);
2809
-				if ($lot->fetch(0,$this->fk_product,$batch) < 0)
2809
+				if ($lot->fetch(0, $this->fk_product, $batch) < 0)
2810 2810
 				{
2811 2811
 					$this->errors[] = $lot->errors;
2812 2812
 					$error++;
2813 2813
 				}
2814
-				if (! $error && ! empty($expedition_batch_id))
2814
+				if (!$error && !empty($expedition_batch_id))
2815 2815
 				{
2816 2816
 					// delete lot expedition line
2817 2817
 					$sql = "DELETE FROM ".MAIN_DB_PREFIX."expeditiondet_batch";
2818
-					$sql.= " WHERE fk_expeditiondet = ".$this->id;
2819
-					$sql.= " AND rowid = ".$expedition_batch_id;
2818
+					$sql .= " WHERE fk_expeditiondet = ".$this->id;
2819
+					$sql .= " AND rowid = ".$expedition_batch_id;
2820 2820
 
2821 2821
 					if (!$this->db->query($sql))
2822 2822
 					{
2823
-						$this->errors[]=$this->db->lasterror()." - sql=$sql";
2823
+						$this->errors[] = $this->db->lasterror()." - sql=$sql";
2824 2824
 						$error++;
2825 2825
 					}
2826 2826
 				}
2827
-				if (! $error && $this->detail_batch->qty > 0)
2827
+				if (!$error && $this->detail_batch->qty > 0)
2828 2828
 				{
2829 2829
 					// create lot expedition line
2830 2830
 					if (isset($lot->id))
@@ -2838,48 +2838,48 @@  discard block
 block discarded – undo
2838 2838
 						$shipmentLot->fk_origin_stock = $batch_id;
2839 2839
 						if ($shipmentLot->create($this->id) < 0)
2840 2840
 						{
2841
-							$this->errors[]=$shipmentLot->errors;
2841
+							$this->errors[] = $shipmentLot->errors;
2842 2842
 							$error++;
2843 2843
 						}
2844 2844
 					}
2845 2845
 				}
2846 2846
 			}
2847 2847
 		}
2848
-		if (! $error)
2848
+		if (!$error)
2849 2849
 		{
2850 2850
 			// update line
2851 2851
 			$sql = "UPDATE ".MAIN_DB_PREFIX.$this->table_element." SET";
2852
-			$sql.= " fk_entrepot = ".($this->entrepot_id > 0 ? $this->entrepot_id : 'null');
2853
-			$sql.= " , qty = ".$qty;
2854
-			$sql.= " WHERE rowid = ".$this->id;
2852
+			$sql .= " fk_entrepot = ".($this->entrepot_id > 0 ? $this->entrepot_id : 'null');
2853
+			$sql .= " , qty = ".$qty;
2854
+			$sql .= " WHERE rowid = ".$this->id;
2855 2855
 
2856 2856
 			if (!$this->db->query($sql))
2857 2857
 			{
2858
-				$this->errors[]=$this->db->lasterror()." - sql=$sql";
2858
+				$this->errors[] = $this->db->lasterror()." - sql=$sql";
2859 2859
 				$error++;
2860 2860
 			}
2861 2861
 		}
2862 2862
 
2863
-		if (! $error)
2863
+		if (!$error)
2864 2864
 		{
2865 2865
 			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) // For avoid conflicts if trigger used
2866 2866
 			{
2867
-				$result=$this->insertExtraFields();
2867
+				$result = $this->insertExtraFields();
2868 2868
 				if ($result < 0)
2869 2869
 				{
2870
-					$this->errors[]=$this->error;
2870
+					$this->errors[] = $this->error;
2871 2871
 					$error++;
2872 2872
 				}
2873 2873
 			}
2874 2874
 		}
2875 2875
 
2876
-		if (! $error && ! $notrigger)
2876
+		if (!$error && !$notrigger)
2877 2877
 		{
2878 2878
 			// Call trigger
2879
-			$result=$this->call_trigger('LINESHIPPING_UPDATE',$user);
2879
+			$result = $this->call_trigger('LINESHIPPING_UPDATE', $user);
2880 2880
 			if ($result < 0)
2881 2881
 			{
2882
-				$this->errors[]=$this->error;
2882
+				$this->errors[] = $this->error;
2883 2883
 				$error++;
2884 2884
 			}
2885 2885
 			// End call triggers
@@ -2890,13 +2890,13 @@  discard block
 block discarded – undo
2890 2890
 		}
2891 2891
 		else
2892 2892
 		{
2893
-			foreach($this->errors as $errmsg)
2893
+			foreach ($this->errors as $errmsg)
2894 2894
 			{
2895 2895
 				dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
2896
-				$this->error.=($this->error?', '.$errmsg:$errmsg);
2896
+				$this->error .= ($this->error ? ', '.$errmsg : $errmsg);
2897 2897
 			}
2898 2898
 			$this->db->rollback();
2899
-			return -1*$error;
2899
+			return -1 * $error;
2900 2900
 		}
2901 2901
 	}
2902 2902
 }
Please login to merge, or discard this patch.
Braces   +258 added lines, -185 removed lines patch added patch discarded remove patch
@@ -35,9 +35,15 @@  discard block
 block discarded – undo
35 35
 
36 36
 require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
37 37
 require_once DOL_DOCUMENT_ROOT."/core/class/commonobjectline.class.php";
38
-if (! empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
39
-if (! empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
40
-if (! empty($conf->productbatch->enabled)) require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionbatch.class.php';
38
+if (! empty($conf->propal->enabled)) {
39
+    require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
40
+}
41
+if (! empty($conf->commande->enabled)) {
42
+    require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
43
+}
44
+if (! empty($conf->productbatch->enabled)) {
45
+    require_once DOL_DOCUMENT_ROOT.'/expedition/class/expeditionbatch.class.php';
46
+}
41 47
 
42 48
 
43 49
 /**
@@ -243,14 +249,12 @@  discard block
 block discarded – undo
243 249
 			if ( $numref != "")
244 250
 			{
245 251
 				return $numref;
246
-			}
247
-			else
252
+			} else
248 253
 			{
249 254
 				dol_print_error($this->db,get_class($this)."::getNextNumRef ".$obj->error);
250 255
 				return "";
251 256
 			}
252
-		}
253
-		else
257
+		} else
254 258
 		{
255 259
 			print $langs->trans("Error")." ".$langs->trans("Error_EXPEDITION_ADDON_NUMBER_NotDefined");
256 260
 			return "";
@@ -276,7 +280,9 @@  discard block
 block discarded – undo
276 280
 		// Clean parameters
277 281
 		$this->brouillon = 1;
278 282
 		$this->tracking_number = dol_sanitizeFileName($this->tracking_number);
279
-		if (empty($this->fk_project)) $this->fk_project = 0;
283
+		if (empty($this->fk_project)) {
284
+		    $this->fk_project = 0;
285
+		}
280 286
 
281 287
 		$this->user = $user;
282 288
 
@@ -357,8 +363,7 @@  discard block
 block discarded – undo
357 363
 						{
358 364
 							$error++;
359 365
 						}
360
-					}
361
-					else
366
+					} else
362 367
 					{	// with batch management
363 368
 						if (! $this->create_line_batch($this->lines[$i],$this->lines[$i]->array_options) > 0)
364 369
 						{
@@ -397,8 +402,7 @@  discard block
 block discarded – undo
397 402
 					{
398 403
 						$this->db->commit();
399 404
 						return $this->id;
400
-					}
401
-					else
405
+					} else
402 406
 					{
403 407
 						foreach($this->errors as $errmsg)
404 408
 						{
@@ -408,24 +412,21 @@  discard block
 block discarded – undo
408 412
 						$this->db->rollback();
409 413
 						return -1*$error;
410 414
 					}
411
-				}
412
-				else
415
+				} else
413 416
 				{
414 417
 					$error++;
415 418
 					$this->error=$this->db->lasterror()." - sql=$sql";
416 419
 					$this->db->rollback();
417 420
 					return -3;
418 421
 				}
419
-			}
420
-			else
422
+			} else
421 423
 			{
422 424
 				$error++;
423 425
 				$this->error=$this->db->lasterror()." - sql=$sql";
424 426
 				$this->db->rollback();
425 427
 				return -2;
426 428
 			}
427
-		}
428
-		else
429
+		} else
429 430
 		{
430 431
 			$error++;
431 432
 			$this->error=$this->db->error()." - sql=$sql";
@@ -491,24 +492,28 @@  discard block
 block discarded – undo
491 492
 			if (($line_id = $this->create_line($stockLocation,$line_ext->origin_line_id,$qty,$array_options)) < 0)
492 493
 			{
493 494
 				$error++;
494
-			}
495
-			else
495
+			} else
496 496
 			{
497 497
 				// create shipment batch lines for stockLocation
498 498
 				foreach ($tab as $detbatch)
499 499
 				{
500 500
 					if ($detbatch->entrepot_id == $stockLocation){
501
-						if (! ($detbatch->create($line_id) >0))		// Create an expeditionlinebatch
501
+						if (! ($detbatch->create($line_id) >0)) {
502
+						    // Create an expeditionlinebatch
502 503
 						{
503 504
 							$error++;
504 505
 						}
506
+						}
505 507
 					}
506 508
 				}
507 509
 			}
508 510
 		}
509 511
 
510
-		if (! $error) return 1;
511
-		else return -1;
512
+		if (! $error) {
513
+		    return 1;
514
+		} else {
515
+		    return -1;
516
+		}
512 517
 	}
513 518
 
514 519
 	/**
@@ -525,7 +530,9 @@  discard block
 block discarded – undo
525 530
 		global $conf;
526 531
 
527 532
 		// Check parameters
528
-		if (empty($id) && empty($ref) && empty($ref_ext) && empty($ref_int)) return -1;
533
+		if (empty($id) && empty($ref) && empty($ref_ext) && empty($ref_int)) {
534
+		    return -1;
535
+		}
529 536
 
530 537
 		$sql = "SELECT e.rowid, e.ref, e.fk_soc as socid, e.date_creation, e.ref_customer, e.ref_ext, e.ref_int, e.fk_user_author, e.fk_statut, e.fk_projet, e.billed";
531 538
 		$sql.= ", e.weight, e.weight_units, e.size, e.size_units, e.width, e.height";
@@ -541,10 +548,18 @@  discard block
 block discarded – undo
541 548
 		$sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_incoterms as i ON e.fk_incoterms = i.rowid';
542 549
 		$sql.= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_shipment_mode as s ON e.fk_shipping_method = s.rowid';
543 550
 		$sql.= " WHERE e.entity IN (".getEntity('expedition').")";
544
-		if ($id)   	  $sql.= " AND e.rowid=".$id;
545
-		if ($ref)     $sql.= " AND e.ref='".$this->db->escape($ref)."'";
546
-		if ($ref_ext) $sql.= " AND e.ref_ext='".$this->db->escape($ref_ext)."'";
547
-		if ($ref_int) $sql.= " AND e.ref_int='".$this->db->escape($ref_int)."'";
551
+		if ($id) {
552
+		    $sql.= " AND e.rowid=".$id;
553
+		}
554
+		if ($ref) {
555
+		    $sql.= " AND e.ref='".$this->db->escape($ref)."'";
556
+		}
557
+		if ($ref_ext) {
558
+		    $sql.= " AND e.ref_ext='".$this->db->escape($ref_ext)."'";
559
+		}
560
+		if ($ref_int) {
561
+		    $sql.= " AND e.ref_int='".$this->db->escape($ref_int)."'";
562
+		}
548 563
 
549 564
 		dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
550 565
 		$result = $this->db->query($sql);
@@ -601,7 +616,9 @@  discard block
 block discarded – undo
601 616
 
602 617
 				$this->db->free($result);
603 618
 
604
-				if ($this->statut == 0) $this->brouillon = 1;
619
+				if ($this->statut == 0) {
620
+				    $this->brouillon = 1;
621
+				}
605 622
 
606 623
 				// Tracking url
607 624
 				$this->getUrlTrackingStatus($obj->tracking_number);
@@ -624,15 +641,13 @@  discard block
 block discarded – undo
624 641
 				}
625 642
 
626 643
 				return 1;
627
-			}
628
-			else
644
+			} else
629 645
 			{
630 646
 				dol_syslog(get_class($this).'::Fetch no expedition found', LOG_ERR);
631 647
 				$this->error='Delivery with id '.$id.' not found';
632 648
 				return 0;
633 649
 			}
634
-		}
635
-		else
650
+		} else
636 651
 		{
637 652
 			$this->error=$this->db->error();
638 653
 			return -1;
@@ -681,11 +696,12 @@  discard block
 block discarded – undo
681 696
 		$result=$soc->set_as_client();
682 697
 
683 698
 		// Define new ref
684
-		if (! $error && (preg_match('/^[\(]?PROV/i', $this->ref) || empty($this->ref))) // empty should not happened, but when it occurs, the test save life
699
+		if (! $error && (preg_match('/^[\(]?PROV/i', $this->ref) || empty($this->ref))) {
700
+		    // empty should not happened, but when it occurs, the test save life
685 701
 		{
686 702
 			$numref = $this->getNextNumRef($soc);
687 703
 		}
688
-		else
704
+		} else
689 705
 		{
690 706
 			$numref = "EXP".$this->id;
691 707
 		}
@@ -737,12 +753,13 @@  discard block
 block discarded – undo
737 753
 					if (empty($obj->edbrowid))
738 754
 					{
739 755
 						$qty = $obj->qty;
740
-					}
741
-					else
756
+					} else
742 757
 					{
743 758
 						$qty = $obj->edbqty;
744 759
 					}
745
-					if ($qty <= 0) continue;
760
+					if ($qty <= 0) {
761
+					    continue;
762
+					}
746 763
 					dol_syslog(get_class($this)."::valid movement index ".$i." ed.rowid=".$obj->rowid." edb.rowid=".$obj->edbrowid);
747 764
 
748 765
 					//var_dump($this->lines[$i]);
@@ -761,8 +778,7 @@  discard block
 block discarded – undo
761 778
 							$this->errors = array_merge($this->errors, $mouvS->errors);
762 779
 							break;
763 780
 						}
764
-					}
765
-					else
781
+					} else
766 782
 					{
767 783
 						// line with batch detail
768 784
 
@@ -777,8 +793,7 @@  discard block
 block discarded – undo
777 793
 						}
778 794
 					}
779 795
 				}
780
-			}
781
-			else
796
+			} else
782 797
 			{
783 798
 				$this->db->rollback();
784 799
 				$this->error=$this->db->error();
@@ -848,8 +863,7 @@  discard block
 block discarded – undo
848 863
 		{
849 864
 			$this->db->commit();
850 865
 			return 1;
851
-		}
852
-		else
866
+		} else
853 867
 		{
854 868
 			foreach($this->errors as $errmsg)
855 869
 			{
@@ -885,16 +899,17 @@  discard block
 block discarded – undo
885 899
 				if ($result > 0)
886 900
 				{
887 901
 					return $result;
888
-				}
889
-				else
902
+				} else
890 903
 				{
891 904
 					$this->error=$delivery->error;
892 905
 					return $result;
893 906
 				}
907
+			} else {
908
+			    return 0;
894 909
 			}
895
-			else return 0;
910
+		} else {
911
+		    return 0;
896 912
 		}
897
-		else return 0;
898 913
 	}
899 914
 
900 915
 	/**
@@ -942,9 +957,9 @@  discard block
 block discarded – undo
942 957
 				if ($entrepot_id > 0) {
943 958
 					$product->load_stock('warehouseopen');
944 959
 					$product_stock = $product->stock_warehouse[$entrepot_id]->real;
960
+				} else {
961
+									$product_stock = $product->stock_reel;
945 962
 				}
946
-				else
947
-					$product_stock = $product->stock_reel;
948 963
 
949 964
 				$product_type=$product->type;
950 965
 				if ($product_type == 0 && $product_stock < $qty)
@@ -965,8 +980,10 @@  discard block
 block discarded – undo
965 980
 		}
966 981
 
967 982
 		// extrafields
968
-		if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options)>0) // For avoid conflicts if trigger used
983
+		if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options)>0) {
984
+		    // For avoid conflicts if trigger used
969 985
 			$line->array_options = $array_options;
986
+		}
970 987
 
971 988
 		$this->lines[$num] = $line;
972 989
 	}
@@ -1032,8 +1049,10 @@  discard block
 block discarded – undo
1032 1049
 			$line->detail_batch=$tab;
1033 1050
 
1034 1051
 			// extrafields
1035
-			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options)>0) // For avoid conflicts if trigger used
1052
+			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED) && is_array($array_options) && count($array_options)>0) {
1053
+			    // For avoid conflicts if trigger used
1036 1054
 				$line->array_options = $array_options;
1055
+			}
1037 1056
 
1038 1057
 			//var_dump($line);
1039 1058
 			$this->lines[$num] = $line;
@@ -1055,25 +1074,63 @@  discard block
 block discarded – undo
1055 1074
 
1056 1075
 		// Clean parameters
1057 1076
 
1058
-		if (isset($this->ref)) $this->ref=trim($this->ref);
1059
-		if (isset($this->entity)) $this->entity=trim($this->entity);
1060
-		if (isset($this->ref_customer)) $this->ref_customer=trim($this->ref_customer);
1061
-		if (isset($this->socid)) $this->socid=trim($this->socid);
1062
-		if (isset($this->fk_user_author)) $this->fk_user_author=trim($this->fk_user_author);
1063
-		if (isset($this->fk_user_valid)) $this->fk_user_valid=trim($this->fk_user_valid);
1064
-		if (isset($this->fk_delivery_address)) $this->fk_delivery_address=trim($this->fk_delivery_address);
1065
-		if (isset($this->shipping_method_id)) $this->shipping_method_id=trim($this->shipping_method_id);
1066
-		if (isset($this->tracking_number)) $this->tracking_number=trim($this->tracking_number);
1067
-		if (isset($this->statut)) $this->statut=(int) $this->statut;
1068
-		if (isset($this->trueDepth)) $this->trueDepth=trim($this->trueDepth);
1069
-		if (isset($this->trueWidth)) $this->trueWidth=trim($this->trueWidth);
1070
-		if (isset($this->trueHeight)) $this->trueHeight=trim($this->trueHeight);
1071
-		if (isset($this->size_units)) $this->size_units=trim($this->size_units);
1072
-		if (isset($this->weight_units)) $this->weight_units=trim($this->weight_units);
1073
-		if (isset($this->trueWeight)) $this->weight=trim($this->trueWeight);
1074
-		if (isset($this->note_private)) $this->note=trim($this->note_private);
1075
-		if (isset($this->note_public)) $this->note=trim($this->note_public);
1076
-		if (isset($this->modelpdf)) $this->modelpdf=trim($this->modelpdf);
1077
+		if (isset($this->ref)) {
1078
+		    $this->ref=trim($this->ref);
1079
+		}
1080
+		if (isset($this->entity)) {
1081
+		    $this->entity=trim($this->entity);
1082
+		}
1083
+		if (isset($this->ref_customer)) {
1084
+		    $this->ref_customer=trim($this->ref_customer);
1085
+		}
1086
+		if (isset($this->socid)) {
1087
+		    $this->socid=trim($this->socid);
1088
+		}
1089
+		if (isset($this->fk_user_author)) {
1090
+		    $this->fk_user_author=trim($this->fk_user_author);
1091
+		}
1092
+		if (isset($this->fk_user_valid)) {
1093
+		    $this->fk_user_valid=trim($this->fk_user_valid);
1094
+		}
1095
+		if (isset($this->fk_delivery_address)) {
1096
+		    $this->fk_delivery_address=trim($this->fk_delivery_address);
1097
+		}
1098
+		if (isset($this->shipping_method_id)) {
1099
+		    $this->shipping_method_id=trim($this->shipping_method_id);
1100
+		}
1101
+		if (isset($this->tracking_number)) {
1102
+		    $this->tracking_number=trim($this->tracking_number);
1103
+		}
1104
+		if (isset($this->statut)) {
1105
+		    $this->statut=(int) $this->statut;
1106
+		}
1107
+		if (isset($this->trueDepth)) {
1108
+		    $this->trueDepth=trim($this->trueDepth);
1109
+		}
1110
+		if (isset($this->trueWidth)) {
1111
+		    $this->trueWidth=trim($this->trueWidth);
1112
+		}
1113
+		if (isset($this->trueHeight)) {
1114
+		    $this->trueHeight=trim($this->trueHeight);
1115
+		}
1116
+		if (isset($this->size_units)) {
1117
+		    $this->size_units=trim($this->size_units);
1118
+		}
1119
+		if (isset($this->weight_units)) {
1120
+		    $this->weight_units=trim($this->weight_units);
1121
+		}
1122
+		if (isset($this->trueWeight)) {
1123
+		    $this->weight=trim($this->trueWeight);
1124
+		}
1125
+		if (isset($this->note_private)) {
1126
+		    $this->note=trim($this->note_private);
1127
+		}
1128
+		if (isset($this->note_public)) {
1129
+		    $this->note=trim($this->note_public);
1130
+		}
1131
+		if (isset($this->modelpdf)) {
1132
+		    $this->modelpdf=trim($this->modelpdf);
1133
+		}
1077 1134
 
1078 1135
 
1079 1136
 
@@ -1138,8 +1195,7 @@  discard block
 block discarded – undo
1138 1195
 			}
1139 1196
 			$this->db->rollback();
1140 1197
 			return -1*$error;
1141
-		}
1142
-		else
1198
+		} else
1143 1199
 		{
1144 1200
 			$this->db->commit();
1145 1201
 			return 1;
@@ -1230,8 +1286,7 @@  discard block
 block discarded – undo
1230 1286
 							$error++;$this->errors=$this->errors + $mouvS->errors;
1231 1287
 							break;
1232 1288
 						}
1233
-					}
1234
-					else
1289
+					} else
1235 1290
 					{
1236 1291
 						// We increment stock of batches
1237 1292
 						// We use warehouse selected for each line
@@ -1244,11 +1299,13 @@  discard block
 block discarded – undo
1244 1299
 								break;
1245 1300
 							}
1246 1301
 						}
1247
-						if ($error) break; // break for loop incase of error
1302
+						if ($error) {
1303
+						    break;
1304
+						}
1305
+						// break for loop incase of error
1248 1306
 					}
1249 1307
 				}
1250
-			}
1251
-			else
1308
+			} else
1252 1309
 			{
1253 1310
 				$error++;$this->errors[]="Error ".$this->db->lasterror();
1254 1311
 			}
@@ -1272,7 +1329,9 @@  discard block
 block discarded – undo
1272 1329
 			{
1273 1330
 				// Delete linked object
1274 1331
 				$res = $this->deleteObjectLinked();
1275
-				if ($res < 0) $error++;
1332
+				if ($res < 0) {
1333
+				    $error++;
1334
+				}
1276 1335
 
1277 1336
 				if (! $error)
1278 1337
 				{
@@ -1285,10 +1344,12 @@  discard block
 block discarded – undo
1285 1344
 						{
1286 1345
 							$this->fetch_origin();
1287 1346
 							$origin=$this->origin;
1288
-							if ($this->$origin->statut == Commande::STATUS_SHIPMENTONPROCESS)     // If order source of shipment is "shipment in progress"
1347
+							if ($this->$origin->statut == Commande::STATUS_SHIPMENTONPROCESS) {
1348
+							    // If order source of shipment is "shipment in progress"
1289 1349
 							{
1290 1350
 								// Check if there is no more shipment. If not, we can move back status of order to "validated" instead of "shipment in progress"
1291 1351
 								$this->$origin->loadExpeditions();
1352
+							}
1292 1353
 								//var_dump($this->$origin->expeditions);exit;
1293 1354
 								if (count($this->$origin->expeditions) <= 0)
1294 1355
 								{
@@ -1325,35 +1386,30 @@  discard block
 block discarded – undo
1325 1386
 							}
1326 1387
 
1327 1388
 							return 1;
1328
-						}
1329
-						else
1389
+						} else
1330 1390
 						{
1331 1391
 							$this->db->rollback();
1332 1392
 							return -1;
1333 1393
 						}
1334
-					}
1335
-					else
1394
+					} else
1336 1395
 					{
1337 1396
 						$this->error=$this->db->lasterror()." - sql=$sql";
1338 1397
 						$this->db->rollback();
1339 1398
 						return -3;
1340 1399
 					}
1341
-				}
1342
-				else
1400
+				} else
1343 1401
 				{
1344 1402
 					$this->error=$this->db->lasterror()." - sql=$sql";
1345 1403
 					$this->db->rollback();
1346 1404
 					return -2;
1347 1405
 				}
1348
-			}
1349
-			else
1406
+			} else
1350 1407
 			{
1351 1408
 				$this->error=$this->db->lasterror()." - sql=$sql";
1352 1409
 				$this->db->rollback();
1353 1410
 				return -1;
1354 1411
 			}
1355
-		}
1356
-		else
1412
+		} else
1357 1413
 		{
1358 1414
 			$this->db->rollback();
1359 1415
 			return -1;
@@ -1506,8 +1562,7 @@  discard block
 block discarded – undo
1506 1562
 						if ($originline != $obj->fk_origin_line)
1507 1563
 						{
1508 1564
 							$line->detail_batch = $newdetailbatch;
1509
-						}
1510
-						else
1565
+						} else
1511 1566
 						{
1512 1567
 							$line->detail_batch = array_merge($line->detail_batch, $newdetailbatch);
1513 1568
 						}
@@ -1518,8 +1573,7 @@  discard block
 block discarded – undo
1518 1573
 				{
1519 1574
 					$this->lines[$lineindex] = $line;
1520 1575
 					$lineindex++;
1521
-				}
1522
-				else
1576
+				} else
1523 1577
 				{
1524 1578
 					$line->total_ht			+= $tabprice[0];
1525 1579
 					$line->total_localtax1 	+= $tabprice[9];
@@ -1533,8 +1587,7 @@  discard block
 block discarded – undo
1533 1587
 			}
1534 1588
 			$this->db->free($resql);
1535 1589
 			return 1;
1536
-		}
1537
-		else
1590
+		} else
1538 1591
 		{
1539 1592
 			$this->error=$this->db->error();
1540 1593
 			return -3;
@@ -1567,14 +1620,12 @@  discard block
 block discarded – undo
1567 1620
 
1568 1621
 				$this->db->commit();
1569 1622
 				return 1;
1570
-			}
1571
-			else
1623
+			} else
1572 1624
 			{
1573 1625
 				$this->db->rollback();
1574 1626
 				return -1;
1575 1627
 			}
1576
-		}
1577
-		else
1628
+		} else
1578 1629
 		{
1579 1630
 			$this->error='ErrorDeleteLineNotAllowedByObjectStatus';
1580 1631
 			return -2;
@@ -1604,14 +1655,20 @@  discard block
 block discarded – undo
1604 1655
 
1605 1656
 		$url = DOL_URL_ROOT.'/expedition/card.php?id='.$this->id;
1606 1657
 
1607
-		if ($short) return $url;
1658
+		if ($short) {
1659
+		    return $url;
1660
+		}
1608 1661
 
1609 1662
 		if ($option !== 'nolink')
1610 1663
 		{
1611 1664
 			// Add param to save lastsearch_values or not
1612 1665
 			$add_save_lastsearch_values=($save_lastsearch_value == 1 ? 1 : 0);
1613
-			if ($save_lastsearch_value == -1 && preg_match('/list\.php/',$_SERVER["PHP_SELF"])) $add_save_lastsearch_values=1;
1614
-			if ($add_save_lastsearch_values) $url.='&save_lastsearch_values=1';
1666
+			if ($save_lastsearch_value == -1 && preg_match('/list\.php/',$_SERVER["PHP_SELF"])) {
1667
+			    $add_save_lastsearch_values=1;
1668
+			}
1669
+			if ($add_save_lastsearch_values) {
1670
+			    $url.='&save_lastsearch_values=1';
1671
+			}
1615 1672
 		}
1616 1673
 
1617 1674
 		$linkclose='';
@@ -1630,8 +1687,12 @@  discard block
 block discarded – undo
1630 1687
 		$linkend='</a>';
1631 1688
 
1632 1689
 		$result .= $linkstart;
1633
-		if ($withpicto) $result.=img_object(($notooltip?'':$label), $this->picto, ($notooltip?(($withpicto != 2) ? 'class="paddingright"' : ''):'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip?0:1);
1634
-		if ($withpicto != 2) $result.= $this->ref;
1690
+		if ($withpicto) {
1691
+		    $result.=img_object(($notooltip?'':$label), $this->picto, ($notooltip?(($withpicto != 2) ? 'class="paddingright"' : ''):'class="'.(($withpicto != 2) ? 'paddingright ' : '').'classfortooltip"'), 0, 0, $notooltip?0:1);
1692
+		}
1693
+		if ($withpicto != 2) {
1694
+		    $result.= $this->ref;
1695
+		}
1635 1696
 		$result .= $linkend;
1636 1697
 
1637 1698
 		return $result;
@@ -1663,33 +1724,49 @@  discard block
 block discarded – undo
1663 1724
 
1664 1725
 		if ($mode==0)
1665 1726
 		{
1666
-			if ($statut==0) return $langs->trans($this->statuts[$statut]);
1667
-			elseif ($statut==1) return $langs->trans($this->statuts[$statut]);
1668
-			elseif ($statut==2) return $langs->trans($this->statuts[$statut]);
1669
-		}
1670
-		elseif ($mode==1)
1671
-		{
1672
-			if ($statut==0) return $langs->trans($this->statutshorts[$statut]);
1673
-			elseif ($statut==1) return $langs->trans($this->statutshorts[$statut]);
1674
-			elseif ($statut==2) return $langs->trans($this->statutshorts[$statut]);
1675
-		}
1676
-		elseif ($mode == 3)
1677
-		{
1678
-			if ($statut==0) return img_picto($langs->trans($this->statuts[$statut]),'statut0');
1679
-			elseif ($statut==1) return img_picto($langs->trans($this->statuts[$statut]),'statut4');
1680
-			elseif ($statut==2) return img_picto($langs->trans($this->statuts[$statut]),'statut6');
1681
-		}
1682
-		elseif ($mode == 4)
1683
-		{
1684
-			if ($statut==0) return img_picto($langs->trans($this->statuts[$statut]),'statut0').' '.$langs->trans($this->statuts[$statut]);
1685
-			elseif ($statut==1) return img_picto($langs->trans($this->statuts[$statut]),'statut4').' '.$langs->trans($this->statuts[$statut]);
1686
-			elseif ($statut==2) return img_picto($langs->trans($this->statuts[$statut]),'statut6').' '.$langs->trans($this->statuts[$statut]);
1687
-		}
1688
-		elseif ($mode == 5)
1689
-		{
1690
-			if ($statut==0) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut0');
1691
-			elseif ($statut==1) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut4');
1692
-			elseif ($statut==2) return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut6');
1727
+			if ($statut==0) {
1728
+			    return $langs->trans($this->statuts[$statut]);
1729
+			} elseif ($statut==1) {
1730
+			    return $langs->trans($this->statuts[$statut]);
1731
+			} elseif ($statut==2) {
1732
+			    return $langs->trans($this->statuts[$statut]);
1733
+			}
1734
+		} elseif ($mode==1)
1735
+		{
1736
+			if ($statut==0) {
1737
+			    return $langs->trans($this->statutshorts[$statut]);
1738
+			} elseif ($statut==1) {
1739
+			    return $langs->trans($this->statutshorts[$statut]);
1740
+			} elseif ($statut==2) {
1741
+			    return $langs->trans($this->statutshorts[$statut]);
1742
+			}
1743
+		} elseif ($mode == 3)
1744
+		{
1745
+			if ($statut==0) {
1746
+			    return img_picto($langs->trans($this->statuts[$statut]),'statut0');
1747
+			} elseif ($statut==1) {
1748
+			    return img_picto($langs->trans($this->statuts[$statut]),'statut4');
1749
+			} elseif ($statut==2) {
1750
+			    return img_picto($langs->trans($this->statuts[$statut]),'statut6');
1751
+			}
1752
+		} elseif ($mode == 4)
1753
+		{
1754
+			if ($statut==0) {
1755
+			    return img_picto($langs->trans($this->statuts[$statut]),'statut0').' '.$langs->trans($this->statuts[$statut]);
1756
+			} elseif ($statut==1) {
1757
+			    return img_picto($langs->trans($this->statuts[$statut]),'statut4').' '.$langs->trans($this->statuts[$statut]);
1758
+			} elseif ($statut==2) {
1759
+			    return img_picto($langs->trans($this->statuts[$statut]),'statut6').' '.$langs->trans($this->statuts[$statut]);
1760
+			}
1761
+		} elseif ($mode == 5)
1762
+		{
1763
+			if ($statut==0) {
1764
+			    return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut0');
1765
+			} elseif ($statut==1) {
1766
+			    return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut4');
1767
+			} elseif ($statut==2) {
1768
+			    return $langs->trans($this->statutshorts[$statut]).' '.img_picto($langs->trans($this->statuts[$statut]),'statut6');
1769
+			}
1693 1770
 		}
1694 1771
 	}
1695 1772
 
@@ -1795,14 +1872,12 @@  discard block
 block discarded – undo
1795 1872
 			{
1796 1873
 				$this->date_delivery = $date_livraison;
1797 1874
 				return 1;
1798
-			}
1799
-			else
1875
+			} else
1800 1876
 			{
1801 1877
 				$this->error=$this->db->error();
1802 1878
 				return -1;
1803 1879
 			}
1804
-		}
1805
-		else
1880
+		} else
1806 1881
 		{
1807 1882
 			return -2;
1808 1883
 		}
@@ -1853,7 +1928,9 @@  discard block
 block discarded – undo
1853 1928
 
1854 1929
 		$sql = "SELECT em.rowid, em.code, em.libelle, em.description, em.tracking, em.active";
1855 1930
 		$sql.= " FROM ".MAIN_DB_PREFIX."c_shipment_mode as em";
1856
-		if ($id!='') $sql.= " WHERE em.rowid=".$id;
1931
+		if ($id!='') {
1932
+		    $sql.= " WHERE em.rowid=".$id;
1933
+		}
1857 1934
 
1858 1935
 		$resql = $this->db->query($sql);
1859 1936
 		if ($resql)
@@ -1888,8 +1965,7 @@  discard block
 block discarded – undo
1888 1965
 			$sql = "INSERT INTO ".MAIN_DB_PREFIX."c_shipment_mode (code, libelle, description, tracking)";
1889 1966
 			$sql.=" VALUES ('".$this->db->escape($this->update['code'])."','".$this->db->escape($this->update['libelle'])."','".$this->db->escape($this->update['description'])."','".$this->db->escape($this->update['tracking'])."')";
1890 1967
 			$resql = $this->db->query($sql);
1891
-		}
1892
-		else
1968
+		} else
1893 1969
 		{
1894 1970
 			$sql = "UPDATE ".MAIN_DB_PREFIX."c_shipment_mode SET";
1895 1971
 			$sql.= " code='".$this->db->escape($this->update['code'])."'";
@@ -1899,7 +1975,9 @@  discard block
 block discarded – undo
1899 1975
 			$sql.= " WHERE rowid=".$id;
1900 1976
 			$resql = $this->db->query($sql);
1901 1977
 		}
1902
-		if ($resql < 0) dol_print_error($this->db,'');
1978
+		if ($resql < 0) {
1979
+		    dol_print_error($this->db,'');
1980
+		}
1903 1981
 	}
1904 1982
 
1905 1983
     // phpcs:disable PEAR.NamingConventions.ValidFunctionName.NotCamelCaps
@@ -1965,8 +2043,7 @@  discard block
 block discarded – undo
1965 2043
 		{
1966 2044
 			$url = str_replace('{TRACKID}', $value, $tracking);
1967 2045
 			$this->tracking_url = sprintf('<a target="_blank" href="%s">'.($value?$value:'url').'</a>',$url,$url);
1968
-		}
1969
-		else
2046
+		} else
1970 2047
 		{
1971 2048
 			$this->tracking_url = $value;
1972 2049
 		}
@@ -2051,12 +2128,13 @@  discard block
 block discarded – undo
2051 2128
 						if (empty($obj->edbrowid))
2052 2129
 						{
2053 2130
 							$qty = $obj->qty;
2054
-						}
2055
-						else
2131
+						} else
2056 2132
 						{
2057 2133
 							$qty = $obj->edbqty;
2058 2134
 						}
2059
-						if ($qty <= 0) continue;
2135
+						if ($qty <= 0) {
2136
+						    continue;
2137
+						}
2060 2138
 						dol_syslog(get_class($this)."::valid movement index ".$i." ed.rowid=".$obj->rowid." edb.rowid=".$obj->edbrowid);
2061 2139
 
2062 2140
 						$mouvS = new MouvementStock($this->db);
@@ -2073,8 +2151,7 @@  discard block
 block discarded – undo
2073 2151
 								$this->errors = $mouvS->errors;
2074 2152
 								$error++; break;
2075 2153
 							}
2076
-						}
2077
-						else
2154
+						} else
2078 2155
 						{
2079 2156
 							// line with batch detail
2080 2157
 
@@ -2087,8 +2164,7 @@  discard block
 block discarded – undo
2087 2164
 							}
2088 2165
 						}
2089 2166
 					}
2090
-				}
2091
-				else
2167
+				} else
2092 2168
 				{
2093 2169
 					$this->error=$this->db->lasterror();
2094 2170
 					$error++;
@@ -2103,8 +2179,7 @@  discard block
 block discarded – undo
2103 2179
 					$error++;
2104 2180
 				}
2105 2181
 			}
2106
-		}
2107
-		else
2182
+		} else
2108 2183
 		{
2109 2184
 			dol_print_error($this->db);
2110 2185
 			$error++;
@@ -2114,8 +2189,7 @@  discard block
 block discarded – undo
2114 2189
 		{
2115 2190
 			$this->db->commit();
2116 2191
 			return 1;
2117
-		}
2118
-		else
2192
+		} else
2119 2193
 		{
2120 2194
 			$this->db->rollback();
2121 2195
 			return -1;
@@ -2158,8 +2232,7 @@  discard block
 block discarded – undo
2158 2232
 		if (empty($error)) {
2159 2233
 			$this->db->commit();
2160 2234
 			return 1;
2161
-		}
2162
-		else
2235
+		} else
2163 2236
 		{
2164 2237
 			$this->db->rollback();
2165 2238
 			return -1;
@@ -2223,12 +2296,13 @@  discard block
 block discarded – undo
2223 2296
 						if (empty($obj->edbrowid))
2224 2297
 						{
2225 2298
 							$qty = $obj->qty;
2226
-						}
2227
-						else
2299
+						} else
2228 2300
 						{
2229 2301
 							$qty = $obj->edbqty;
2230 2302
 						}
2231
-						if ($qty <= 0) continue;
2303
+						if ($qty <= 0) {
2304
+						    continue;
2305
+						}
2232 2306
 						dol_syslog(get_class($this)."::reopen expedition movement index ".$i." ed.rowid=".$obj->rowid." edb.rowid=".$obj->edbrowid);
2233 2307
 
2234 2308
 						//var_dump($this->lines[$i]);
@@ -2246,8 +2320,7 @@  discard block
 block discarded – undo
2246 2320
 								$this->errors = $mouvS->errors;
2247 2321
 								$error++; break;
2248 2322
 							}
2249
-						}
2250
-						else
2323
+						} else
2251 2324
 						{
2252 2325
 							// line with batch detail
2253 2326
 
@@ -2260,8 +2333,7 @@  discard block
 block discarded – undo
2260 2333
 							}
2261 2334
 						}
2262 2335
 					}
2263
-				}
2264
-				else
2336
+				} else
2265 2337
 				{
2266 2338
 					$this->error=$this->db->lasterror();
2267 2339
 					$error++;
@@ -2285,8 +2357,7 @@  discard block
 block discarded – undo
2285 2357
 		{
2286 2358
 			$this->db->commit();
2287 2359
 			return 1;
2288
-		}
2289
-		else
2360
+		} else
2290 2361
 		{
2291 2362
 			$this->db->rollback();
2292 2363
 			return -1;
@@ -2533,8 +2604,7 @@  discard block
 block discarded – undo
2533 2604
 			$this->db->free($result);
2534 2605
 
2535 2606
 			return 1;
2536
-		}
2537
-		else
2607
+		} else
2538 2608
 		{
2539 2609
 			$this->errors[] = $this->db->lasterror();
2540 2610
 			$this->error = $this->db->lasterror();
@@ -2562,7 +2632,9 @@  discard block
 block discarded – undo
2562 2632
 			return -1;
2563 2633
 		}
2564 2634
 		// Clean parameters
2565
-		if (empty($this->entrepot_id)) $this->entrepot_id='null';
2635
+		if (empty($this->entrepot_id)) {
2636
+		    $this->entrepot_id='null';
2637
+		}
2566 2638
 
2567 2639
 		$this->db->begin();
2568 2640
 
@@ -2617,8 +2689,7 @@  discard block
 block discarded – undo
2617 2689
 
2618 2690
 			$this->db->rollback();
2619 2691
 			return -1*$error;
2620
-		}
2621
-		else
2692
+		} else
2622 2693
 		{
2623 2694
 			$error++;
2624 2695
 		}
@@ -2658,9 +2729,11 @@  discard block
 block discarded – undo
2658 2729
 		if (! $error && $this->db->query($sql))
2659 2730
 		{
2660 2731
 			// Remove extrafields
2661
-			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) // For avoid conflicts if trigger used
2732
+			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) {
2733
+			    // For avoid conflicts if trigger used
2662 2734
 			{
2663 2735
 				$result=$this->deleteExtraFields();
2736
+			}
2664 2737
 				if ($result < 0)
2665 2738
 				{
2666 2739
 					$this->errors[]=$this->error;
@@ -2678,8 +2751,7 @@  discard block
 block discarded – undo
2678 2751
 				}
2679 2752
 				// End call triggers
2680 2753
 			}
2681
-		}
2682
-		else
2754
+		} else
2683 2755
 		{
2684 2756
 			$this->errors[]=$this->db->lasterror()." - sql=$sql";
2685 2757
 			$error++;
@@ -2688,8 +2760,7 @@  discard block
 block discarded – undo
2688 2760
 		if (! $error) {
2689 2761
 			$this->db->commit();
2690 2762
 			return 1;
2691
-		}
2692
-		else
2763
+		} else
2693 2764
 		{
2694 2765
 			foreach($this->errors as $errmsg)
2695 2766
 			{
@@ -2719,21 +2790,24 @@  discard block
 block discarded – undo
2719 2790
 		$this->db->begin();
2720 2791
 
2721 2792
 		// Clean parameters
2722
-		if (empty($this->qty)) $this->qty=0;
2793
+		if (empty($this->qty)) {
2794
+		    $this->qty=0;
2795
+		}
2723 2796
 		$qty=price2num($this->qty);
2724 2797
 		$remainingQty = 0;
2725 2798
 		$batch = null;
2726 2799
 		$batch_id = null;
2727 2800
 		$expedition_batch_id = null;
2728
-		if (is_array($this->detail_batch)) 	// array of ExpeditionLineBatch
2801
+		if (is_array($this->detail_batch)) {
2802
+		    // array of ExpeditionLineBatch
2729 2803
 		{
2730 2804
 			if (count($this->detail_batch) > 1)
2731 2805
 			{
2732 2806
 				dol_syslog(get_class($this).'::update only possible for one batch', LOG_ERR);
2807
+		}
2733 2808
 				$this->errors[]='ErrorBadParameters';
2734 2809
 				$error++;
2735
-			}
2736
-			else
2810
+			} else
2737 2811
 			{
2738 2812
 				$batch = $this->detail_batch[0]->batch;
2739 2813
 				$batch_id = $this->detail_batch[0]->fk_origin_stock;
@@ -2746,8 +2820,7 @@  discard block
 block discarded – undo
2746 2820
 				}
2747 2821
 				$qty = price2num($this->detail_batch[0]->qty);
2748 2822
 			}
2749
-		}
2750
-		else if (! empty($this->detail_batch))
2823
+		} else if (! empty($this->detail_batch))
2751 2824
 		{
2752 2825
 			$batch = $this->detail_batch->batch;
2753 2826
 			$batch_id = $this->detail_batch->fk_origin_stock;
@@ -2788,8 +2861,7 @@  discard block
 block discarded – undo
2788 2861
 			{
2789 2862
 				$this->errors[]=$this->db->lasterror()." - ExpeditionLineBatch::fetchAll";
2790 2863
 				$error++;
2791
-			}
2792
-			else
2864
+			} else
2793 2865
 			{
2794 2866
 				// caculate new total line qty
2795 2867
 				foreach ($lotArray as $lot)
@@ -2862,9 +2934,11 @@  discard block
 block discarded – undo
2862 2934
 
2863 2935
 		if (! $error)
2864 2936
 		{
2865
-			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) // For avoid conflicts if trigger used
2937
+			if (empty($conf->global->MAIN_EXTRAFIELDS_DISABLED)) {
2938
+			    // For avoid conflicts if trigger used
2866 2939
 			{
2867 2940
 				$result=$this->insertExtraFields();
2941
+			}
2868 2942
 				if ($result < 0)
2869 2943
 				{
2870 2944
 					$this->errors[]=$this->error;
@@ -2887,8 +2961,7 @@  discard block
 block discarded – undo
2887 2961
 		if (!$error) {
2888 2962
 			$this->db->commit();
2889 2963
 			return 1;
2890
-		}
2891
-		else
2964
+		} else
2892 2965
 		{
2893 2966
 			foreach($this->errors as $errmsg)
2894 2967
 			{
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/class/expeditionstats.class.php 2 patches
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
  *  \brief      File of class fo tmanage shipment statistics
25 25
  */
26 26
 
27
-include_once DOL_DOCUMENT_ROOT . '/core/class/stats.class.php';
28
-include_once DOL_DOCUMENT_ROOT . '/expedition/class/expedition.class.php';
29
-include_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php';
27
+include_once DOL_DOCUMENT_ROOT.'/core/class/stats.class.php';
28
+include_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
29
+include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
30 30
 
31 31
 
32 32
 /**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	 * @param 	string	$mode	   	Option (not used)
56 56
 	 * @param   int		$userid    	Id user for filter (creation user)
57 57
      */
58
-    function __construct($db, $socid, $mode, $userid=0)
58
+    function __construct($db, $socid, $mode, $userid = 0)
59 59
     {
60 60
 		global $user, $conf;
61 61
 
@@ -65,20 +65,20 @@  discard block
 block discarded – undo
65 65
         $this->userid = $userid;
66 66
 		$this->cachefilesuffix = $mode;
67 67
 
68
-        $object=new Expedition($this->db);
68
+        $object = new Expedition($this->db);
69 69
 		$this->from = MAIN_DB_PREFIX.$object->table_element." as c";
70 70
 		//$this->from.= ", ".MAIN_DB_PREFIX."societe as s";
71
-		$this->field='weight';	// Warning, unit of weight is NOT USED AND MUST BE
72
-		$this->where.= " c.fk_statut > 0";    // Not draft and not cancelled
71
+		$this->field = 'weight'; // Warning, unit of weight is NOT USED AND MUST BE
72
+		$this->where .= " c.fk_statut > 0"; // Not draft and not cancelled
73 73
 
74 74
 		//$this->where.= " AND c.fk_soc = s.rowid AND c.entity = ".$conf->entity;
75
-		$this->where.= " AND c.entity = ".$conf->entity;
76
-		if (!$user->rights->societe->client->voir && !$this->socid) $this->where .= " AND c.fk_soc = sc.fk_soc AND sc.fk_user = " .$user->id;
75
+		$this->where .= " AND c.entity = ".$conf->entity;
76
+		if (!$user->rights->societe->client->voir && !$this->socid) $this->where .= " AND c.fk_soc = sc.fk_soc AND sc.fk_user = ".$user->id;
77 77
 		if ($this->socid)
78 78
 		{
79
-			$this->where.=" AND c.fk_soc = ".$this->socid;
79
+			$this->where .= " AND c.fk_soc = ".$this->socid;
80 80
 		}
81
-        if ($this->userid > 0) $this->where.=' AND c.fk_user_author = '.$this->userid;
81
+        if ($this->userid > 0) $this->where .= ' AND c.fk_user_author = '.$this->userid;
82 82
     }
83 83
 
84 84
     /**
@@ -88,19 +88,19 @@  discard block
 block discarded – undo
88 88
      *	@param	int		$format		0=Label of absiss is a translated text, 1=Label of absiss is month number, 2=Label of absiss is first letter of month
89 89
 	 * @return	array				Array with number by month
90 90
      */
91
-    function getNbByMonth($year, $format=0)
91
+    function getNbByMonth($year, $format = 0)
92 92
     {
93 93
         global $user;
94 94
 
95 95
         $sql = "SELECT date_format(c.date_valid,'%m') as dm, COUNT(*) as nb";
96
-		$sql.= " FROM ".$this->from;
96
+		$sql .= " FROM ".$this->from;
97 97
 		if (!$user->rights->societe->client->voir && !$this->socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
98
-		$sql.= " WHERE c.date_valid BETWEEN '".$this->db->idate(dol_get_first_day($year))."' AND '".$this->db->idate(dol_get_last_day($year))."'";
99
-		$sql.= " AND ".$this->where;
100
-		$sql.= " GROUP BY dm";
101
-        $sql.= $this->db->order('dm','DESC');
98
+		$sql .= " WHERE c.date_valid BETWEEN '".$this->db->idate(dol_get_first_day($year))."' AND '".$this->db->idate(dol_get_last_day($year))."'";
99
+		$sql .= " AND ".$this->where;
100
+		$sql .= " GROUP BY dm";
101
+        $sql .= $this->db->order('dm', 'DESC');
102 102
 
103
-		$res=$this->_getNbByMonth($year, $sql, $format);
103
+		$res = $this->_getNbByMonth($year, $sql, $format);
104 104
 		return $res;
105 105
     }
106 106
 
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
 		global $user;
116 116
 
117 117
 		$sql = "SELECT date_format(c.date_valid,'%Y') as dm, COUNT(*) as nb, SUM(c.".$this->field.")";
118
-		$sql.= " FROM ".$this->from;
118
+		$sql .= " FROM ".$this->from;
119 119
 		if (!$user->rights->societe->client->voir && !$this->socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
120
-		$sql.= " WHERE ".$this->where;
121
-		$sql.= " GROUP BY dm";
122
-        $sql.= $this->db->order('dm','DESC');
120
+		$sql .= " WHERE ".$this->where;
121
+		$sql .= " GROUP BY dm";
122
+        $sql .= $this->db->order('dm', 'DESC');
123 123
 
124 124
 		return $this->_getNbByYear($sql);
125 125
 	}
@@ -134,11 +134,11 @@  discard block
 block discarded – undo
134 134
 		global $user;
135 135
 
136 136
 		$sql = "SELECT date_format(c.date_valid,'%Y') as year, COUNT(*) as nb, SUM(c.".$this->field.") as total, AVG(".$this->field.") as avg";
137
-		$sql.= " FROM ".$this->from;
137
+		$sql .= " FROM ".$this->from;
138 138
 		if (!$user->rights->societe->client->voir && !$this->socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
139
-		$sql.= " WHERE ".$this->where;
140
-		$sql.= " GROUP BY year";
141
-        $sql.= $this->db->order('year','DESC');
139
+		$sql .= " WHERE ".$this->where;
140
+		$sql .= " GROUP BY year";
141
+        $sql .= $this->db->order('year', 'DESC');
142 142
 
143 143
 		return $this->_getAllByYear($sql);
144 144
 	}
Please login to merge, or discard this patch.
Braces   +15 added lines, -5 removed lines patch added patch discarded remove patch
@@ -73,12 +73,16 @@  discard block
 block discarded – undo
73 73
 
74 74
 		//$this->where.= " AND c.fk_soc = s.rowid AND c.entity = ".$conf->entity;
75 75
 		$this->where.= " AND c.entity = ".$conf->entity;
76
-		if (!$user->rights->societe->client->voir && !$this->socid) $this->where .= " AND c.fk_soc = sc.fk_soc AND sc.fk_user = " .$user->id;
76
+		if (!$user->rights->societe->client->voir && !$this->socid) {
77
+		    $this->where .= " AND c.fk_soc = sc.fk_soc AND sc.fk_user = " .$user->id;
78
+		}
77 79
 		if ($this->socid)
78 80
 		{
79 81
 			$this->where.=" AND c.fk_soc = ".$this->socid;
80 82
 		}
81
-        if ($this->userid > 0) $this->where.=' AND c.fk_user_author = '.$this->userid;
83
+        if ($this->userid > 0) {
84
+            $this->where.=' AND c.fk_user_author = '.$this->userid;
85
+        }
82 86
     }
83 87
 
84 88
     /**
@@ -94,7 +98,9 @@  discard block
 block discarded – undo
94 98
 
95 99
         $sql = "SELECT date_format(c.date_valid,'%m') as dm, COUNT(*) as nb";
96 100
 		$sql.= " FROM ".$this->from;
97
-		if (!$user->rights->societe->client->voir && !$this->socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
101
+		if (!$user->rights->societe->client->voir && !$this->socid) {
102
+		    $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
103
+		}
98 104
 		$sql.= " WHERE c.date_valid BETWEEN '".$this->db->idate(dol_get_first_day($year))."' AND '".$this->db->idate(dol_get_last_day($year))."'";
99 105
 		$sql.= " AND ".$this->where;
100 106
 		$sql.= " GROUP BY dm";
@@ -116,7 +122,9 @@  discard block
 block discarded – undo
116 122
 
117 123
 		$sql = "SELECT date_format(c.date_valid,'%Y') as dm, COUNT(*) as nb, SUM(c.".$this->field.")";
118 124
 		$sql.= " FROM ".$this->from;
119
-		if (!$user->rights->societe->client->voir && !$this->socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
125
+		if (!$user->rights->societe->client->voir && !$this->socid) {
126
+		    $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
127
+		}
120 128
 		$sql.= " WHERE ".$this->where;
121 129
 		$sql.= " GROUP BY dm";
122 130
         $sql.= $this->db->order('dm','DESC');
@@ -135,7 +143,9 @@  discard block
 block discarded – undo
135 143
 
136 144
 		$sql = "SELECT date_format(c.date_valid,'%Y') as year, COUNT(*) as nb, SUM(c.".$this->field.") as total, AVG(".$this->field.") as avg";
137 145
 		$sql.= " FROM ".$this->from;
138
-		if (!$user->rights->societe->client->voir && !$this->socid) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
146
+		if (!$user->rights->societe->client->voir && !$this->socid) {
147
+		    $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
148
+		}
139 149
 		$sql.= " WHERE ".$this->where;
140 150
 		$sql.= " GROUP BY year";
141 151
         $sql.= $this->db->order('year','DESC');
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/class/api_shipments.class.php 2 patches
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -65,16 +65,16 @@  discard block
 block discarded – undo
65 65
      */
66 66
     function get($id)
67 67
     {
68
-		if(! DolibarrApiAccess::$user->rights->expedition->lire) {
68
+		if (!DolibarrApiAccess::$user->rights->expedition->lire) {
69 69
 			throw new RestException(401);
70 70
 		}
71 71
 
72 72
         $result = $this->shipment->fetch($id);
73
-        if( ! $result ) {
73
+        if (!$result) {
74 74
             throw new RestException(404, 'Shipment not found');
75 75
         }
76 76
 
77
-		if( ! DolibarrApi::_checkAccessToResource('expedition',$this->shipment->id)) {
77
+		if (!DolibarrApi::_checkAccessToResource('expedition', $this->shipment->id)) {
78 78
 			throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
79 79
 		}
80 80
 
@@ -110,18 +110,18 @@  discard block
 block discarded – undo
110 110
 
111 111
         // If the internal user must only see his customers, force searching by him
112 112
         $search_sale = 0;
113
-        if (! DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) $search_sale = DolibarrApiAccess::$user->id;
113
+        if (!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) $search_sale = DolibarrApiAccess::$user->id;
114 114
 
115 115
         $sql = "SELECT t.rowid";
116 116
         if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql .= ", sc.fk_soc, sc.fk_user"; // We need these fields in order to filter by sale (including the case where the user can only see his prospects)
117
-        $sql.= " FROM ".MAIN_DB_PREFIX."expedition as t";
117
+        $sql .= " FROM ".MAIN_DB_PREFIX."expedition as t";
118 118
 
119
-        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; // We need this table joined to the select in order to filter by sale
119
+        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; // We need this table joined to the select in order to filter by sale
120 120
 
121
-        $sql.= ' WHERE t.entity IN ('.getEntity('expedition').')';
122
-        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql.= " AND t.fk_soc = sc.fk_soc";
123
-        if ($socids) $sql.= " AND t.fk_soc IN (".$socids.")";
124
-        if ($search_sale > 0) $sql.= " AND t.rowid = sc.fk_soc";		// Join for the needed table to filter by sale
121
+        $sql .= ' WHERE t.entity IN ('.getEntity('expedition').')';
122
+        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql .= " AND t.fk_soc = sc.fk_soc";
123
+        if ($socids) $sql .= " AND t.fk_soc IN (".$socids.")";
124
+        if ($search_sale > 0) $sql .= " AND t.rowid = sc.fk_soc"; // Join for the needed table to filter by sale
125 125
         // Insert sale filter
126 126
         if ($search_sale > 0)
127 127
         {
@@ -130,23 +130,23 @@  discard block
 block discarded – undo
130 130
         // Add sql filters
131 131
         if ($sqlfilters)
132 132
         {
133
-            if (! DolibarrApi::_checkFilters($sqlfilters))
133
+            if (!DolibarrApi::_checkFilters($sqlfilters))
134 134
             {
135 135
                 throw new RestException(503, 'Error when validating parameter sqlfilters '.$sqlfilters);
136 136
             }
137
-	        $regexstring='\(([^:\'\(\)]+:[^:\'\(\)]+:[^:\(\)]+)\)';
138
-            $sql.=" AND (".preg_replace_callback('/'.$regexstring.'/', 'DolibarrApi::_forge_criteria_callback', $sqlfilters).")";
137
+	        $regexstring = '\(([^:\'\(\)]+:[^:\'\(\)]+:[^:\(\)]+)\)';
138
+            $sql .= " AND (".preg_replace_callback('/'.$regexstring.'/', 'DolibarrApi::_forge_criteria_callback', $sqlfilters).")";
139 139
         }
140 140
 
141
-        $sql.= $db->order($sortfield, $sortorder);
142
-        if ($limit)	{
141
+        $sql .= $db->order($sortfield, $sortorder);
142
+        if ($limit) {
143 143
             if ($page < 0)
144 144
             {
145 145
                 $page = 0;
146 146
             }
147 147
             $offset = $limit * $page;
148 148
 
149
-            $sql.= $db->plimit($limit + 1, $offset);
149
+            $sql .= $db->plimit($limit + 1, $offset);
150 150
         }
151 151
 
152 152
         dol_syslog("API Rest request");
@@ -156,12 +156,12 @@  discard block
 block discarded – undo
156 156
         {
157 157
             $num = $db->num_rows($result);
158 158
             $min = min($num, ($limit <= 0 ? $num : $limit));
159
-            $i=0;
159
+            $i = 0;
160 160
             while ($i < $min)
161 161
             {
162 162
                 $obj = $db->fetch_object($result);
163 163
                 $shipment_static = new Expedition($db);
164
-                if($shipment_static->fetch($obj->rowid)) {
164
+                if ($shipment_static->fetch($obj->rowid)) {
165 165
                     $obj_ret[] = $this->_cleanObjectDatas($shipment_static);
166 166
                 }
167 167
                 $i++;
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
         else {
171 171
             throw new RestException(503, 'Error when retrieve commande list : '.$db->lasterror());
172 172
         }
173
-        if( ! count($obj_ret)) {
173
+        if (!count($obj_ret)) {
174 174
             throw new RestException(404, 'No shipment found');
175 175
         }
176 176
 		return $obj_ret;
@@ -184,13 +184,13 @@  discard block
 block discarded – undo
184 184
      */
185 185
     function post($request_data = null)
186 186
     {
187
-      if(! DolibarrApiAccess::$user->rights->expedition->creer) {
187
+      if (!DolibarrApiAccess::$user->rights->expedition->creer) {
188 188
 			  throw new RestException(401, "Insuffisant rights");
189 189
 		  }
190 190
         // Check mandatory fields
191 191
         $result = $this->_validate($request_data);
192 192
 
193
-        foreach($request_data as $field => $value) {
193
+        foreach ($request_data as $field => $value) {
194 194
             $this->shipment->$field = $value;
195 195
         }
196 196
         if (isset($request_data["lines"])) {
@@ -378,16 +378,16 @@  discard block
 block discarded – undo
378 378
      */
379 379
     function deleteLine($id, $lineid)
380 380
     {
381
-    	if(! DolibarrApiAccess::$user->rights->expedition->creer) {
381
+    	if (!DolibarrApiAccess::$user->rights->expedition->creer) {
382 382
     		throw new RestException(401);
383 383
     	}
384 384
 
385 385
     	$result = $this->shipment->fetch($id);
386
-    	if( ! $result ) {
386
+    	if (!$result) {
387 387
     		throw new RestException(404, 'Shipment not found');
388 388
     	}
389 389
 
390
-    	if( ! DolibarrApi::_checkAccessToResource('expedition',$this->shipment->id)) {
390
+    	if (!DolibarrApi::_checkAccessToResource('expedition', $this->shipment->id)) {
391 391
     		throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
392 392
     	}
393 393
 
@@ -414,19 +414,19 @@  discard block
 block discarded – undo
414 414
      */
415 415
     function put($id, $request_data = null)
416 416
     {
417
-      if (! DolibarrApiAccess::$user->rights->expedition->creer) {
417
+      if (!DolibarrApiAccess::$user->rights->expedition->creer) {
418 418
 		  	throw new RestException(401);
419 419
 		  }
420 420
 
421 421
         $result = $this->shipment->fetch($id);
422
-        if (! $result) {
422
+        if (!$result) {
423 423
             throw new RestException(404, 'Shipment not found');
424 424
         }
425 425
 
426
-		if (! DolibarrApi::_checkAccessToResource('expedition',$this->shipment->id)) {
426
+		if (!DolibarrApi::_checkAccessToResource('expedition', $this->shipment->id)) {
427 427
 			throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
428 428
 		}
429
-        foreach($request_data as $field => $value) {
429
+        foreach ($request_data as $field => $value) {
430 430
             if ($field == 'id') continue;
431 431
             $this->shipment->$field = $value;
432 432
         }
@@ -450,19 +450,19 @@  discard block
 block discarded – undo
450 450
      */
451 451
     function delete($id)
452 452
     {
453
-        if(! DolibarrApiAccess::$user->rights->shipment->supprimer) {
453
+        if (!DolibarrApiAccess::$user->rights->shipment->supprimer) {
454 454
 			throw new RestException(401);
455 455
 		}
456 456
         $result = $this->shipment->fetch($id);
457
-        if( ! $result ) {
457
+        if (!$result) {
458 458
             throw new RestException(404, 'Shipment not found');
459 459
         }
460 460
 
461
-		if( ! DolibarrApi::_checkAccessToResource('expedition',$this->shipment->id)) {
461
+		if (!DolibarrApi::_checkAccessToResource('expedition', $this->shipment->id)) {
462 462
 			throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
463 463
 		}
464 464
 
465
-        if( ! $this->shipment->delete(DolibarrApiAccess::$user)) {
465
+        if (!$this->shipment->delete(DolibarrApiAccess::$user)) {
466 466
             throw new RestException(500, 'Error when deleting shipment : '.$this->shipment->error);
467 467
         }
468 468
 
@@ -493,17 +493,17 @@  discard block
 block discarded – undo
493 493
      *   "notrigger": 0
494 494
      * }
495 495
      */
496
-    function validate($id, $notrigger=0)
496
+    function validate($id, $notrigger = 0)
497 497
     {
498
-        if(! DolibarrApiAccess::$user->rights->expedition->creer) {
498
+        if (!DolibarrApiAccess::$user->rights->expedition->creer) {
499 499
 			throw new RestException(401);
500 500
 		}
501 501
         $result = $this->shipment->fetch($id);
502
-        if( ! $result ) {
502
+        if (!$result) {
503 503
             throw new RestException(404, 'Shipment not found');
504 504
         }
505 505
 
506
-		if( ! DolibarrApi::_checkAccessToResource('expedition',$this->shipment->id)) {
506
+		if (!DolibarrApi::_checkAccessToResource('expedition', $this->shipment->id)) {
507 507
 			throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
508 508
 		}
509 509
 
@@ -515,11 +515,11 @@  discard block
 block discarded – undo
515 515
 		    throw new RestException(500, 'Error when validating Shipment: '.$this->shipment->error);
516 516
 		}
517 517
 	$result = $this->shipment->fetch($id);
518
-        if( ! $result ) {
518
+        if (!$result) {
519 519
             throw new RestException(404, 'Shipment not found');
520 520
         }
521 521
 
522
-	if( ! DolibarrApi::_checkAccessToResource('expedition',$this->shipment->id)) {
522
+	if (!DolibarrApi::_checkAccessToResource('expedition', $this->shipment->id)) {
523 523
             throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
524 524
        }
525 525
 
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
 
621 621
         $object = parent::_cleanObjectDatas($object);
622 622
 
623
-        unset($object->thirdparty);	// id already returned
623
+        unset($object->thirdparty); // id already returned
624 624
 
625 625
         unset($object->note);
626 626
         unset($object->address);
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
         unset($object->barcode_type_label);
630 630
         unset($object->barcode_type_coder);
631 631
 
632
-        if (! empty($object->lines) && is_array($object->lines))
632
+        if (!empty($object->lines) && is_array($object->lines))
633 633
         {
634 634
         	foreach ($object->lines as $line)
635 635
         	{
Please login to merge, or discard this patch.
Braces   +30 added lines, -15 removed lines patch added patch discarded remove patch
@@ -110,18 +110,33 @@  discard block
 block discarded – undo
110 110
 
111 111
         // If the internal user must only see his customers, force searching by him
112 112
         $search_sale = 0;
113
-        if (! DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) $search_sale = DolibarrApiAccess::$user->id;
113
+        if (! DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) {
114
+            $search_sale = DolibarrApiAccess::$user->id;
115
+        }
114 116
 
115 117
         $sql = "SELECT t.rowid";
116
-        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql .= ", sc.fk_soc, sc.fk_user"; // We need these fields in order to filter by sale (including the case where the user can only see his prospects)
118
+        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) {
119
+            $sql .= ", sc.fk_soc, sc.fk_user";
120
+        }
121
+        // We need these fields in order to filter by sale (including the case where the user can only see his prospects)
117 122
         $sql.= " FROM ".MAIN_DB_PREFIX."expedition as t";
118 123
 
119
-        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc"; // We need this table joined to the select in order to filter by sale
124
+        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) {
125
+            $sql.= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
126
+        }
127
+        // We need this table joined to the select in order to filter by sale
120 128
 
121 129
         $sql.= ' WHERE t.entity IN ('.getEntity('expedition').')';
122
-        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) $sql.= " AND t.fk_soc = sc.fk_soc";
123
-        if ($socids) $sql.= " AND t.fk_soc IN (".$socids.")";
124
-        if ($search_sale > 0) $sql.= " AND t.rowid = sc.fk_soc";		// Join for the needed table to filter by sale
130
+        if ((!DolibarrApiAccess::$user->rights->societe->client->voir && !$socids) || $search_sale > 0) {
131
+            $sql.= " AND t.fk_soc = sc.fk_soc";
132
+        }
133
+        if ($socids) {
134
+            $sql.= " AND t.fk_soc IN (".$socids.")";
135
+        }
136
+        if ($search_sale > 0) {
137
+            $sql.= " AND t.rowid = sc.fk_soc";
138
+        }
139
+        // Join for the needed table to filter by sale
125 140
         // Insert sale filter
126 141
         if ($search_sale > 0)
127 142
         {
@@ -166,8 +181,7 @@  discard block
 block discarded – undo
166 181
                 }
167 182
                 $i++;
168 183
             }
169
-        }
170
-        else {
184
+        } else {
171 185
             throw new RestException(503, 'Error when retrieve commande list : '.$db->lasterror());
172 186
         }
173 187
         if( ! count($obj_ret)) {
@@ -397,8 +411,7 @@  discard block
 block discarded – undo
397 411
     	$updateRes = $this->shipment->deleteline(DolibarrApiAccess::$user, $lineid);
398 412
     	if ($updateRes > 0) {
399 413
     		return $this->get($id);
400
-    	}
401
-    	else
414
+    	} else
402 415
     	{
403 416
     		throw new RestException(405, $this->shipment->error);
404 417
     	}
@@ -427,15 +440,16 @@  discard block
 block discarded – undo
427 440
 			throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
428 441
 		}
429 442
         foreach($request_data as $field => $value) {
430
-            if ($field == 'id') continue;
443
+            if ($field == 'id') {
444
+                continue;
445
+            }
431 446
             $this->shipment->$field = $value;
432 447
         }
433 448
 
434 449
         if ($this->shipment->update(DolibarrApiAccess::$user) > 0)
435 450
         {
436 451
             return $this->get($id);
437
-        }
438
-        else
452
+        } else
439 453
         {
440 454
         	throw new RestException(500, $this->shipment->error);
441 455
         }
@@ -658,8 +672,9 @@  discard block
 block discarded – undo
658 672
     {
659 673
         $shipment = array();
660 674
         foreach (Shipments::$FIELDS as $field) {
661
-            if (!isset($data[$field]))
662
-                throw new RestException(400, "$field field missing");
675
+            if (!isset($data[$field])) {
676
+                            throw new RestException(400, "$field field missing");
677
+            }
663 678
             $shipment[$field] = $data[$field];
664 679
         }
665 680
         return $shipment;
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/card.php 2 patches
Braces   +328 added lines, -226 removed lines patch added patch discarded remove patch
@@ -44,10 +44,18 @@  discard block
 block discarded – undo
44 44
 require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
45 45
 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
46 46
 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/productlot.class.php';
47
-if (! empty($conf->product->enabled) || ! empty($conf->service->enabled))  require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
48
-if (! empty($conf->propal->enabled))   require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
49
-if (! empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
50
-if (! empty($conf->productbatch->enabled)) require_once DOL_DOCUMENT_ROOT.'/product/class/productbatch.class.php';
47
+if (! empty($conf->product->enabled) || ! empty($conf->service->enabled)) {
48
+    require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
49
+}
50
+if (! empty($conf->propal->enabled)) {
51
+    require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
52
+}
53
+if (! empty($conf->commande->enabled)) {
54
+    require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
55
+}
56
+if (! empty($conf->productbatch->enabled)) {
57
+    require_once DOL_DOCUMENT_ROOT.'/product/class/productbatch.class.php';
58
+}
51 59
 if (! empty($conf->projet->enabled)) {
52 60
     require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
53 61
     require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
@@ -56,26 +64,41 @@  discard block
 block discarded – undo
56 64
 // Load translation files required by the page
57 65
 $langs->loadLangs(array("sendings","companies","bills",'deliveries','orders','stocks','other','propal'));
58 66
 
59
-if (!empty($conf->incoterm->enabled)) $langs->load('incoterm');
60
-if (! empty($conf->productbatch->enabled)) $langs->load('productbatch');
67
+if (!empty($conf->incoterm->enabled)) {
68
+    $langs->load('incoterm');
69
+}
70
+if (! empty($conf->productbatch->enabled)) {
71
+    $langs->load('productbatch');
72
+}
61 73
 
62 74
 $origin		= GETPOST('origin','alpha')?GETPOST('origin','alpha'):'expedition';   // Example: commande, propal
63 75
 $origin_id 	= GETPOST('id','int')?GETPOST('id','int'):'';
64 76
 $id = $origin_id;
65
-if (empty($origin_id)) $origin_id  = GETPOST('origin_id','int');    // Id of order or propal
66
-if (empty($origin_id)) $origin_id  = GETPOST('object_id','int');    // Id of order or propal
77
+if (empty($origin_id)) {
78
+    $origin_id  = GETPOST('origin_id','int');
79
+}
80
+// Id of order or propal
81
+if (empty($origin_id)) {
82
+    $origin_id  = GETPOST('object_id','int');
83
+}
84
+// Id of order or propal
67 85
 $ref=GETPOST('ref','alpha');
68 86
 $line_id = GETPOST('lineid','int')?GETPOST('lineid','int'):'';
69 87
 
70 88
 // Security check
71 89
 $socid='';
72
-if ($user->societe_id) $socid=$user->societe_id;
90
+if ($user->societe_id) {
91
+    $socid=$user->societe_id;
92
+}
73 93
 
74
-if ($origin == 'expedition') $result=restrictedArea($user, $origin, $id);
75
-else {
94
+if ($origin == 'expedition') {
95
+    $result=restrictedArea($user, $origin, $id);
96
+} else {
76 97
 	$result=restrictedArea($user, 'expedition');
77
-	if (empty($user->rights->{$origin}->lire) && empty($user->rights->{$origin}->read)) accessforbidden();
78
-}
98
+	if (empty($user->rights->{$origin}->lire) && empty($user->rights->{$origin}->read)) {
99
+	    accessforbidden();
100
+	}
101
+	}
79 102
 
80 103
 $action		= GETPOST('action','alpha');
81 104
 $confirm	= GETPOST('confirm','alpha');
@@ -113,7 +136,9 @@  discard block
 block discarded – undo
113 136
 
114 137
 $parameters=array();
115 138
 $reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action);    // Note that $action and $object may have been modified by some hooks
116
-if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
139
+if ($reshook < 0) {
140
+    setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
141
+}
117 142
 
118 143
 if (empty($reshook))
119 144
 {
@@ -167,7 +192,9 @@  discard block
 block discarded – undo
167 192
 		// Fill array 'array_options' with data from update form
168 193
 	    $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
169 194
 	    $ret = $extrafields->setOptionalsFromPost($extralabels, $object, GETPOST('attribute','none'));
170
-	    if ($ret < 0) $error++;
195
+	    if ($ret < 0) {
196
+	        $error++;
197
+	    }
171 198
 
172 199
 	    if (! $error)
173 200
 	    {
@@ -180,8 +207,9 @@  discard block
 block discarded – undo
180 207
 			}
181 208
 	    }
182 209
 
183
-	    if ($error)
184
-	        $action = 'edit_extras';
210
+	    if ($error) {
211
+	    	        $action = 'edit_extras';
212
+	    }
185 213
 	}
186 214
 
187 215
 	// Create shipment
@@ -243,12 +271,14 @@  discard block
 block discarded – undo
243 271
 			$stockLocation="ent1".$i."_0";
244 272
 	    	$qty = "qtyl".$i;
245 273
 
246
-			if ($objectsrc->lines[$i]->product_tobatch)      // If product need a batch number
274
+			if ($objectsrc->lines[$i]->product_tobatch) {
275
+			    // If product need a batch number
247 276
 			{
248 277
 			    if (isset($_POST[$batch]))
249 278
 			    {
250 279
     				//shipment line with batch-enable product
251 280
     				$qty .= '_'.$j;
281
+			}
252 282
     				while (isset($_POST[$batch]))
253 283
     				{
254 284
     					// save line of detail into sub_qty
@@ -268,8 +298,7 @@  discard block
 block discarded – undo
268 298
     				$batch_line[$i]['ix_l']=GETPOST($idl,'int');
269 299
 
270 300
     				$totalqty+=$subtotalqty;
271
-			    }
272
-			    else
301
+			    } else
273 302
 			    {
274 303
 			        // No detail were provided for lots
275 304
 			        if (! empty($_POST[$qty]))
@@ -280,8 +309,7 @@  discard block
 block discarded – undo
280 309
     			        setEventMessages($langs->trans("StockIsRequiredToChooseWhichLotToUse"), null, 'errors');
281 310
 			        }
282 311
 			    }
283
-			}
284
-			else if (isset($_POST[$stockLocation]))
312
+			} else if (isset($_POST[$stockLocation]))
285 313
 			{
286 314
 			    //shipment line from multiple stock locations
287 315
 			    $qty .= '_'.$j;
@@ -298,12 +326,13 @@  discard block
 block discarded – undo
298 326
 			        $stockLocation="ent1".$i."_".$j;
299 327
 			        $qty = "qtyl".$i.'_'.$j;
300 328
 			    }
301
-			}
302
-			else
329
+			} else
303 330
 			{
304 331
 			    //var_dump(GETPOST($qty,'int')); var_dump($_POST); var_dump($batch);exit;
305 332
 				//shipment line for product with no batch management and no multiple stock location
306
-				if (GETPOST($qty,'int') > 0) $totalqty+=GETPOST($qty,'int');
333
+				if (GETPOST($qty,'int') > 0) {
334
+				    $totalqty+=GETPOST($qty,'int');
335
+				}
307 336
 			}
308 337
 
309 338
 			// Extrafields
@@ -320,10 +349,13 @@  discard block
 block discarded – undo
320 349
 
321 350
 	    //var_dump($batch_line[2]);
322 351
 
323
-	    if ($totalqty > 0)		// There is at least one thing to ship
352
+	    if ($totalqty > 0) {
353
+	        // There is at least one thing to ship
324 354
 	    {
325 355
 	        //var_dump($_POST);exit;
326
-	        for ($i = 0; $i < $num; $i++)
356
+	        for ($i = 0;
357
+	    }
358
+	    $i < $num; $i++)
327 359
 	        {
328 360
 	            $qty = "qtyl".$i;
329 361
 				if (! isset($batch_line[$i]))
@@ -345,16 +377,19 @@  discard block
 block discarded – undo
345 377
     					        }
346 378
     					    }
347 379
     					}
348
-					}
349
-					else
380
+					} else
350 381
 					{
351 382
 						if (GETPOST($qty,'int') > 0 || (GETPOST($qty,'int') == 0 && $conf->global->SHIPMENT_GETS_ALL_ORDER_PRODUCTS))
352 383
 						{
353 384
 							$ent = "entl".$i;
354 385
 							$idl = "idl".$i;
355 386
 							$entrepot_id = is_numeric(GETPOST($ent,'int'))?GETPOST($ent,'int'):GETPOST('entrepot_id','int');
356
-							if ($entrepot_id < 0) $entrepot_id='';
357
-							if (! ($objectsrc->lines[$i]->fk_product > 0)) $entrepot_id = 0;
387
+							if ($entrepot_id < 0) {
388
+							    $entrepot_id='';
389
+							}
390
+							if (! ($objectsrc->lines[$i]->fk_product > 0)) {
391
+							    $entrepot_id = 0;
392
+							}
358 393
 
359 394
 							$ret=$object->addline($entrepot_id, GETPOST($idl,'int'), GETPOST($qty,'int'), $array_options[$i]);
360 395
 							if ($ret < 0)
@@ -364,8 +399,7 @@  discard block
 block discarded – undo
364 399
 							}
365 400
 						}
366 401
 					}
367
-				}
368
-				else
402
+				} else
369 403
 				{
370 404
 					// batch mode
371 405
 					if ($batch_line[$i]['qty']>0)
@@ -381,7 +415,9 @@  discard block
 block discarded – undo
381 415
 	        }
382 416
 	        // Fill array 'array_options' with data from add form
383 417
 	        $ret = $extrafields->setOptionalsFromPost($extralabels, $object);
384
-	        if ($ret < 0) $error++;
418
+	        if ($ret < 0) {
419
+	            $error++;
420
+	        }
385 421
 
386 422
 	        if (! $error)
387 423
 	        {
@@ -392,8 +428,7 @@  discard block
 block discarded – undo
392 428
 	                $error++;
393 429
 	            }
394 430
 	        }
395
-	    }
396
-	    else
431
+	    } else
397 432
 	    {
398 433
 	        setEventMessages($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("QtyToShip").'/'.$langs->transnoentitiesnoconv("Warehouse")), null, 'errors');
399 434
 	        $error++;
@@ -404,8 +439,7 @@  discard block
 block discarded – undo
404 439
 	        $db->commit();
405 440
 	        header("Location: card.php?id=".$object->id);
406 441
 	        exit;
407
-	    }
408
-	    else
442
+	    } else
409 443
 	    {
410 444
 	        $db->rollback();
411 445
 	        $_GET["commande_id"]=GETPOST('commande_id','int');
@@ -423,14 +457,11 @@  discard block
 block discarded – undo
423 457
 	    {
424 458
 	        header("Location: ".DOL_URL_ROOT.'/livraison/card.php?action=create_delivery&id='.$result);
425 459
 	        exit;
426
-	    }
427
-	    else
460
+	    } else
428 461
 	    {
429 462
 	        setEventMessages($object->error, $object->errors, 'errors');
430 463
 	    }
431
-	}
432
-
433
-	else if ($action == 'confirm_valid' && $confirm == 'yes' &&
464
+	} else if ($action == 'confirm_valid' && $confirm == 'yes' &&
434 465
         ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->creer))
435 466
        	|| (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->shipping_advance->validate)))
436 467
 	)
@@ -443,16 +474,19 @@  discard block
 block discarded – undo
443 474
 	    {
444 475
 			$langs->load("errors");
445 476
 	        setEventMessages($langs->trans($object->error), null, 'errors');
446
-	    }
447
-	    else
477
+	    } else
448 478
 	    {
449 479
 	    	// Define output language
450 480
 	    	if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE))
451 481
 	    	{
452 482
 	    		$outputlangs = $langs;
453 483
 	    		$newlang = '';
454
-	    		if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id','aZ09')) $newlang = GETPOST('lang_id','aZ09');
455
-	    		if ($conf->global->MAIN_MULTILANGS && empty($newlang))	$newlang = $object->thirdparty->default_lang;
484
+	    		if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id','aZ09')) {
485
+	    		    $newlang = GETPOST('lang_id','aZ09');
486
+	    		}
487
+	    		if ($conf->global->MAIN_MULTILANGS && empty($newlang)) {
488
+	    		    $newlang = $object->thirdparty->default_lang;
489
+	    		}
456 490
 	    		if (! empty($newlang)) {
457 491
 	    			$outputlangs = new Translate("", $conf);
458 492
 	    			$outputlangs->setDefaultLang($newlang);
@@ -461,20 +495,19 @@  discard block
 block discarded – undo
461 495
 	    		$ret = $object->fetch($id); // Reload to get new records
462 496
 
463 497
 	    		$result=$object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
464
-	    		if ($result < 0) dol_print_error($db,$result);
498
+	    		if ($result < 0) {
499
+	    		    dol_print_error($db,$result);
500
+	    		}
465 501
 	    	}
466 502
 	    }
467
-	}
468
-
469
-	else if ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->expedition->supprimer)
503
+	} else if ($action == 'confirm_delete' && $confirm == 'yes' && $user->rights->expedition->supprimer)
470 504
 	{
471 505
 	    $result = $object->delete();
472 506
 	    if ($result > 0)
473 507
 	    {
474 508
 	        header("Location: ".DOL_URL_ROOT.'/expedition/index.php');
475 509
 	        exit;
476
-	    }
477
-	    else
510
+	    } else
478 511
 		{
479 512
 			setEventMessages($object->error, $object->errors, 'errors');
480 513
 	    }
@@ -516,19 +549,29 @@  discard block
 block discarded – undo
516 549
 	{
517 550
 	    $error=0;
518 551
 
519
-	    if ($action == 'settracking_number')		$object->tracking_number = trim(GETPOST('tracking_number','alpha'));
520
-	    if ($action == 'settracking_url')		$object->tracking_url = trim(GETPOST('tracking_url','int'));
552
+	    if ($action == 'settracking_number') {
553
+	        $object->tracking_number = trim(GETPOST('tracking_number','alpha'));
554
+	    }
555
+	    if ($action == 'settracking_url') {
556
+	        $object->tracking_url = trim(GETPOST('tracking_url','int'));
557
+	    }
521 558
 	    if ($action == 'settrueWeight')	{
522 559
 	    	$object->trueWeight = trim(GETPOST('trueWeight','int'));
523 560
 			$object->weight_units = GETPOST('weight_units','int');
524 561
 	    }
525
-	    if ($action == 'settrueWidth')			$object->trueWidth = trim(GETPOST('trueWidth','int'));
562
+	    if ($action == 'settrueWidth') {
563
+	        $object->trueWidth = trim(GETPOST('trueWidth','int'));
564
+	    }
526 565
 	    if ($action == 'settrueHeight'){
527 566
 	    				$object->trueHeight = trim(GETPOST('trueHeight','int'));
528 567
 						$object->size_units = GETPOST('size_units','int');
529 568
 		}
530
-	    if ($action == 'settrueDepth')			$object->trueDepth = trim(GETPOST('trueDepth','int'));
531
-	    if ($action == 'setshipping_method_id')	$object->shipping_method_id = trim(GETPOST('shipping_method_id','int'));
569
+	    if ($action == 'settrueDepth') {
570
+	        $object->trueDepth = trim(GETPOST('trueDepth','int'));
571
+	    }
572
+	    if ($action == 'setshipping_method_id') {
573
+	        $object->shipping_method_id = trim(GETPOST('shipping_method_id','int'));
574
+	    }
532 575
 
533 576
 	    if (! $error)
534 577
 	    {
@@ -541,9 +584,7 @@  discard block
 block discarded – undo
541 584
 	    }
542 585
 
543 586
 	    $action="";
544
-	}
545
-
546
-	elseif ($action == 'classifybilled')
587
+	} elseif ($action == 'classifybilled')
547 588
 	{
548 589
 	    $object->fetch($id);
549 590
 	    $result = $object->set_billed();
@@ -551,9 +592,7 @@  discard block
 block discarded – undo
551 592
 	    	header('Location: ' . $_SERVER["PHP_SELF"] . '?id=' . $object->id);
552 593
 	    	exit();
553 594
 	    }
554
-	}
555
-
556
-	elseif ($action == 'classifyclosed')
595
+	} elseif ($action == 'classifyclosed')
557 596
 	{
558 597
 	    $object->fetch($id);
559 598
 	    $result = $object->setClosed();
@@ -587,8 +626,7 @@  discard block
 block discarded – undo
587 626
 							$error++;
588 627
 						}
589 628
 					}
590
-				}
591
-				else
629
+				} else
592 630
 				{
593 631
 					// delete single warehouse line
594 632
 					$line->id = $line_id;
@@ -604,8 +642,7 @@  discard block
 block discarded – undo
604 642
 		if(! $error) {
605 643
 			header('Location: ' . $_SERVER["PHP_SELF"] . '?id=' . $object->id);
606 644
 			exit();
607
-		}
608
-		else
645
+		} else
609 646
 		{
610 647
 			setEventMessages($line->error, $line->errors, 'errors');
611 648
 		}
@@ -625,9 +662,11 @@  discard block
 block discarded – undo
625 662
 		$num_prod = count($lines);
626 663
 		for ($i = 0 ; $i < $num_prod ; $i++)
627 664
 		{
628
-			if ($lines[$i]->id == $line_id)		// we have found line to update
665
+			if ($lines[$i]->id == $line_id) {
666
+			    // we have found line to update
629 667
 			{
630 668
 				$line = new ExpeditionLigne($db);
669
+			}
631 670
 				// Extrafields Lines
632 671
 				$extrafieldsline = new ExtraFields($db);
633 672
 				$extralabelsline = $extrafieldsline->fetch_name_optionals_label($object->table_element_line);
@@ -651,16 +690,20 @@  discard block
 block discarded – undo
651 690
 						$batch_qty = GETPOST($qty, 'int');
652 691
 						if (! empty($batch_id) && ($batch_id != $detail_batch->fk_origin_stock || $batch_qty != $detail_batch->qty))
653 692
 						{
654
-							if ($lotStock->fetch($batch_id) > 0 && $line->fetch($detail_batch->fk_expeditiondet) > 0)	// $line is ExpeditionLine
693
+							if ($lotStock->fetch($batch_id) > 0 && $line->fetch($detail_batch->fk_expeditiondet) > 0) {
694
+							    // $line is ExpeditionLine
655 695
 							{
656 696
 								if ($lines[$i]->entrepot_id != 0)
657 697
 								{
658 698
 									// allow update line entrepot_id if not multi warehouse shipping
659 699
 									$line->entrepot_id = $lotStock->warehouseid;
700
+							}
660 701
 								}
661 702
 
662 703
 								// detail_batch can be an object with keys, or an array of ExpeditionLineBatch
663
-								if (empty($line->detail_batch)) $line->detail_batch=new stdClass();
704
+								if (empty($line->detail_batch)) {
705
+								    $line->detail_batch=new stdClass();
706
+								}
664 707
 
665 708
 								$line->detail_batch->fk_origin_stock = $batch_id;
666 709
 								$line->detail_batch->batch = $lotStock->batch;
@@ -671,8 +714,7 @@  discard block
 block discarded – undo
671 714
 									setEventMessages($line->error, $line->errors, 'errors');
672 715
 									$error++;
673 716
 								}
674
-							}
675
-							else
717
+							} else
676 718
 							{
677 719
 								setEventMessages($lotStock->error, $lotStock->errors, 'errors');
678 720
 								$error++;
@@ -700,8 +742,7 @@  discard block
 block discarded – undo
700 742
 								{
701 743
 									$lineIdToAddLot = $line_id;
702 744
 								}
703
-							}
704
-							else if (count($lines[$i]->details_entrepot) > 1)
745
+							} else if (count($lines[$i]->details_entrepot) > 1)
705 746
 							{
706 747
 								// multi warehouse shipment lines
707 748
 								foreach ($lines[$i]->details_entrepot as $detail_entrepot)
@@ -725,14 +766,12 @@  discard block
 block discarded – undo
725 766
 										setEventMessages($line->error, $line->errors, 'errors');
726 767
 										$error++;
727 768
 									}
728
-								}
729
-								else
769
+								} else
730 770
 								{
731 771
 									setEventMessages($line->error, $line->errors, 'errors');
732 772
 									$error++;
733 773
 								}
734
-							}
735
-							else
774
+							} else
736 775
 							{
737 776
 								// create new line with new lot
738 777
 								$line->origin_line_id = $lines[$i]->origin_line_id;
@@ -748,15 +787,13 @@  discard block
 block discarded – undo
748 787
 									$error++;
749 788
 								}
750 789
 							}
751
-						}
752
-						else
790
+						} else
753 791
 						{
754 792
 							setEventMessages($lotStock->error, $lotStock->errors, 'errors');
755 793
 							$error++;
756 794
 						}
757 795
 					}
758
-				}
759
-				else
796
+				} else
760 797
 				{
761 798
 					if ($lines[$i]->fk_product > 0)
762 799
 					{
@@ -775,8 +812,7 @@  discard block
 block discarded – undo
775 812
 							}
776 813
 							unset($_POST[$stockLocation]);
777 814
 							unset($_POST[$qty]);
778
-						}
779
-						else if (count($lines[$i]->details_entrepot) > 1)
815
+						} else if (count($lines[$i]->details_entrepot) > 1)
780 816
 						{
781 817
 							// multi warehouse shipment lines
782 818
 							foreach ($lines[$i]->details_entrepot as $detail_entrepot)
@@ -800,8 +836,7 @@  discard block
 block discarded – undo
800 836
 								}
801 837
 							}
802 838
 						}
803
-					}
804
-					else	// Product no predefined
839
+					} else	// Product no predefined
805 840
 					{
806 841
 						$qty = "qtyl".$line_id;
807 842
 						$line->id = $line_id;
@@ -824,10 +859,12 @@  discard block
 block discarded – undo
824 859
 				// Define output language
825 860
 				$outputlangs = $langs;
826 861
 				$newlang = '';
827
-				if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id','aZ09'))
828
-					$newlang = GETPOST('lang_id','aZ09');
829
-				if ($conf->global->MAIN_MULTILANGS && empty($newlang))
830
-					$newlang = $object->thirdparty->default_lang;
862
+				if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id','aZ09')) {
863
+									$newlang = GETPOST('lang_id','aZ09');
864
+				}
865
+				if ($conf->global->MAIN_MULTILANGS && empty($newlang)) {
866
+									$newlang = $object->thirdparty->default_lang;
867
+				}
831 868
 				if (! empty($newlang)) {
832 869
 					$outputlangs = new Translate("", $conf);
833 870
 					$outputlangs->setDefaultLang($newlang);
@@ -836,15 +873,12 @@  discard block
 block discarded – undo
836 873
 				$ret = $object->fetch($object->id); // Reload to get new records
837 874
 				$object->generateDocument($object->modelpdf, $outputlangs, $hidedetails, $hidedesc, $hideref);
838 875
 			}
839
-		}
840
-		else
876
+		} else
841 877
 		{
842 878
 			header('Location: ' . $_SERVER['PHP_SELF'] . '?id=' . $object->id); // Pour reaffichage de la fiche en cours d'edition
843 879
 			exit();
844 880
 		}
845
-	}
846
-
847
-	else if ($action == 'updateline' && $user->rights->expedition->creer && GETPOST('cancel','alpha') == $langs->trans('Cancel')) {
881
+	} else if ($action == 'updateline' && $user->rights->expedition->creer && GETPOST('cancel','alpha') == $langs->trans('Cancel')) {
848 882
 		header('Location: ' . $_SERVER['PHP_SELF'] . '?id=' . $object->id); // Pour reaffichage de la fiche en cours d'edition
849 883
 		exit();
850 884
 	}
@@ -852,7 +886,9 @@  discard block
 block discarded – undo
852 886
 	include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php';
853 887
 
854 888
 	// Actions to send emails
855
-	if (empty($id)) $id=$facid;
889
+	if (empty($id)) {
890
+	    $id=$facid;
891
+	}
856 892
 	$trigger_name='SHIPPING_SENTBYMAIL';
857 893
 	$paramname='id';
858 894
 	$mode='emailfromshipment';
@@ -899,15 +935,19 @@  discard block
 block discarded – undo
899 935
         $classname = ucfirst($origin);
900 936
 
901 937
         $object = new $classname($db);
902
-        if ($object->fetch($origin_id))	// This include the fetch_lines
938
+        if ($object->fetch($origin_id)) {
939
+            // This include the fetch_lines
903 940
         {
904 941
             $soc = new Societe($db);
942
+        }
905 943
             $soc->fetch($object->socid);
906 944
 
907 945
             $author = new User($db);
908 946
             $author->fetch($object->user_author_id);
909 947
 
910
-            if (! empty($conf->stock->enabled)) $entrepot = new Entrepot($db);
948
+            if (! empty($conf->stock->enabled)) {
949
+                $entrepot = new Entrepot($db);
950
+            }
911 951
 
912 952
             print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
913 953
             print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
@@ -939,9 +979,13 @@  discard block
 block discarded – undo
939 979
 
940 980
             // Ref client
941 981
             print '<tr><td>';
942
-            if ($origin == 'commande') print $langs->trans('RefCustomerOrder');
943
-            else if ($origin == 'propal') print $langs->trans('RefCustomerOrder');
944
-            else print $langs->trans('RefCustomer');
982
+            if ($origin == 'commande') {
983
+                print $langs->trans('RefCustomerOrder');
984
+            } else if ($origin == 'propal') {
985
+                print $langs->trans('RefCustomerOrder');
986
+            } else {
987
+                print $langs->trans('RefCustomer');
988
+            }
945 989
             print '</td><td colspan="3">';
946 990
             print '<input type="text" name="ref_customer" value="'.$object->ref_client.'" />';
947 991
             print '</td>';
@@ -956,8 +1000,12 @@  discard block
 block discarded – undo
956 1000
             if (! empty($conf->projet->enabled))
957 1001
             {
958 1002
                 $projectid = GETPOST('projectid','int')?GETPOST('projectid','int'):0;
959
-                if(empty($projectid) && ! empty($object->fk_project)) $projectid = $object->fk_project;
960
-                if ($origin == 'project') $projectid = ($originid ? $originid : 0);
1003
+                if(empty($projectid) && ! empty($object->fk_project)) {
1004
+                    $projectid = $object->fk_project;
1005
+                }
1006
+                if ($origin == 'project') {
1007
+                    $projectid = ($originid ? $originid : 0);
1008
+                }
961 1009
 
962 1010
                 $langs->load("projects");
963 1011
                 print '<tr>';
@@ -1019,7 +1067,9 @@  discard block
 block discarded – undo
1019 1067
             print '<td colspan="3">';
1020 1068
             $expe->fetch_delivery_methods();
1021 1069
             print $form->selectarray("shipping_method_id", $expe->meths, GETPOST('shipping_method_id','int'),1,0,0,"",1);
1022
-            if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
1070
+            if ($user->admin) {
1071
+                print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
1072
+            }
1023 1073
             print "</td></tr>\n";
1024 1074
 
1025 1075
             // Tracking number
@@ -1123,8 +1173,7 @@  discard block
 block discarded – undo
1123 1173
 					if (empty($conf->productbatch->enabled))
1124 1174
 					{
1125 1175
                     	print '<td align="left">'.$langs->trans("Warehouse").' ('.$langs->trans("Stock").')</td>';
1126
-					}
1127
-					else
1176
+					} else
1128 1177
 					{
1129 1178
 						print '<td align="left">'.$langs->trans("Warehouse").' / '.$langs->trans("Batch").' ('.$langs->trans("Stock").')</td>';
1130 1179
 					}
@@ -1144,16 +1193,22 @@  discard block
 block discarded – undo
1144 1193
                 $type=$line->product_type?$line->product_type:$line->fk_product_type;
1145 1194
                 // Try to enhance type detection using date_start and date_end for free lines where type
1146 1195
                 // was not saved.
1147
-                if (! empty($line->date_start)) $type=1;
1148
-                if (! empty($line->date_end)) $type=1;
1196
+                if (! empty($line->date_start)) {
1197
+                    $type=1;
1198
+                }
1199
+                if (! empty($line->date_end)) {
1200
+                    $type=1;
1201
+                }
1149 1202
 
1150 1203
                 print '<!-- line '.$line->rowid.' for product -->'."\n";
1151 1204
                 print '<tr class="oddeven">'."\n";
1152 1205
 
1153 1206
                 // Product label
1154
-                if ($line->fk_product > 0)  // If predefined product
1207
+                if ($line->fk_product > 0) {
1208
+                    // If predefined product
1155 1209
                 {
1156 1210
                     $product->fetch($line->fk_product);
1211
+                }
1157 1212
                     $product->load_stock('warehouseopen');	// Load all $product->stock_warehouse[idwarehouse]->detail_batch
1158 1213
                     //var_dump($product->stock_warehouse[1]);
1159 1214
 
@@ -1180,12 +1235,14 @@  discard block
 block discarded – undo
1180 1235
                     }
1181 1236
 
1182 1237
                     print '</td>';
1183
-                }
1184
-                else
1238
+                } else
1185 1239
 				{
1186 1240
 				    print "<td>";
1187
-                    if ($type==1) $text = img_object($langs->trans('Service'),'service');
1188
-                    else $text = img_object($langs->trans('Product'),'product');
1241
+                    if ($type==1) {
1242
+                        $text = img_object($langs->trans('Service'),'service');
1243
+                    } else {
1244
+                        $text = img_object($langs->trans('Product'),'product');
1245
+                    }
1189 1246
 
1190 1247
                     if (! empty($line->label)) {
1191 1248
                     	$text.= ' <strong>'.$line->label.'</strong>';
@@ -1217,42 +1274,50 @@  discard block
 block discarded – undo
1217 1274
 				if ($line->product_type == 1 && empty($conf->global->STOCK_SUPPORTS_SERVICES))
1218 1275
 				{
1219 1276
 					$quantityToBeDelivered = 0;
1220
-				}
1221
-				else
1277
+				} else
1222 1278
 				{
1223 1279
 					$quantityToBeDelivered = $quantityAsked - $quantityDelivered;
1224 1280
 				}
1225 1281
                 $warehouse_id = GETPOST('entrepot_id','int');
1226 1282
 
1227 1283
 				$warehouseObject = null;
1228
-				if ($warehouse_id > 0 || ! ($line->fk_product > 0) || empty($conf->stock->enabled))     // If warehouse was already selected or if product is not a predefined, we go into this part with no multiwarehouse selection
1284
+				if ($warehouse_id > 0 || ! ($line->fk_product > 0) || empty($conf->stock->enabled)) {
1285
+				    // If warehouse was already selected or if product is not a predefined, we go into this part with no multiwarehouse selection
1229 1286
 				{
1230 1287
 				    print '<!-- Case warehouse already known or product not a predefined product -->';
1288
+				}
1231 1289
 					//ship from preselected location
1232 1290
 					$stock = + $product->stock_warehouse[$warehouse_id]->real; // Convert to number
1233 1291
 					$deliverableQty=min($quantityToBeDelivered, $stock);
1234
-					if ($deliverableQty < 0) $deliverableQty = 0;
1292
+					if ($deliverableQty < 0) {
1293
+					    $deliverableQty = 0;
1294
+					}
1235 1295
 					if (empty($conf->productbatch->enabled) || ! $product->hasbatch())
1236 1296
 					{
1237 1297
 						// Quantity to send
1238 1298
 						print '<td align="center">';
1239 1299
 						if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
1240 1300
 						{
1241
-                            if (GETPOST('qtyl'.$indiceAsked, 'int')) $deliverableQty=GETPOST('qtyl'.$indiceAsked, 'int');
1301
+                            if (GETPOST('qtyl'.$indiceAsked, 'int')) {
1302
+                                $deliverableQty=GETPOST('qtyl'.$indiceAsked, 'int');
1303
+                            }
1242 1304
                             print '<input name="idl'.$indiceAsked.'" type="hidden" value="'.$line->id.'">';
1243 1305
 							print '<input name="qtyl'.$indiceAsked.'" id="qtyl'.$indiceAsked.'" type="text" size="4" value="'.$deliverableQty.'">';
1306
+						} else {
1307
+						    print $langs->trans("NA");
1244 1308
 						}
1245
-						else print $langs->trans("NA");
1246 1309
 						print '</td>';
1247 1310
 
1248 1311
 						// Stock
1249 1312
 						if (! empty($conf->stock->enabled))
1250 1313
 						{
1251 1314
 							print '<td align="left">';
1252
-							if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))   // Type of product need stock change ?
1315
+							if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES)) {
1316
+							    // Type of product need stock change ?
1253 1317
 							{
1254 1318
 								// Show warehouse combo list
1255 1319
 								$ent = "entl".$indiceAsked;
1320
+							}
1256 1321
 								$idl = "idl".$indiceAsked;
1257 1322
 								$tmpentrepot_id = is_numeric(GETPOST($ent,'int'))?GETPOST($ent,'int'):$warehouse_id;
1258 1323
 								if ($line->fk_product > 0)
@@ -1268,8 +1333,7 @@  discard block
 block discarded – undo
1268 1333
 										}
1269 1334
 									}
1270 1335
 								}
1271
-							}
1272
-							else
1336
+							} else
1273 1337
 							{
1274 1338
 								print $langs->trans("Service");
1275 1339
 							}
@@ -1300,15 +1364,16 @@  discard block
 block discarded – undo
1300 1364
 								}
1301 1365
 							}
1302 1366
 						}
1303
-					}
1304
-					else
1367
+					} else
1305 1368
 					{
1306 1369
 					    // Product need lot
1307 1370
 						print '<td></td><td></td></tr>';	// end line and start a new one for lot/serial
1308 1371
 						print '<!-- Case product need lot -->';
1309 1372
 
1310 1373
 						$staticwarehouse=new Entrepot($db);
1311
-						if ($warehouse_id > 0) $staticwarehouse->fetch($warehouse_id);
1374
+						if ($warehouse_id > 0) {
1375
+						    $staticwarehouse->fetch($warehouse_id);
1376
+						}
1312 1377
 
1313 1378
 						$subj=0;
1314 1379
 						// Define nb of lines suggested for this order line
@@ -1323,10 +1388,13 @@  discard block
 block discarded – undo
1323 1388
 						print '<input name="idl'.$indiceAsked.'" type="hidden" value="'.$line->id.'">';
1324 1389
 						if (is_object($product->stock_warehouse[$warehouse_id]) && count($product->stock_warehouse[$warehouse_id]->detail_batch))
1325 1390
 						{
1326
-							foreach ($product->stock_warehouse[$warehouse_id]->detail_batch as $dbatch)	// $dbatch is instance of Productbatch
1391
+							foreach ($product->stock_warehouse[$warehouse_id]->detail_batch as $dbatch) {
1392
+							    // $dbatch is instance of Productbatch
1327 1393
 							{
1328 1394
 								//var_dump($dbatch);
1329
-								$batchStock = + $dbatch->qty;		// To get a numeric
1395
+								$batchStock = + $dbatch->qty;
1396
+							}
1397
+							// To get a numeric
1330 1398
 								$deliverableQty = min($quantityToBeDelivered,$batchStock);
1331 1399
 								print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested)?$bc[$var]:'').'>';
1332 1400
 								print '<td colspan="3" ></td><td align="center">';
@@ -1356,8 +1424,7 @@  discard block
 block discarded – undo
1356 1424
 								$subj++;
1357 1425
 								print '</td></tr>';
1358 1426
 							}
1359
-						}
1360
-						else
1427
+						} else
1361 1428
 						{
1362 1429
 						    print '<!-- Case there is no details of lot at all -->';
1363 1430
 						    print '<tr class="oddeven"><td colspan="3"></td><td align="center">';
@@ -1369,8 +1436,7 @@  discard block
 block discarded – undo
1369 1436
 							print '</td></tr>';
1370 1437
 						}
1371 1438
 					}
1372
-				}
1373
-				else
1439
+				} else
1374 1440
 				{
1375 1441
 					// ship from multiple locations
1376 1442
 					if (empty($conf->productbatch->enabled) || ! $product->hasbatch())
@@ -1390,9 +1456,11 @@  discard block
 block discarded – undo
1390 1456
 						    }
1391 1457
 						}
1392 1458
 						$tmpwarehouseObject=new Entrepot($db);
1393
-						foreach ($product->stock_warehouse as $warehouse_id=>$stock_warehouse)    // $stock_warehouse is product_stock
1459
+						foreach ($product->stock_warehouse as $warehouse_id=>$stock_warehouse) {
1460
+						    // $stock_warehouse is product_stock
1394 1461
 						{
1395 1462
 							$tmpwarehouseObject->fetch($warehouse_id);
1463
+						}
1396 1464
 							if ($stock_warehouse->real > 0)
1397 1465
 							{
1398 1466
 								$stock = + $stock_warehouse->real; // Convert it to number
@@ -1405,8 +1473,9 @@  discard block
 block discarded – undo
1405 1473
 								{
1406 1474
 									print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'" type="text" size="4" value="'.$deliverableQty.'">';
1407 1475
 									print '<input name="ent1'.$indiceAsked.'_'.$subj.'" type="hidden" value="'.$warehouse_id.'">';
1476
+								} else {
1477
+								    print $langs->trans("NA");
1408 1478
 								}
1409
-								else print $langs->trans("NA");
1410 1479
 								print '</td>';
1411 1480
 
1412 1481
 								// Stock
@@ -1419,8 +1488,7 @@  discard block
 block discarded – undo
1419 1488
 
1420 1489
 										print '<!-- Show details of stock -->';
1421 1490
 										print '('.$stock.')';
1422
-									}
1423
-									else
1491
+									} else
1424 1492
 									{
1425 1493
 										print $langs->trans("Service");
1426 1494
 									}
@@ -1459,8 +1527,7 @@  discard block
 block discarded – undo
1459 1527
 								}
1460 1528
 							}
1461 1529
 						}
1462
-					}
1463
-					else
1530
+					} else
1464 1531
 					{
1465 1532
 					    print '<!-- Case warehouse not already known and product need lot -->';
1466 1533
 					    print '<td></td><td></td></tr>';	// end line and start a new one for lot/serial
@@ -1490,7 +1557,9 @@  discard block
 block discarded – undo
1490 1557
 									//var_dump($dbatch);
1491 1558
 									$batchStock = + $dbatch->qty;		// To get a numeric
1492 1559
 									$deliverableQty = min($quantityToBeDelivered,$batchStock);
1493
-									if ($deliverableQty < 0) $deliverableQty = 0;
1560
+									if ($deliverableQty < 0) {
1561
+									    $deliverableQty = 0;
1562
+									}
1494 1563
 									print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested)?$bc[$var]:'').'><td colspan="3"></td><td align="center">';
1495 1564
 									print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'_'.$subj.'" type="text" size="4" value="'.$deliverableQty.'">';
1496 1565
 									print '</td>';
@@ -1505,8 +1574,11 @@  discard block
 block discarded – undo
1505 1574
 									//print '|'.$line->fk_product.'|'.$dbatch->batch.'|<br>';
1506 1575
 									print $langs->trans("Batch").': ';
1507 1576
 									$result = $productlotObject->fetch(0, $line->fk_product, $dbatch->batch);
1508
-									if ($result > 0) print $productlotObject->getNomUrl(1);
1509
-									else print 'TableLotIncompleteRunRepairWithParamStandardEqualConfirmed';
1577
+									if ($result > 0) {
1578
+									    print $productlotObject->getNomUrl(1);
1579
+									} else {
1580
+									    print 'TableLotIncompleteRunRepairWithParamStandardEqualConfirmed';
1581
+									}
1510 1582
 									print ' ('.$dbatch->qty.')';
1511 1583
 									$quantityToBeDelivered -= $deliverableQty;
1512 1584
 									if ($quantityToBeDelivered < 0)
@@ -1520,9 +1592,11 @@  discard block
 block discarded – undo
1520 1592
 							}
1521 1593
 						}
1522 1594
 					}
1523
-					if ($subj == 0) // Line not shown yet, we show it
1595
+					if ($subj == 0) {
1596
+					    // Line not shown yet, we show it
1524 1597
 					{
1525 1598
 					    print '<!-- line not shown yet, we show it -->';
1599
+					}
1526 1600
 						print '<tr class="oddeven"><td colspan="3" ></td><td align="center">';
1527 1601
 						if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
1528 1602
 						{
@@ -1532,8 +1606,7 @@  discard block
 block discarded – undo
1532 1606
                                 $disabled='disabled="disabled"';
1533 1607
 						    }
1534 1608
     						print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'_'.$subj.'" type="text" size="4" value="0"'.($disabled?' '.$disabled:'').'> ';
1535
-						}
1536
-						else
1609
+						} else
1537 1610
 						{
1538 1611
 						    print $langs->trans("NA");
1539 1612
 						}
@@ -1548,14 +1621,15 @@  discard block
 block discarded – undo
1548 1621
     							$warehouseObject=new Entrepot($db);
1549 1622
     							$warehouseObject->fetch($warehouse_selected_id);
1550 1623
     							print img_warning().' '.$langs->trans("NoProductToShipFoundIntoStock", $warehouseObject->libelle);
1551
-    						}
1552
-    						else
1624
+    						} else
1553 1625
     						{
1554
-    						    if ($line->fk_product) print img_warning().' '.$langs->trans("StockTooLow");
1555
-    						    else print '';
1626
+    						    if ($line->fk_product) {
1627
+    						        print img_warning().' '.$langs->trans("StockTooLow");
1628
+    						    } else {
1629
+    						        print '';
1630
+    						    }
1556 1631
     						}
1557
-						}
1558
-						else
1632
+						} else
1559 1633
 						{
1560 1634
 						    print $langs->trans("Service");
1561 1635
 						}
@@ -1597,21 +1671,20 @@  discard block
 block discarded – undo
1597 1671
             print '</form>';
1598 1672
 
1599 1673
             print '<br>';
1600
-        }
1601
-        else
1674
+        } else
1602 1675
 		{
1603 1676
             dol_print_error($db);
1604 1677
         }
1605 1678
     }
1606
-}
1607
-else if ($id || $ref)
1608
-/* *************************************************************************** */
1679
+} else if ($id || $ref) {
1680
+    /* *************************************************************************** */
1609 1681
 /*                                                                             */
1610 1682
 /* Edit and view mode                                                          */
1611 1683
 /*                                                                             */
1612 1684
 /* *************************************************************************** */
1613 1685
 {
1614 1686
 	$lines = $object->lines;
1687
+}
1615 1688
 
1616 1689
 	$num_prod = count($lines);
1617 1690
 
@@ -1648,8 +1721,7 @@  discard block
 block discarded – undo
1648 1721
 			if ($objectref == 'PROV')
1649 1722
 			{
1650 1723
 				$numref = $object->getNextNumRef($soc);
1651
-			}
1652
-			else
1724
+			} else
1653 1725
 			{
1654 1726
 				$numref = $object->ref;
1655 1727
 			}
@@ -1675,8 +1747,11 @@  discard block
 block discarded – undo
1675 1747
 		// Call Hook formConfirm
1676 1748
 		$parameters = array();
1677 1749
 		$reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
1678
-		if (empty($reshook)) $formconfirm.=$hookmanager->resPrint;
1679
-		elseif ($reshook > 0) $formconfirm=$hookmanager->resPrint;
1750
+		if (empty($reshook)) {
1751
+		    $formconfirm.=$hookmanager->resPrint;
1752
+		} elseif ($reshook > 0) {
1753
+		    $formconfirm=$hookmanager->resPrint;
1754
+		}
1680 1755
 
1681 1756
 		// Print form confirm
1682 1757
 		print $formconfirm;
@@ -1785,7 +1860,9 @@  discard block
 block discarded – undo
1785 1860
 		print $langs->trans('DateDeliveryPlanned');
1786 1861
 		print '</td>';
1787 1862
 
1788
-		if ($action != 'editdate_livraison') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'),1).'</a></td>';
1863
+		if ($action != 'editdate_livraison') {
1864
+		    print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'),1).'</a></td>';
1865
+		}
1789 1866
 		print '</tr></table>';
1790 1867
 		print '</td><td colspan="2">';
1791 1868
 		if ($action == 'editdate_livraison')
@@ -1796,8 +1873,7 @@  discard block
 block discarded – undo
1796 1873
 			print $form->selectDate($object->date_delivery?$object->date_delivery:-1, 'liv_', 1, 1, '', "setdate_livraison", 1, 0);
1797 1874
 			print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
1798 1875
 			print '</form>';
1799
-		}
1800
-		else
1876
+		} else
1801 1877
 		{
1802 1878
 			print $object->date_delivery ? dol_print_date($object->date_delivery,'dayhour') : '&nbsp;';
1803 1879
 		}
@@ -1820,8 +1896,7 @@  discard block
 block discarded – undo
1820 1896
 			print ' <input class="button" name="modify" value="'.$langs->trans("Modify").'" type="submit">';
1821 1897
 			print ' <input class="button" name="cancel" value="'.$langs->trans("Cancel").'" type="submit">';
1822 1898
 			print '</form>';
1823
-		}
1824
-		else
1899
+		} else
1825 1900
 		{
1826 1901
 			print $object->trueWeight;
1827 1902
 			print ($object->trueWeight && $object->weight_units!='')?' '.measuring_units_string($object->weight_units,"weight"):'';
@@ -1830,11 +1905,15 @@  discard block
 block discarded – undo
1830 1905
         // Calculated
1831 1906
 		if ($totalWeight > 0)
1832 1907
 		{
1833
-			if (!empty($object->trueWeight)) print ' ('.$langs->trans("SumOfProductWeights").': ';
1908
+			if (!empty($object->trueWeight)) {
1909
+			    print ' ('.$langs->trans("SumOfProductWeights").': ';
1910
+			}
1834 1911
 			//print $totalWeight.' '.measuring_units_string(0,"weight");
1835 1912
 			print showDimensionInBestUnit($totalWeight, 0, "weight", $langs, isset($conf->global->MAIN_WEIGHT_DEFAULT_ROUND)?$conf->global->MAIN_WEIGHT_DEFAULT_ROUND:-1, isset($conf->global->MAIN_WEIGHT_DEFAULT_UNIT)?$conf->global->MAIN_WEIGHT_DEFAULT_UNIT:'no');
1836 1913
 			//if (empty($object->trueWeight)) print ' ('.$langs->trans("Calculated").')';
1837
-			if (!empty($object->trueWeight)) print ')';
1914
+			if (!empty($object->trueWeight)) {
1915
+			    print ')';
1916
+			}
1838 1917
 		}
1839 1918
 		print '</td></tr>';
1840 1919
 
@@ -1857,8 +1936,7 @@  discard block
 block discarded – undo
1857 1936
 			print ' <input class="button" name="modify" value="'.$langs->trans("Modify").'" type="submit">';
1858 1937
 			print ' <input class="button" name="cancel" value="'.$langs->trans("Cancel").'" type="submit">';
1859 1938
 			print '</form>';
1860
-		}
1861
-		else
1939
+		} else
1862 1940
 		{
1863 1941
 			print $object->trueHeight;
1864 1942
 			print ($object->trueHeight && $object->height_units!='')?' '.measuring_units_string($object->height_units,"size"):'';
@@ -1891,16 +1969,21 @@  discard block
 block discarded – undo
1891 1969
 			{
1892 1970
 			    //print $calculatedVolume.' '.measuring_units_string($volumeUnit,"volume");
1893 1971
 			    print showDimensionInBestUnit($calculatedVolume, $volumeUnit, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND)?$conf->global->MAIN_VOLUME_DEFAULT_ROUND:-1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT)?$conf->global->MAIN_VOLUME_DEFAULT_UNIT:'no');
1972
+			} else {
1973
+			    print $calculatedVolume.' '.measuring_units_string($volumeUnit,"volume");
1894 1974
 			}
1895
-			else print $calculatedVolume.' '.measuring_units_string($volumeUnit,"volume");
1896 1975
 		}
1897 1976
 		if ($totalVolume > 0)
1898 1977
 		{
1899
-			if ($calculatedVolume) print ' ('.$langs->trans("SumOfProductVolumes").': ';
1978
+			if ($calculatedVolume) {
1979
+			    print ' ('.$langs->trans("SumOfProductVolumes").': ';
1980
+			}
1900 1981
 			//print $totalVolume.' '.measuring_units_string(0,"volume");
1901 1982
 			print showDimensionInBestUnit($totalVolume, 0, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND)?$conf->global->MAIN_VOLUME_DEFAULT_ROUND:-1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT)?$conf->global->MAIN_VOLUME_DEFAULT_UNIT:'no');
1902 1983
 			//if (empty($calculatedVolume)) print ' ('.$langs->trans("Calculated").')';
1903
-			if ($calculatedVolume) print ')';
1984
+			if ($calculatedVolume) {
1985
+			    print ')';
1986
+			}
1904 1987
 		}
1905 1988
 		print "</td>\n";
1906 1989
 		print '</tr>';
@@ -1924,7 +2007,9 @@  discard block
 block discarded – undo
1924 2007
 		print $langs->trans('SendingMethod');
1925 2008
 		print '</td>';
1926 2009
 
1927
-		if ($action != 'editshipping_method_id') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshipping_method_id&amp;id='.$object->id.'">'.img_edit($langs->trans('SetSendingMethod'),1).'</a></td>';
2010
+		if ($action != 'editshipping_method_id') {
2011
+		    print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshipping_method_id&amp;id='.$object->id.'">'.img_edit($langs->trans('SetSendingMethod'),1).'</a></td>';
2012
+		}
1928 2013
 		print '</tr></table>';
1929 2014
 		print '</td><td colspan="2">';
1930 2015
 		if ($action == 'editshipping_method_id')
@@ -1934,11 +2019,12 @@  discard block
 block discarded – undo
1934 2019
 			print '<input type="hidden" name="action" value="setshipping_method_id">';
1935 2020
 			$object->fetch_delivery_methods();
1936 2021
 			print $form->selectarray("shipping_method_id",$object->meths,$object->shipping_method_id,1,0,0,"",1);
1937
-			if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
2022
+			if ($user->admin) {
2023
+			    print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
2024
+			}
1938 2025
 			print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
1939 2026
 			print '</form>';
1940
-		}
1941
-		else
2027
+		} else
1942 2028
 		{
1943 2029
 			if ($object->shipping_method_id > 0)
1944 2030
 			{
@@ -1962,16 +2048,18 @@  discard block
 block discarded – undo
1962 2048
 	        print '<table width="100%" class="nobordernopadding"><tr><td>';
1963 2049
 	        print $langs->trans('IncotermLabel');
1964 2050
 	        print '<td><td align="right">';
1965
-	        if ($user->rights->expedition->creer) print '<a href="'.DOL_URL_ROOT.'/expedition/card.php?id='.$object->id.'&action=editincoterm">'.img_edit().'</a>';
1966
-	        else print '&nbsp;';
2051
+	        if ($user->rights->expedition->creer) {
2052
+	            print '<a href="'.DOL_URL_ROOT.'/expedition/card.php?id='.$object->id.'&action=editincoterm">'.img_edit().'</a>';
2053
+	        } else {
2054
+	            print '&nbsp;';
2055
+	        }
1967 2056
 	        print '</td></tr></table>';
1968 2057
 	        print '</td>';
1969 2058
 	        print '<td colspan="3">';
1970 2059
 			if ($action != 'editincoterm')
1971 2060
 			{
1972 2061
 				print $form->textwithpicto($object->display_incoterms(), $object->libelle_incoterms, 1);
1973
-			}
1974
-			else
2062
+			} else
1975 2063
 			{
1976 2064
 				print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms)?$object->location_incoterms:''), $_SERVER['PHP_SELF'].'?id='.$object->id);
1977 2065
 			}
@@ -2019,14 +2107,17 @@  discard block
 block discarded – undo
2019 2107
 		if ($action == 'editline')
2020 2108
 		{
2021 2109
 			$editColspan = 3;
2022
-			if (empty($conf->stock->enabled)) $editColspan--;
2023
-			if (empty($conf->productbatch->enabled)) $editColspan--;
2110
+			if (empty($conf->stock->enabled)) {
2111
+			    $editColspan--;
2112
+			}
2113
+			if (empty($conf->productbatch->enabled)) {
2114
+			    $editColspan--;
2115
+			}
2024 2116
 			print '<td align="center" colspan="'. $editColspan . '">';
2025 2117
 			if ($object->statut <= 1)
2026 2118
 			{
2027 2119
 				print $langs->trans("QtyToShip").' - ';
2028
-			}
2029
-			else
2120
+			} else
2030 2121
 			{
2031 2122
 				print $langs->trans("QtyShipped").' - ';
2032 2123
 			}
@@ -2039,14 +2130,12 @@  discard block
 block discarded – undo
2039 2130
 				print $langs->trans("Batch");
2040 2131
 			}
2041 2132
 			print '</td>';
2042
-		}
2043
-		else
2133
+		} else
2044 2134
 		{
2045 2135
 			if ($object->statut <= 1)
2046 2136
 			{
2047 2137
 				print '<td align="center">'.$langs->trans("QtyToShip").'</td>';
2048
-			}
2049
-			else
2138
+			} else
2050 2139
 			{
2051 2140
 				print '<td align="center">'.$langs->trans("QtyShipped").'</td>';
2052 2141
 			}
@@ -2077,8 +2166,12 @@  discard block
 block discarded – undo
2077 2166
 			$object->fetch_thirdparty();
2078 2167
 			$outputlangs = $langs;
2079 2168
 			$newlang='';
2080
-			if (empty($newlang) && GETPOST('lang_id','aZ09')) $newlang=GETPOST('lang_id','aZ09');
2081
-			if (empty($newlang)) $newlang=$object->thirdparty->default_lang;
2169
+			if (empty($newlang) && GETPOST('lang_id','aZ09')) {
2170
+			    $newlang=GETPOST('lang_id','aZ09');
2171
+			}
2172
+			if (empty($newlang)) {
2173
+			    $newlang=$object->thirdparty->default_lang;
2174
+			}
2082 2175
 			if (! empty($newlang))
2083 2176
 			{
2084 2177
 				$outputlangs = new Translate("",$conf);
@@ -2150,9 +2243,9 @@  discard block
 block discarded – undo
2150 2243
 					$prod = new Product($db);
2151 2244
 					$prod->fetch($lines[$i]->fk_product);
2152 2245
 					$label = ( ! empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $lines[$i]->product_label;
2246
+				} else {
2247
+									$label = (! empty($lines[$i]->label)?$lines[$i]->label:$lines[$i]->product_label);
2153 2248
 				}
2154
-				else
2155
-					$label = (! empty($lines[$i]->label)?$lines[$i]->label:$lines[$i]->product_label);
2156 2249
 
2157 2250
 				print '<td>';
2158 2251
 
@@ -2171,12 +2264,14 @@  discard block
 block discarded – undo
2171 2264
 					print (! empty($lines[$i]->description) && $lines[$i]->description!=$lines[$i]->product)?'<br>'.dol_htmlentitiesbr($lines[$i]->description):'';
2172 2265
 				}
2173 2266
 				print "</td>\n";
2174
-			}
2175
-			else
2267
+			} else
2176 2268
 			{
2177 2269
 				print "<td>";
2178
-				if ($lines[$i]->product_type == Product::TYPE_SERVICE) $text = img_object($langs->trans('Service'),'service');
2179
-				else $text = img_object($langs->trans('Product'),'product');
2270
+				if ($lines[$i]->product_type == Product::TYPE_SERVICE) {
2271
+				    $text = img_object($langs->trans('Service'),'service');
2272
+				} else {
2273
+				    $text = img_object($langs->trans('Product'),'product');
2274
+				}
2180 2275
 
2181 2276
 				if (! empty($lines[$i]->label)) {
2182 2277
 					$text.= ' <strong>'.$lines[$i]->label.'</strong>';
@@ -2203,10 +2298,15 @@  discard block
 block discarded – undo
2203 2298
     			        $j = 0;
2204 2299
     			        foreach($val as $shipmentline_id=> $shipmentline_var)
2205 2300
     			        {
2206
-    			            if ($shipmentline_var['shipment_id'] == $lines[$i]->fk_expedition) continue; // We want to show only "other shipments"
2301
+    			            if ($shipmentline_var['shipment_id'] == $lines[$i]->fk_expedition) {
2302
+    			                continue;
2303
+    			            }
2304
+    			            // We want to show only "other shipments"
2207 2305
 
2208 2306
     			            $j++;
2209
-    			            if ($j > 1) print '<br>';
2307
+    			            if ($j > 1) {
2308
+    			                print '<br>';
2309
+    			            }
2210 2310
     			            $shipment_static->fetch($shipmentline_var['shipment_id']);
2211 2311
     			            print $shipment_static->getNomUrl(1);
2212 2312
     			            print ' - '.$shipmentline_var['qty_shipped'];
@@ -2252,8 +2352,7 @@  discard block
 block discarded – undo
2252 2352
 					// Batch number managment
2253 2353
 					print '<td>' . $formproduct->selectLotStock('', 'batchl'.$line_id.'_0', '', 1, 0, $lines[$i]->fk_product). '</td>';
2254 2354
 					print '</tr>';
2255
-				}
2256
-				else if (! empty($conf->stock->enabled))
2355
+				} else if (! empty($conf->stock->enabled))
2257 2356
 				{
2258 2357
 					if ($lines[$i]->fk_product > 0)
2259 2358
 					{
@@ -2268,8 +2367,7 @@  discard block
 block discarded – undo
2268 2367
 							// Batch number managment
2269 2368
 							print '<td> - ' . $langs->trans("NA") . '</td>';
2270 2369
 							print '</tr>';
2271
-						}
2272
-						else if (count($lines[$i]->details_entrepot) > 1)
2370
+						} else if (count($lines[$i]->details_entrepot) > 1)
2273 2371
 						{
2274 2372
 							print '<!-- case edit 3 -->';
2275 2373
 							foreach ($lines[$i]->details_entrepot as $detail_entrepot)
@@ -2283,14 +2381,12 @@  discard block
 block discarded – undo
2283 2381
 								print '<td> - ' . $langs->trans("NA") . '</td>';
2284 2382
 								print '</tr>';
2285 2383
 							}
2286
-						}
2287
-						else
2384
+						} else
2288 2385
 						{
2289 2386
 							print '<!-- case edit 4 -->';
2290 2387
 							print '<tr><td colspan="3">'.$langs->trans("NotEnoughStock").'</td></tr>';
2291 2388
 						}
2292
-					}
2293
-					else
2389
+					} else
2294 2390
 					{
2295 2391
 						print '<!-- case edit 5 -->';
2296 2392
 						print '<tr>';
@@ -2304,8 +2400,7 @@  discard block
 block discarded – undo
2304 2400
 					}
2305 2401
 				}
2306 2402
 				print '</table></td>';
2307
-			}
2308
-			else
2403
+			} else
2309 2404
 			{
2310 2405
 				// Qty to ship or shipped
2311 2406
 				print '<td align="center">'.$lines[$i]->qty_shipped.'</td>';
@@ -2319,8 +2414,7 @@  discard block
 block discarded – undo
2319 2414
 						$entrepot = new Entrepot($db);
2320 2415
 						$entrepot->fetch($lines[$i]->entrepot_id);
2321 2416
 						print $entrepot->getNomUrl(1);
2322
-					}
2323
-					else if (count($lines[$i]->details_entrepot) > 1)
2417
+					} else if (count($lines[$i]->details_entrepot) > 1)
2324 2418
 					{
2325 2419
 						$detail = '';
2326 2420
 						foreach ($lines[$i]->details_entrepot as $detail_entrepot)
@@ -2347,17 +2441,18 @@  discard block
 block discarded – undo
2347 2441
 						if ($lines[$i]->product_tobatch)
2348 2442
 						{
2349 2443
 							$detail = '';
2350
-							foreach ($lines[$i]->detail_batch as $dbatch)	// $dbatch is instance of ExpeditionLineBatch
2444
+							foreach ($lines[$i]->detail_batch as $dbatch) {
2445
+							    // $dbatch is instance of ExpeditionLineBatch
2351 2446
 							{
2352 2447
 								$detail.= $langs->trans("Batch").': '.$dbatch->batch;
2448
+							}
2353 2449
 								$detail.= ' - '.$langs->trans("SellByDate").': '.dol_print_date($dbatch->sellby,"day");
2354 2450
 								$detail.= ' - '.$langs->trans("EatByDate").': '.dol_print_date($dbatch->eatby,"day");
2355 2451
 								$detail.= ' - '.$langs->trans("Qty").': '.$dbatch->qty;
2356 2452
 								$detail.= '<br>';
2357 2453
 							}
2358 2454
 							print $form->textwithtooltip(img_picto('', 'object_barcode').' '.$langs->trans("DetailBatchNumber"),$detail);
2359
-						}
2360
-						else
2455
+						} else
2361 2456
 						{
2362 2457
 							print $langs->trans("NA");
2363 2458
 						}
@@ -2370,14 +2465,20 @@  discard block
 block discarded – undo
2370 2465
 
2371 2466
 			// Weight
2372 2467
 			print '<td align="center">';
2373
-			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) print $lines[$i]->weight*$lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->weight_units,"weight");
2374
-			else print '&nbsp;';
2468
+			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) {
2469
+			    print $lines[$i]->weight*$lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->weight_units,"weight");
2470
+			} else {
2471
+			    print '&nbsp;';
2472
+			}
2375 2473
 			print '</td>';
2376 2474
 
2377 2475
 			// Volume
2378 2476
 			print '<td align="center">';
2379
-			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) print $lines[$i]->volume*$lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->volume_units,"volume");
2380
-			else print '&nbsp;';
2477
+			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) {
2478
+			    print $lines[$i]->volume*$lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->volume_units,"volume");
2479
+			} else {
2480
+			    print '&nbsp;';
2481
+			}
2381 2482
 			print '</td>';
2382 2483
 
2383 2484
 			// Size
@@ -2388,8 +2489,7 @@  discard block
 block discarded – undo
2388 2489
 				print '<td align="center" colspan="2" valign="middle">';
2389 2490
 				print '<input type="submit" class="button" id="savelinebutton" name="save" value="' . $langs->trans("Save") . '"><br>';
2390 2491
 				print '<input type="submit" class="button" id="cancellinebutton" name="cancel" value="' . $langs->trans("Cancel") . '"><br>';
2391
-			}
2392
-			else if ($object->statut == 0)
2492
+			} else if ($object->statut == 0)
2393 2493
 			{
2394 2494
 				// edit-delete buttons
2395 2495
 				print '<td class="linecoledit" align="center">';
@@ -2418,8 +2518,7 @@  discard block
 block discarded – undo
2418 2518
 				if ($action == 'editline' && $lines[$i]->id == $line_id)
2419 2519
 				{
2420 2520
 					print $line->showOptionals($extrafieldsline, 'edit', array('style'=>$bc[$var], 'colspan'=>$colspan),$indiceAsked);
2421
-				}
2422
-				else
2521
+				} else
2423 2522
 				{
2424 2523
 					print $line->showOptionals($extrafieldsline, 'view', array('style'=>$bc[$var], 'colspan'=>$colspan),$indiceAsked);
2425 2524
 				}
@@ -2460,8 +2559,7 @@  discard block
 block discarded – undo
2460 2559
 	  		     || (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->shipping_advance->validate)))
2461 2560
 				{
2462 2561
 					print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=valid">'.$langs->trans("Validate").'</a>';
2463
-				}
2464
-				else
2562
+				} else
2465 2563
 				{
2466 2564
 					print '<a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans("NotAllowed").'">'.$langs->trans("Validate").'</a>';
2467 2565
 				}
@@ -2471,11 +2569,12 @@  discard block
 block discarded – undo
2471 2569
 			// 0=draft, 1=validated, 2=billed, we miss a status "delivered" (only available on order)
2472 2570
 			if ($object->statut == Expedition::STATUS_CLOSED && $user->rights->expedition->creer)
2473 2571
 			{
2474
-				if (! empty($conf->facture->enabled) && ! empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT))  // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2572
+				if (! empty($conf->facture->enabled) && ! empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT)) {
2573
+				    // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2475 2574
 				{
2476 2575
 					print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=reopen">'.$langs->trans("ClassifyUnbilled").'</a>';
2477 2576
 				}
2478
-				else
2577
+				} else
2479 2578
 				{
2480 2579
 			    	print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=reopen">'.$langs->trans("ReOpen").'</a>';
2481 2580
 				}
@@ -2487,8 +2586,9 @@  discard block
 block discarded – undo
2487 2586
 				if (empty($conf->global->MAIN_USE_ADVANCED_PERMS) || $user->rights->expedition->shipping_advance->send)
2488 2587
 				{
2489 2588
 					print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&action=presend&mode=init#formmailbeforetitle">'.$langs->trans('SendMail').'</a>';
2589
+				} else {
2590
+				    print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans('SendMail').'</a>';
2490 2591
 				}
2491
-				else print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans('SendMail').'</a>';
2492 2592
 			}
2493 2593
 
2494 2594
 			// Create bill
@@ -2515,9 +2615,11 @@  discard block
 block discarded – undo
2515 2615
 				{
2516 2616
 					$label="Close"; $paramaction='classifyclosed';       // = Transferred/Received
2517 2617
 					// Label here should be "Close" or "ClassifyBilled" if we decided to make bill on shipments instead of orders
2518
-					if (! empty($conf->facture->enabled) && ! empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT))  // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2618
+					if (! empty($conf->facture->enabled) && ! empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT)) {
2619
+					    // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2519 2620
 					{
2520 2621
 					    $label="ClassifyBilled";
2622
+					}
2521 2623
 					    $paramaction='classifybilled';
2522 2624
 					}
2523 2625
 					print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action='.$paramaction.'">'.$langs->trans($label).'</a>';
Please login to merge, or discard this patch.
Spacing   +468 added lines, -468 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
 
36 36
 // Copyright (C) 2018 Alxarafe/Alixar  <[email protected]>
37 37
 defined('BASE_PATH') or die('Single entry point through the index.php of the main folder');
38
-require DOL_BASE_PATH . '/main.inc.php';
39
-require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php';
38
+require DOL_BASE_PATH.'/main.inc.php';
39
+require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
40 40
 require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
41 41
 require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
42 42
 require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
@@ -46,47 +46,47 @@  discard block
 block discarded – undo
46 46
 require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
47 47
 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
48 48
 require_once DOL_DOCUMENT_ROOT.'/product/stock/class/productlot.class.php';
49
-if (! empty($conf->product->enabled) || ! empty($conf->service->enabled))  require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
50
-if (! empty($conf->propal->enabled))   require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
51
-if (! empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
52
-if (! empty($conf->productbatch->enabled)) require_once DOL_DOCUMENT_ROOT.'/product/class/productbatch.class.php';
53
-if (! empty($conf->projet->enabled)) {
49
+if (!empty($conf->product->enabled) || !empty($conf->service->enabled))  require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
50
+if (!empty($conf->propal->enabled))   require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
51
+if (!empty($conf->commande->enabled)) require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
52
+if (!empty($conf->productbatch->enabled)) require_once DOL_DOCUMENT_ROOT.'/product/class/productbatch.class.php';
53
+if (!empty($conf->projet->enabled)) {
54 54
     require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
55 55
     require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
56 56
 }
57 57
 
58 58
 // Load translation files required by the page
59
-$langs->loadLangs(array("sendings","companies","bills",'deliveries','orders','stocks','other','propal'));
59
+$langs->loadLangs(array("sendings", "companies", "bills", 'deliveries', 'orders', 'stocks', 'other', 'propal'));
60 60
 
61 61
 if (!empty($conf->incoterm->enabled)) $langs->load('incoterm');
62
-if (! empty($conf->productbatch->enabled)) $langs->load('productbatch');
62
+if (!empty($conf->productbatch->enabled)) $langs->load('productbatch');
63 63
 
64
-$origin		= GETPOST('origin','alpha')?GETPOST('origin','alpha'):'expedition';   // Example: commande, propal
65
-$origin_id 	= GETPOST('id','int')?GETPOST('id','int'):'';
64
+$origin = GETPOST('origin', 'alpha') ?GETPOST('origin', 'alpha') : 'expedition'; // Example: commande, propal
65
+$origin_id = GETPOST('id', 'int') ?GETPOST('id', 'int') : '';
66 66
 $id = $origin_id;
67
-if (empty($origin_id)) $origin_id  = GETPOST('origin_id','int');    // Id of order or propal
68
-if (empty($origin_id)) $origin_id  = GETPOST('object_id','int');    // Id of order or propal
69
-$ref=GETPOST('ref','alpha');
70
-$line_id = GETPOST('lineid','int')?GETPOST('lineid','int'):'';
67
+if (empty($origin_id)) $origin_id  = GETPOST('origin_id', 'int'); // Id of order or propal
68
+if (empty($origin_id)) $origin_id  = GETPOST('object_id', 'int'); // Id of order or propal
69
+$ref = GETPOST('ref', 'alpha');
70
+$line_id = GETPOST('lineid', 'int') ?GETPOST('lineid', 'int') : '';
71 71
 
72 72
 // Security check
73
-$socid='';
74
-if ($user->societe_id) $socid=$user->societe_id;
73
+$socid = '';
74
+if ($user->societe_id) $socid = $user->societe_id;
75 75
 
76
-if ($origin == 'expedition') $result=restrictedArea($user, $origin, $id);
76
+if ($origin == 'expedition') $result = restrictedArea($user, $origin, $id);
77 77
 else {
78
-	$result=restrictedArea($user, 'expedition');
78
+	$result = restrictedArea($user, 'expedition');
79 79
 	if (empty($user->rights->{$origin}->lire) && empty($user->rights->{$origin}->read)) accessforbidden();
80 80
 }
81 81
 
82
-$action		= GETPOST('action','alpha');
83
-$confirm	= GETPOST('confirm','alpha');
84
-$cancel     = GETPOST('cancel','alpha');
82
+$action		= GETPOST('action', 'alpha');
83
+$confirm	= GETPOST('confirm', 'alpha');
84
+$cancel = GETPOST('cancel', 'alpha');
85 85
 
86 86
 //PDF
87
-$hidedetails = (GETPOST('hidedetails','int') ? GETPOST('hidedetails','int') : (! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS) ? 1 : 0));
88
-$hidedesc 	 = (GETPOST('hidedesc','int') ? GETPOST('hidedesc','int') : (! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC) ?  1 : 0));
89
-$hideref 	 = (GETPOST('hideref','int') ? GETPOST('hideref','int') : (! empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF) ? 1 : 0));
87
+$hidedetails = (GETPOST('hidedetails', 'int') ? GETPOST('hidedetails', 'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DETAILS) ? 1 : 0));
88
+$hidedesc = (GETPOST('hidedesc', 'int') ? GETPOST('hidedesc', 'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_DESC) ? 1 : 0));
89
+$hideref = (GETPOST('hideref', 'int') ? GETPOST('hideref', 'int') : (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_HIDE_REF) ? 1 : 0));
90 90
 
91 91
 $object = new Expedition($db);
92 92
 $extrafields = new ExtraFields($db);
@@ -96,16 +96,16 @@  discard block
 block discarded – undo
96 96
 $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
97 97
 
98 98
 // fetch optionals attributes lines and labels
99
-$extralabelslines=$extrafieldsline->fetch_name_optionals_label($object->table_element_line);
99
+$extralabelslines = $extrafieldsline->fetch_name_optionals_label($object->table_element_line);
100 100
 
101 101
 
102 102
 // Load object. Make an object->fetch
103
-include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php';  // Must be include, not include_once
103
+include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once
104 104
 
105 105
 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
106
-$hookmanager->initHooks(array('expeditioncard','globalcard'));
106
+$hookmanager->initHooks(array('expeditioncard', 'globalcard'));
107 107
 
108
-$permissiondellink=$user->rights->expedition->livraison->creer;	// Used by the include of actions_dellink.inc.php
108
+$permissiondellink = $user->rights->expedition->livraison->creer; // Used by the include of actions_dellink.inc.php
109 109
 //var_dump($object->lines[0]->detail_batch);
110 110
 
111 111
 
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
  * Actions
114 114
  */
115 115
 
116
-$parameters=array();
117
-$reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action);    // Note that $action and $object may have been modified by some hooks
116
+$parameters = array();
117
+$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
118 118
 if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
119 119
 
120 120
 if (empty($reshook))
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 		$object->fetch($id); // show shipment also after canceling modification
126 126
 	}
127 127
 
128
-	include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php';		// Must be include, not include_once
128
+	include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; // Must be include, not include_once
129 129
 
130 130
 	// Actions to build doc
131 131
 	$upload_dir = $conf->expedition->dir_output.'/sending';
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             setEventMessages($object->error, $object->errors, 'errors');
153 153
         }
154 154
 
155
-        $result = $object->setValueFrom('ref_customer', GETPOST('ref_customer','alpha'), '', null, 'text', '', $user, 'SHIPMENT_MODIFY');
155
+        $result = $object->setValueFrom('ref_customer', GETPOST('ref_customer', 'alpha'), '', null, 'text', '', $user, 'SHIPMENT_MODIFY');
156 156
         if ($result < 0) {
157 157
             setEventMessages($object->error, $object->errors, 'errors');
158 158
             $action = 'editref_customer';
@@ -168,10 +168,10 @@  discard block
 block discarded – undo
168 168
 
169 169
 		// Fill array 'array_options' with data from update form
170 170
 	    $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
171
-	    $ret = $extrafields->setOptionalsFromPost($extralabels, $object, GETPOST('attribute','none'));
171
+	    $ret = $extrafields->setOptionalsFromPost($extralabels, $object, GETPOST('attribute', 'none'));
172 172
 	    if ($ret < 0) $error++;
173 173
 
174
-	    if (! $error)
174
+	    if (!$error)
175 175
 	    {
176 176
 	        // Actions on extra fields
177 177
             $result = $object->insertExtraFields('SHIPMENT_MODIFY');
@@ -189,23 +189,23 @@  discard block
 block discarded – undo
189 189
 	// Create shipment
190 190
 	if ($action == 'add' && $user->rights->expedition->creer)
191 191
 	{
192
-	    $error=0;
193
-	    $predef='';
192
+	    $error = 0;
193
+	    $predef = '';
194 194
 
195 195
 	    $db->begin();
196 196
 
197
-	    $object->note				= GETPOST('note','alpha');
197
+	    $object->note = GETPOST('note', 'alpha');
198 198
 	    $object->origin				= $origin;
199
-        $object->origin_id			= $origin_id;
200
-        $object->fk_project         = GETPOST('projectid','int');
201
-	    $object->weight				= GETPOST('weight','int')==''?"NULL":GETPOST('weight','int');
202
-	    $object->sizeH				= GETPOST('sizeH','int')==''?"NULL":GETPOST('sizeH','int');
203
-	    $object->sizeW				= GETPOST('sizeW','int')==''?"NULL":GETPOST('sizeW','int');
204
-	    $object->sizeS				= GETPOST('sizeS','int')==''?"NULL":GETPOST('sizeS','int');
205
-	    $object->size_units			= GETPOST('size_units','int');
206
-	    $object->weight_units		= GETPOST('weight_units','int');
199
+        $object->origin_id = $origin_id;
200
+        $object->fk_project = GETPOST('projectid', 'int');
201
+	    $object->weight				= GETPOST('weight', 'int') == '' ? "NULL" : GETPOST('weight', 'int');
202
+	    $object->sizeH				= GETPOST('sizeH', 'int') == '' ? "NULL" : GETPOST('sizeH', 'int');
203
+	    $object->sizeW				= GETPOST('sizeW', 'int') == '' ? "NULL" : GETPOST('sizeW', 'int');
204
+	    $object->sizeS				= GETPOST('sizeS', 'int') == '' ? "NULL" : GETPOST('sizeS', 'int');
205
+	    $object->size_units = GETPOST('size_units', 'int');
206
+	    $object->weight_units = GETPOST('weight_units', 'int');
207 207
 
208
-	    $date_delivery = dol_mktime(GETPOST('date_deliveryhour','int'), GETPOST('date_deliverymin','int'), 0, GETPOST('date_deliverymonth','int'), GETPOST('date_deliveryday','int'), GETPOST('date_deliveryyear','int'));
208
+	    $date_delivery = dol_mktime(GETPOST('date_deliveryhour', 'int'), GETPOST('date_deliverymin', 'int'), 0, GETPOST('date_deliverymonth', 'int'), GETPOST('date_deliveryday', 'int'), GETPOST('date_deliveryyear', 'int'));
209 209
 
210 210
 	    // On va boucler sur chaque ligne du document d'origine pour completer objet expedition
211 211
 	    // avec info diverses + qte a livrer
@@ -213,36 +213,36 @@  discard block
 block discarded – undo
213 213
 	    $objectsrc = new $classname($db);
214 214
 	    $objectsrc->fetch($object->origin_id);
215 215
 
216
-	    $object->socid					= $objectsrc->socid;
217
-	    $object->ref_customer			= GETPOST('ref_customer','alpha');
218
-	    $object->model_pdf				= GETPOST('model');
219
-	    $object->date_delivery			= $date_delivery;	    // Date delivery planed
216
+	    $object->socid = $objectsrc->socid;
217
+	    $object->ref_customer = GETPOST('ref_customer', 'alpha');
218
+	    $object->model_pdf = GETPOST('model');
219
+	    $object->date_delivery = $date_delivery; // Date delivery planed
220 220
 	    $object->fk_delivery_address	= $objectsrc->fk_delivery_address;
221
-	    $object->shipping_method_id		= GETPOST('shipping_method_id','int');
222
-	    $object->tracking_number		= GETPOST('tracking_number','alpha');
223
-	    $object->ref_int				= GETPOST('ref_int','alpha');
224
-	    $object->note_private			= GETPOST('note_private','none');
225
-	    $object->note_public			= GETPOST('note_public','none');
226
-		$object->fk_incoterms 			= GETPOST('incoterm_id', 'int');
227
-		$object->location_incoterms 	= GETPOST('location_incoterms', 'alpha');
221
+	    $object->shipping_method_id		= GETPOST('shipping_method_id', 'int');
222
+	    $object->tracking_number = GETPOST('tracking_number', 'alpha');
223
+	    $object->ref_int = GETPOST('ref_int', 'alpha');
224
+	    $object->note_private = GETPOST('note_private', 'none');
225
+	    $object->note_public = GETPOST('note_public', 'none');
226
+		$object->fk_incoterms = GETPOST('incoterm_id', 'int');
227
+		$object->location_incoterms = GETPOST('location_incoterms', 'alpha');
228 228
 
229 229
 	    $batch_line = array();
230 230
 		$stockLine = array();
231
-		$array_options=array();
231
+		$array_options = array();
232 232
 
233
-	    $num=count($objectsrc->lines);
234
-	    $totalqty=0;
233
+	    $num = count($objectsrc->lines);
234
+	    $totalqty = 0;
235 235
 
236 236
 	    for ($i = 0; $i < $num; $i++)
237 237
 	    {
238
-			$idl="idl".$i;
238
+			$idl = "idl".$i;
239 239
 
240
-			$sub_qty=array();
241
-			$subtotalqty=0;
240
+			$sub_qty = array();
241
+			$subtotalqty = 0;
242 242
 
243
-			$j=0;
244
-			$batch="batchl".$i."_0";
245
-			$stockLocation="ent1".$i."_0";
243
+			$j = 0;
244
+			$batch = "batchl".$i."_0";
245
+			$stockLocation = "ent1".$i."_0";
246 246
 	    	$qty = "qtyl".$i;
247 247
 
248 248
 			if ($objectsrc->lines[$i]->product_tobatch)      // If product need a batch number
@@ -254,27 +254,27 @@  discard block
 block discarded – undo
254 254
     				while (isset($_POST[$batch]))
255 255
     				{
256 256
     					// save line of detail into sub_qty
257
-    				    $sub_qty[$j]['q']=GETPOST($qty,'int');				// the qty we want to move for this stock record
258
-    				    $sub_qty[$j]['id_batch']=GETPOST($batch,'int');		// the id into llx_product_batch of stock record to move
259
-    					$subtotalqty+=$sub_qty[$j]['q'];
257
+    				    $sub_qty[$j]['q'] = GETPOST($qty, 'int'); // the qty we want to move for this stock record
258
+    				    $sub_qty[$j]['id_batch'] = GETPOST($batch, 'int'); // the id into llx_product_batch of stock record to move
259
+    					$subtotalqty += $sub_qty[$j]['q'];
260 260
 
261 261
     					//var_dump($qty);var_dump($batch);var_dump($sub_qty[$j]['q']);var_dump($sub_qty[$j]['id_batch']);
262 262
 
263 263
     					$j++;
264
-    					$batch="batchl".$i."_".$j;
264
+    					$batch = "batchl".$i."_".$j;
265 265
     					$qty = "qtyl".$i.'_'.$j;
266 266
     				}
267 267
 
268
-    				$batch_line[$i]['detail']=$sub_qty;		// array of details
269
-    				$batch_line[$i]['qty']=$subtotalqty;
270
-    				$batch_line[$i]['ix_l']=GETPOST($idl,'int');
268
+    				$batch_line[$i]['detail'] = $sub_qty; // array of details
269
+    				$batch_line[$i]['qty'] = $subtotalqty;
270
+    				$batch_line[$i]['ix_l'] = GETPOST($idl, 'int');
271 271
 
272
-    				$totalqty+=$subtotalqty;
272
+    				$totalqty += $subtotalqty;
273 273
 			    }
274 274
 			    else
275 275
 			    {
276 276
 			        // No detail were provided for lots
277
-			        if (! empty($_POST[$qty]))
277
+			        if (!empty($_POST[$qty]))
278 278
 			        {
279 279
 			            // We try to set an amount
280 280
     			        // Case we dont use the list of available qty for each warehouse/lot
@@ -290,14 +290,14 @@  discard block
 block discarded – undo
290 290
 			    while (isset($_POST[$stockLocation]))
291 291
 			    {
292 292
 			        // save sub line of warehouse
293
-			        $stockLine[$i][$j]['qty']=GETPOST($qty,'int');
294
-			        $stockLine[$i][$j]['warehouse_id']=GETPOST($stockLocation,'int');
295
-			        $stockLine[$i][$j]['ix_l']=GETPOST($idl,'int');
293
+			        $stockLine[$i][$j]['qty'] = GETPOST($qty, 'int');
294
+			        $stockLine[$i][$j]['warehouse_id'] = GETPOST($stockLocation, 'int');
295
+			        $stockLine[$i][$j]['ix_l'] = GETPOST($idl, 'int');
296 296
 
297
-			        $totalqty+=GETPOST($qty,'int');
297
+			        $totalqty += GETPOST($qty, 'int');
298 298
 
299 299
 			        $j++;
300
-			        $stockLocation="ent1".$i."_".$j;
300
+			        $stockLocation = "ent1".$i."_".$j;
301 301
 			        $qty = "qtyl".$i.'_'.$j;
302 302
 			    }
303 303
 			}
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 			{
306 306
 			    //var_dump(GETPOST($qty,'int')); var_dump($_POST); var_dump($batch);exit;
307 307
 				//shipment line for product with no batch management and no multiple stock location
308
-				if (GETPOST($qty,'int') > 0) $totalqty+=GETPOST($qty,'int');
308
+				if (GETPOST($qty, 'int') > 0) $totalqty += GETPOST($qty, 'int');
309 309
 			}
310 310
 
311 311
 			// Extrafields
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 			if (is_array($extralabelsline)) {
316 316
 				// Get extra fields
317 317
 				foreach ($extralabelsline as $key => $value) {
318
-					unset($_POST["options_" . $key]);
318
+					unset($_POST["options_".$key]);
319 319
 				}
320 320
 			}
321 321
 	    }
@@ -328,18 +328,18 @@  discard block
 block discarded – undo
328 328
 	        for ($i = 0; $i < $num; $i++)
329 329
 	        {
330 330
 	            $qty = "qtyl".$i;
331
-				if (! isset($batch_line[$i]))
331
+				if (!isset($batch_line[$i]))
332 332
 				{
333 333
 					// not batch mode
334 334
 					if (isset($stockLine[$i]))
335 335
 					{
336 336
     					//shipment from multiple stock locations
337 337
 					    $nbstockline = count($stockLine[$i]);
338
-    					for($j = 0; $j < $nbstockline; $j++)
338
+    					for ($j = 0; $j < $nbstockline; $j++)
339 339
     					{
340
-    					    if ($stockLine[$i][$j]['qty']>0)
340
+    					    if ($stockLine[$i][$j]['qty'] > 0)
341 341
     					    {
342
-    					        $ret=$object->addline($stockLine[$i][$j]['warehouse_id'], $stockLine[$i][$j]['ix_l'], $stockLine[$i][$j]['qty'], $array_options[$i]);
342
+    					        $ret = $object->addline($stockLine[$i][$j]['warehouse_id'], $stockLine[$i][$j]['ix_l'], $stockLine[$i][$j]['qty'], $array_options[$i]);
343 343
     					        if ($ret < 0)
344 344
     					        {
345 345
     					            setEventMessages($object->error, $object->errors, 'errors');
@@ -350,15 +350,15 @@  discard block
 block discarded – undo
350 350
 					}
351 351
 					else
352 352
 					{
353
-						if (GETPOST($qty,'int') > 0 || (GETPOST($qty,'int') == 0 && $conf->global->SHIPMENT_GETS_ALL_ORDER_PRODUCTS))
353
+						if (GETPOST($qty, 'int') > 0 || (GETPOST($qty, 'int') == 0 && $conf->global->SHIPMENT_GETS_ALL_ORDER_PRODUCTS))
354 354
 						{
355 355
 							$ent = "entl".$i;
356 356
 							$idl = "idl".$i;
357
-							$entrepot_id = is_numeric(GETPOST($ent,'int'))?GETPOST($ent,'int'):GETPOST('entrepot_id','int');
358
-							if ($entrepot_id < 0) $entrepot_id='';
359
-							if (! ($objectsrc->lines[$i]->fk_product > 0)) $entrepot_id = 0;
357
+							$entrepot_id = is_numeric(GETPOST($ent, 'int')) ?GETPOST($ent, 'int') : GETPOST('entrepot_id', 'int');
358
+							if ($entrepot_id < 0) $entrepot_id = '';
359
+							if (!($objectsrc->lines[$i]->fk_product > 0)) $entrepot_id = 0;
360 360
 
361
-							$ret=$object->addline($entrepot_id, GETPOST($idl,'int'), GETPOST($qty,'int'), $array_options[$i]);
361
+							$ret = $object->addline($entrepot_id, GETPOST($idl, 'int'), GETPOST($qty, 'int'), $array_options[$i]);
362 362
 							if ($ret < 0)
363 363
 							{
364 364
 								setEventMessages($object->error, $object->errors, 'errors');
@@ -370,9 +370,9 @@  discard block
 block discarded – undo
370 370
 				else
371 371
 				{
372 372
 					// batch mode
373
-					if ($batch_line[$i]['qty']>0)
373
+					if ($batch_line[$i]['qty'] > 0)
374 374
 					{
375
-						$ret=$object->addline_batch($batch_line[$i],$array_options[$i]);
375
+						$ret = $object->addline_batch($batch_line[$i], $array_options[$i]);
376 376
 						if ($ret < 0)
377 377
 						{
378 378
 							setEventMessages($object->error, $object->errors, 'errors');
@@ -385,9 +385,9 @@  discard block
 block discarded – undo
385 385
 	        $ret = $extrafields->setOptionalsFromPost($extralabels, $object);
386 386
 	        if ($ret < 0) $error++;
387 387
 
388
-	        if (! $error)
388
+	        if (!$error)
389 389
 	        {
390
-	            $ret=$object->create($user);		// This create shipment (like Odoo picking) and line of shipments. Stock movement will when validating shipment.
390
+	            $ret = $object->create($user); // This create shipment (like Odoo picking) and line of shipments. Stock movement will when validating shipment.
391 391
 	            if ($ret <= 0)
392 392
 	            {
393 393
 	                setEventMessages($object->error, $object->errors, 'errors');
@@ -397,11 +397,11 @@  discard block
 block discarded – undo
397 397
 	    }
398 398
 	    else
399 399
 	    {
400
-	        setEventMessages($langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("QtyToShip").'/'.$langs->transnoentitiesnoconv("Warehouse")), null, 'errors');
400
+	        setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("QtyToShip").'/'.$langs->transnoentitiesnoconv("Warehouse")), null, 'errors');
401 401
 	        $error++;
402 402
 	    }
403 403
 
404
-	    if (! $error)
404
+	    if (!$error)
405 405
 	    {
406 406
 	        $db->commit();
407 407
 	        header("Location: card.php?id=".$object->id);
@@ -410,8 +410,8 @@  discard block
 block discarded – undo
410 410
 	    else
411 411
 	    {
412 412
 	        $db->rollback();
413
-	        $_GET["commande_id"]=GETPOST('commande_id','int');
414
-	        $action='create';
413
+	        $_GET["commande_id"] = GETPOST('commande_id', 'int');
414
+	        $action = 'create';
415 415
 	    }
416 416
 	}
417 417
 
@@ -433,8 +433,8 @@  discard block
 block discarded – undo
433 433
 	}
434 434
 
435 435
 	else if ($action == 'confirm_valid' && $confirm == 'yes' &&
436
-        ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->creer))
437
-       	|| (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->shipping_advance->validate)))
436
+        ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->expedition->creer))
437
+       	|| (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->expedition->shipping_advance->validate)))
438 438
 	)
439 439
 	{
440 440
 	    $object->fetch_thirdparty();
@@ -453,17 +453,17 @@  discard block
 block discarded – undo
453 453
 	    	{
454 454
 	    		$outputlangs = $langs;
455 455
 	    		$newlang = '';
456
-	    		if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id','aZ09')) $newlang = GETPOST('lang_id','aZ09');
456
+	    		if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id', 'aZ09')) $newlang = GETPOST('lang_id', 'aZ09');
457 457
 	    		if ($conf->global->MAIN_MULTILANGS && empty($newlang))	$newlang = $object->thirdparty->default_lang;
458
-	    		if (! empty($newlang)) {
458
+	    		if (!empty($newlang)) {
459 459
 	    			$outputlangs = new Translate("", $conf);
460 460
 	    			$outputlangs->setDefaultLang($newlang);
461 461
 	    		}
462
-	    		$model=$object->modelpdf;
462
+	    		$model = $object->modelpdf;
463 463
 	    		$ret = $object->fetch($id); // Reload to get new records
464 464
 
465
-	    		$result=$object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
466
-	    		if ($result < 0) dol_print_error($db,$result);
465
+	    		$result = $object->generateDocument($model, $outputlangs, $hidedetails, $hidedesc, $hideref);
466
+	    		if ($result < 0) dol_print_error($db, $result);
467 467
 	    	}
468 468
 	    }
469 469
 	}
@@ -494,10 +494,10 @@  discard block
 block discarded – undo
494 494
 	else if ($action == 'setdate_livraison' && $user->rights->expedition->creer)
495 495
 	{
496 496
 	    //print "x ".$_POST['liv_month'].", ".$_POST['liv_day'].", ".$_POST['liv_year'];
497
-	    $datedelivery=dol_mktime(GETPOST('liv_hour','int'), GETPOST('liv_min','int'), 0, GETPOST('liv_month','int'), GETPOST('liv_day','int'), GETPOST('liv_year','int'));
497
+	    $datedelivery = dol_mktime(GETPOST('liv_hour', 'int'), GETPOST('liv_min', 'int'), 0, GETPOST('liv_month', 'int'), GETPOST('liv_day', 'int'), GETPOST('liv_year', 'int'));
498 498
 
499 499
 	    $object->fetch($id);
500
-	    $result=$object->set_date_livraison($user,$datedelivery);
500
+	    $result = $object->set_date_livraison($user, $datedelivery);
501 501
 	    if ($result < 0)
502 502
 	    {
503 503
 	        setEventMessages($object->error, $object->errors, 'errors');
@@ -516,23 +516,23 @@  discard block
 block discarded – undo
516 516
 		&& $user->rights->expedition->creer
517 517
 		)
518 518
 	{
519
-	    $error=0;
519
+	    $error = 0;
520 520
 
521
-	    if ($action == 'settracking_number')		$object->tracking_number = trim(GETPOST('tracking_number','alpha'));
522
-	    if ($action == 'settracking_url')		$object->tracking_url = trim(GETPOST('tracking_url','int'));
523
-	    if ($action == 'settrueWeight')	{
524
-	    	$object->trueWeight = trim(GETPOST('trueWeight','int'));
525
-			$object->weight_units = GETPOST('weight_units','int');
521
+	    if ($action == 'settracking_number')		$object->tracking_number = trim(GETPOST('tracking_number', 'alpha'));
522
+	    if ($action == 'settracking_url')		$object->tracking_url = trim(GETPOST('tracking_url', 'int'));
523
+	    if ($action == 'settrueWeight') {
524
+	    	$object->trueWeight = trim(GETPOST('trueWeight', 'int'));
525
+			$object->weight_units = GETPOST('weight_units', 'int');
526 526
 	    }
527
-	    if ($action == 'settrueWidth')			$object->trueWidth = trim(GETPOST('trueWidth','int'));
528
-	    if ($action == 'settrueHeight'){
529
-	    				$object->trueHeight = trim(GETPOST('trueHeight','int'));
530
-						$object->size_units = GETPOST('size_units','int');
527
+	    if ($action == 'settrueWidth')			$object->trueWidth = trim(GETPOST('trueWidth', 'int'));
528
+	    if ($action == 'settrueHeight') {
529
+	    				$object->trueHeight = trim(GETPOST('trueHeight', 'int'));
530
+						$object->size_units = GETPOST('size_units', 'int');
531 531
 		}
532
-	    if ($action == 'settrueDepth')			$object->trueDepth = trim(GETPOST('trueDepth','int'));
533
-	    if ($action == 'setshipping_method_id')	$object->shipping_method_id = trim(GETPOST('shipping_method_id','int'));
532
+	    if ($action == 'settrueDepth')			$object->trueDepth = trim(GETPOST('trueDepth', 'int'));
533
+	    if ($action == 'setshipping_method_id')	$object->shipping_method_id = trim(GETPOST('shipping_method_id', 'int'));
534 534
 
535
-	    if (! $error)
535
+	    if (!$error)
536 536
 	    {
537 537
 	        if ($object->update($user) >= 0)
538 538
 	        {
@@ -542,15 +542,15 @@  discard block
 block discarded – undo
542 542
 	        setEventMessages($object->error, $object->errors, 'errors');
543 543
 	    }
544 544
 
545
-	    $action="";
545
+	    $action = "";
546 546
 	}
547 547
 
548 548
 	elseif ($action == 'classifybilled')
549 549
 	{
550 550
 	    $object->fetch($id);
551 551
 	    $result = $object->set_billed();
552
-	    if($result >= 0) {
553
-	    	header('Location: ' . $_SERVER["PHP_SELF"] . '?id=' . $object->id);
552
+	    if ($result >= 0) {
553
+	    	header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id);
554 554
 	    	exit();
555 555
 	    }
556 556
 	}
@@ -559,8 +559,8 @@  discard block
 block discarded – undo
559 559
 	{
560 560
 	    $object->fetch($id);
561 561
 	    $result = $object->setClosed();
562
-	    if($result >= 0) {
563
-	    	header('Location: ' . $_SERVER["PHP_SELF"] . '?id=' . $object->id);
562
+	    if ($result >= 0) {
563
+	    	header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id);
564 564
 	    	exit();
565 565
 	    }
566 566
 	}
@@ -568,14 +568,14 @@  discard block
 block discarded – undo
568 568
 	/*
569 569
 	 *  delete a line
570 570
 	 */
571
-	elseif ($action == 'deleteline' && ! empty($line_id))
571
+	elseif ($action == 'deleteline' && !empty($line_id))
572 572
 	{
573 573
 		$object->fetch($id);
574 574
 		$lines = $object->lines;
575 575
 		$line = new ExpeditionLigne($db);
576 576
 
577 577
 		$num_prod = count($lines);
578
-		for ($i = 0 ; $i < $num_prod ; $i++)
578
+		for ($i = 0; $i < $num_prod; $i++)
579 579
 		{
580 580
 			if ($lines[$i]->id == $line_id)
581 581
 			{
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
 					// delete multi warehouse lines
585 585
 					foreach ($lines[$i]->details_entrepot as $details_entrepot) {
586 586
 						$line->id = $details_entrepot->line_id;
587
-						if (! $error && $line->delete($user) < 0)
587
+						if (!$error && $line->delete($user) < 0)
588 588
 						{
589 589
 							$error++;
590 590
 						}
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
 				{
595 595
 					// delete single warehouse line
596 596
 					$line->id = $line_id;
597
-					if (! $error && $line->delete($user) < 0)
597
+					if (!$error && $line->delete($user) < 0)
598 598
 					{
599 599
 						$error++;
600 600
 					}
@@ -603,8 +603,8 @@  discard block
 block discarded – undo
603 603
 			unset($_POST["lineid"]);
604 604
 		}
605 605
 
606
-		if(! $error) {
607
-			header('Location: ' . $_SERVER["PHP_SELF"] . '?id=' . $object->id);
606
+		if (!$error) {
607
+			header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id);
608 608
 			exit();
609 609
 		}
610 610
 		else
@@ -619,13 +619,13 @@  discard block
 block discarded – undo
619 619
 	else if ($action == 'updateline' && $user->rights->expedition->creer && GETPOST('save'))
620 620
 	{
621 621
 		// Clean parameters
622
-		$qty=0;
622
+		$qty = 0;
623 623
 		$entrepot_id = 0;
624 624
 		$batch_id = 0;
625 625
 
626 626
 		$lines = $object->lines;
627 627
 		$num_prod = count($lines);
628
-		for ($i = 0 ; $i < $num_prod ; $i++)
628
+		for ($i = 0; $i < $num_prod; $i++)
629 629
 		{
630 630
 			if ($lines[$i]->id == $line_id)		// we have found line to update
631 631
 			{
@@ -637,7 +637,7 @@  discard block
 block discarded – undo
637 637
 				// Unset extrafield POST Data
638 638
 				if (is_array($extralabelsline)) {
639 639
 					foreach ($extralabelsline as $key => $value) {
640
-						unset($_POST["options_" . $key]);
640
+						unset($_POST["options_".$key]);
641 641
 					}
642 642
 				}
643 643
 				$line->fk_product = $lines[$i]->fk_product;
@@ -647,11 +647,11 @@  discard block
 block discarded – undo
647 647
 					foreach ($lines[$i]->detail_batch as $detail_batch)
648 648
 					{
649 649
 						$lotStock = new Productbatch($db);
650
-						$batch="batchl".$detail_batch->fk_expeditiondet."_".$detail_batch->fk_origin_stock;
650
+						$batch = "batchl".$detail_batch->fk_expeditiondet."_".$detail_batch->fk_origin_stock;
651 651
 						$qty = "qtyl".$detail_batch->fk_expeditiondet.'_'.$detail_batch->id;
652
-						$batch_id = GETPOST($batch,'int');
652
+						$batch_id = GETPOST($batch, 'int');
653 653
 						$batch_qty = GETPOST($qty, 'int');
654
-						if (! empty($batch_id) && ($batch_id != $detail_batch->fk_origin_stock || $batch_qty != $detail_batch->qty))
654
+						if (!empty($batch_id) && ($batch_id != $detail_batch->fk_origin_stock || $batch_qty != $detail_batch->qty))
655 655
 						{
656 656
 							if ($lotStock->fetch($batch_id) > 0 && $line->fetch($detail_batch->fk_expeditiondet) > 0)	// $line is ExpeditionLine
657 657
 							{
@@ -662,7 +662,7 @@  discard block
 block discarded – undo
662 662
 								}
663 663
 
664 664
 								// detail_batch can be an object with keys, or an array of ExpeditionLineBatch
665
-								if (empty($line->detail_batch)) $line->detail_batch=new stdClass();
665
+								if (empty($line->detail_batch)) $line->detail_batch = new stdClass();
666 666
 
667 667
 								$line->detail_batch->fk_origin_stock = $batch_id;
668 668
 								$line->detail_batch->batch = $lotStock->batch;
@@ -685,12 +685,12 @@  discard block
 block discarded – undo
685 685
 					}
686 686
 					// add new batch
687 687
 					$lotStock = new Productbatch($db);
688
-					$batch="batchl".$line_id."_0";
688
+					$batch = "batchl".$line_id."_0";
689 689
 					$qty = "qtyl".$line_id."_0";
690
-					$batch_id = GETPOST($batch,'int');
690
+					$batch_id = GETPOST($batch, 'int');
691 691
 					$batch_qty = GETPOST($qty, 'int');
692 692
 					$lineIdToAddLot = 0;
693
-					if ($batch_qty > 0 && ! empty($batch_id))
693
+					if ($batch_qty > 0 && !empty($batch_id))
694 694
 					{
695 695
 						if ($lotStock->fetch($batch_id) > 0)
696 696
 						{
@@ -766,10 +766,10 @@  discard block
 block discarded – undo
766 766
 						if ($lines[$i]->entrepot_id > 0)
767 767
 						{
768 768
 							// single warehouse shipment line
769
-							$stockLocation="entl".$line_id;
769
+							$stockLocation = "entl".$line_id;
770 770
 							$qty = "qtyl".$line_id;
771 771
 							$line->id = $line_id;
772
-							$line->entrepot_id = GETPOST($stockLocation,'int');
772
+							$line->entrepot_id = GETPOST($stockLocation, 'int');
773 773
 							$line->qty = GETPOST($qty, 'int');
774 774
 							if ($line->update($user) < 0) {
775 775
 								setEventMessages($line->error, $line->errors, 'errors');
@@ -783,10 +783,10 @@  discard block
 block discarded – undo
783 783
 							// multi warehouse shipment lines
784 784
 							foreach ($lines[$i]->details_entrepot as $detail_entrepot)
785 785
 							{
786
-								if (! $error) {
787
-									$stockLocation="entl".$detail_entrepot->line_id;
786
+								if (!$error) {
787
+									$stockLocation = "entl".$detail_entrepot->line_id;
788 788
 									$qty = "qtyl".$detail_entrepot->line_id;
789
-									$warehouse = GETPOST($stockLocation,'int');
789
+									$warehouse = GETPOST($stockLocation, 'int');
790 790
 									if (!empty ($warehouse))
791 791
 									{
792 792
 										$line->id = $detail_entrepot->line_id;
@@ -821,16 +821,16 @@  discard block
 block discarded – undo
821 821
 
822 822
 		unset($_POST["lineid"]);
823 823
 
824
-		if (! $error) {
824
+		if (!$error) {
825 825
 			if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {
826 826
 				// Define output language
827 827
 				$outputlangs = $langs;
828 828
 				$newlang = '';
829
-				if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id','aZ09'))
830
-					$newlang = GETPOST('lang_id','aZ09');
829
+				if ($conf->global->MAIN_MULTILANGS && empty($newlang) && GETPOST('lang_id', 'aZ09'))
830
+					$newlang = GETPOST('lang_id', 'aZ09');
831 831
 				if ($conf->global->MAIN_MULTILANGS && empty($newlang))
832 832
 					$newlang = $object->thirdparty->default_lang;
833
-				if (! empty($newlang)) {
833
+				if (!empty($newlang)) {
834 834
 					$outputlangs = new Translate("", $conf);
835 835
 					$outputlangs->setDefaultLang($newlang);
836 836
 				}
@@ -841,24 +841,24 @@  discard block
 block discarded – undo
841 841
 		}
842 842
 		else
843 843
 		{
844
-			header('Location: ' . $_SERVER['PHP_SELF'] . '?id=' . $object->id); // Pour reaffichage de la fiche en cours d'edition
844
+			header('Location: '.$_SERVER['PHP_SELF'].'?id='.$object->id); // Pour reaffichage de la fiche en cours d'edition
845 845
 			exit();
846 846
 		}
847 847
 	}
848 848
 
849
-	else if ($action == 'updateline' && $user->rights->expedition->creer && GETPOST('cancel','alpha') == $langs->trans('Cancel')) {
850
-		header('Location: ' . $_SERVER['PHP_SELF'] . '?id=' . $object->id); // Pour reaffichage de la fiche en cours d'edition
849
+	else if ($action == 'updateline' && $user->rights->expedition->creer && GETPOST('cancel', 'alpha') == $langs->trans('Cancel')) {
850
+		header('Location: '.$_SERVER['PHP_SELF'].'?id='.$object->id); // Pour reaffichage de la fiche en cours d'edition
851 851
 		exit();
852 852
 	}
853 853
 
854 854
 	include DOL_DOCUMENT_ROOT.'/core/actions_printing.inc.php';
855 855
 
856 856
 	// Actions to send emails
857
-	if (empty($id)) $id=$facid;
858
-	$trigger_name='SHIPPING_SENTBYMAIL';
859
-	$paramname='id';
860
-	$mode='emailfromshipment';
861
-	$trackid='shi'.$object->id;
857
+	if (empty($id)) $id = $facid;
858
+	$trigger_name = 'SHIPPING_SENTBYMAIL';
859
+	$paramname = 'id';
860
+	$mode = 'emailfromshipment';
861
+	$trackid = 'shi'.$object->id;
862 862
 	include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
863 863
 }
864 864
 
@@ -867,12 +867,12 @@  discard block
 block discarded – undo
867 867
  * View
868 868
  */
869 869
 
870
-llxHeader('',$langs->trans('Shipment'),'Expedition');
870
+llxHeader('', $langs->trans('Shipment'), 'Expedition');
871 871
 
872 872
 $form = new Form($db);
873 873
 $formfile = new FormFile($db);
874 874
 $formproduct = new FormProduct($db);
875
-if (! empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
875
+if (!empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
876 876
 
877 877
 $product_static = new Product($db);
878 878
 $shipment_static = new Expedition($db);
@@ -882,7 +882,7 @@  discard block
 block discarded – undo
882 882
 {
883 883
     print load_fiche_titre($langs->trans("CreateShipment")).'<br>';
884 884
     print $langs->trans("ShipmentCreationIsDoneFromOrder");
885
-    $action=''; $id=''; $ref='';
885
+    $action = ''; $id = ''; $ref = '';
886 886
 }
887 887
 
888 888
 // Mode creation.
@@ -891,7 +891,7 @@  discard block
 block discarded – undo
891 891
     $expe = new Expedition($db);
892 892
 
893 893
     print load_fiche_titre($langs->trans("CreateShipment"));
894
-    if (! $origin)
894
+    if (!$origin)
895 895
     {
896 896
         setEventMessages($langs->trans("ErrorBadParameters"), null, 'errors');
897 897
     }
@@ -909,7 +909,7 @@  discard block
 block discarded – undo
909 909
             $author = new User($db);
910 910
             $author->fetch($object->user_author_id);
911 911
 
912
-            if (! empty($conf->stock->enabled)) $entrepot = new Entrepot($db);
912
+            if (!empty($conf->stock->enabled)) $entrepot = new Entrepot($db);
913 913
 
914 914
             print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
915 915
             print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
@@ -917,9 +917,9 @@  discard block
 block discarded – undo
917 917
             print '<input type="hidden" name="origin" value="'.$origin.'">';
918 918
             print '<input type="hidden" name="origin_id" value="'.$object->id.'">';
919 919
             print '<input type="hidden" name="ref_int" value="'.$object->ref_int.'">';
920
-            if (GETPOST('entrepot_id','int'))
920
+            if (GETPOST('entrepot_id', 'int'))
921 921
             {
922
-                print '<input type="hidden" name="entrepot_id" value="'.GETPOST('entrepot_id','int').'">';
922
+                print '<input type="hidden" name="entrepot_id" value="'.GETPOST('entrepot_id', 'int').'">';
923 923
             }
924 924
 
925 925
             dol_fiche_head('');
@@ -928,13 +928,13 @@  discard block
 block discarded – undo
928 928
 
929 929
             // Ref
930 930
             print '<tr><td class="titlefieldcreate fieldrequired">';
931
-            if ($origin == 'commande' && ! empty($conf->commande->enabled))
931
+            if ($origin == 'commande' && !empty($conf->commande->enabled))
932 932
             {
933
-                print $langs->trans("RefOrder").'</td><td colspan="3"><a href="'.DOL_URL_ROOT.'/commande/card.php?id='.$object->id.'">'.img_object($langs->trans("ShowOrder"),'order').' '.$object->ref;
933
+                print $langs->trans("RefOrder").'</td><td colspan="3"><a href="'.DOL_URL_ROOT.'/commande/card.php?id='.$object->id.'">'.img_object($langs->trans("ShowOrder"), 'order').' '.$object->ref;
934 934
             }
935
-            if ($origin == 'propal' && ! empty($conf->propal->enabled))
935
+            if ($origin == 'propal' && !empty($conf->propal->enabled))
936 936
             {
937
-                print $langs->trans("RefProposal").'</td><td colspan="3"><a href="'.DOL_URL_ROOT.'/comm/card.php?id='.$object->id.'">'.img_object($langs->trans("ShowProposal"),'propal').' '.$object->ref;
937
+                print $langs->trans("RefProposal").'</td><td colspan="3"><a href="'.DOL_URL_ROOT.'/comm/card.php?id='.$object->id.'">'.img_object($langs->trans("ShowProposal"), 'propal').' '.$object->ref;
938 938
             }
939 939
             print '</a></td>';
940 940
             print "</tr>\n";
@@ -955,17 +955,17 @@  discard block
 block discarded – undo
955 955
             print '</tr>';
956 956
 
957 957
             // Project
958
-            if (! empty($conf->projet->enabled))
958
+            if (!empty($conf->projet->enabled))
959 959
             {
960
-                $projectid = GETPOST('projectid','int')?GETPOST('projectid','int'):0;
961
-                if(empty($projectid) && ! empty($object->fk_project)) $projectid = $object->fk_project;
960
+                $projectid = GETPOST('projectid', 'int') ?GETPOST('projectid', 'int') : 0;
961
+                if (empty($projectid) && !empty($object->fk_project)) $projectid = $object->fk_project;
962 962
                 if ($origin == 'project') $projectid = ($originid ? $originid : 0);
963 963
 
964 964
                 $langs->load("projects");
965 965
                 print '<tr>';
966
-                print '<td>' . $langs->trans("Project") . '</td><td colspan="2">';
966
+                print '<td>'.$langs->trans("Project").'</td><td colspan="2">';
967 967
                 $numprojet = $formproject->select_projects($soc->id, $projectid, 'projectid', 0);
968
-                print ' &nbsp; <a href="'.DOL_URL_ROOT.'/projet/card.php?socid=' . $soc->id . '&action=create&status=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?action=create&socid='.$soc->id).'">' . $langs->trans("AddProject") . '</a>';
968
+                print ' &nbsp; <a href="'.DOL_URL_ROOT.'/projet/card.php?socid='.$soc->id.'&action=create&status=1&backtopage='.urlencode($_SERVER["PHP_SELF"].'?action=create&socid='.$soc->id).'">'.$langs->trans("AddProject").'</a>';
969 969
                 print '</td>';
970 970
                 print '</tr>';
971 971
             }
@@ -974,8 +974,8 @@  discard block
 block discarded – undo
974 974
             print '<tr><td>'.$langs->trans("DateDeliveryPlanned").'</td>';
975 975
             print '<td colspan="3">';
976 976
             //print dol_print_date($object->date_livraison,"day");	// date_livraison come from order and will be stored into date_delivery planed.
977
-            $date_delivery = ($date_delivery?$date_delivery:$object->date_livraison); // $date_delivery comes from GETPOST
978
-            print $form->selectDate($date_delivery?$date_delivery:-1, 'date_delivery', 1, 1, 1);
977
+            $date_delivery = ($date_delivery ? $date_delivery : $object->date_livraison); // $date_delivery comes from GETPOST
978
+            print $form->selectDate($date_delivery ? $date_delivery : -1, 'date_delivery', 1, 1, 1);
979 979
             print "</td>\n";
980 980
             print '</tr>';
981 981
 
@@ -987,7 +987,7 @@  discard block
 block discarded – undo
987 987
             print "</td></tr>";
988 988
 
989 989
             // Note Private
990
-            if ($object->note_private && ! $user->societe_id)
990
+            if ($object->note_private && !$user->societe_id)
991 991
             {
992 992
                 print '<tr><td>'.$langs->trans("NotePrivate").'</td>';
993 993
                 print '<td colspan="3">';
@@ -999,20 +999,20 @@  discard block
 block discarded – undo
999 999
             // Weight
1000 1000
             print '<tr><td>';
1001 1001
             print $langs->trans("Weight");
1002
-            print '</td><td colspan="3"><input name="weight" size="4" value="'.GETPOST('weight','int').'"> ';
1003
-            $text=$formproduct->select_measuring_units("weight_units","weight",GETPOST('weight_units','int'));
1004
-            $htmltext=$langs->trans("KeepEmptyForAutoCalculation");
1002
+            print '</td><td colspan="3"><input name="weight" size="4" value="'.GETPOST('weight', 'int').'"> ';
1003
+            $text = $formproduct->select_measuring_units("weight_units", "weight", GETPOST('weight_units', 'int'));
1004
+            $htmltext = $langs->trans("KeepEmptyForAutoCalculation");
1005 1005
             print $form->textwithpicto($text, $htmltext);
1006 1006
             print '</td></tr>';
1007 1007
             // Dim
1008 1008
             print '<tr><td>';
1009 1009
             print $langs->trans("Width").' x '.$langs->trans("Height").' x '.$langs->trans("Depth");
1010
-            print ' </td><td colspan="3"><input name="sizeW" size="4" value="'.GETPOST('sizeW','int').'">';
1011
-            print ' x <input name="sizeH" size="4" value="'.GETPOST('sizeH','int').'">';
1012
-            print ' x <input name="sizeS" size="4" value="'.GETPOST('sizeS','int').'">';
1010
+            print ' </td><td colspan="3"><input name="sizeW" size="4" value="'.GETPOST('sizeW', 'int').'">';
1011
+            print ' x <input name="sizeH" size="4" value="'.GETPOST('sizeH', 'int').'">';
1012
+            print ' x <input name="sizeS" size="4" value="'.GETPOST('sizeS', 'int').'">';
1013 1013
             print ' ';
1014
-            $text=$formproduct->select_measuring_units("size_units","size");
1015
-            $htmltext=$langs->trans("KeepEmptyForAutoCalculation");
1014
+            $text = $formproduct->select_measuring_units("size_units", "size");
1015
+            $htmltext = $langs->trans("KeepEmptyForAutoCalculation");
1016 1016
             print $form->textwithpicto($text, $htmltext);
1017 1017
             print '</td></tr>';
1018 1018
 
@@ -1020,19 +1020,19 @@  discard block
 block discarded – undo
1020 1020
             print "<tr><td>".$langs->trans("DeliveryMethod")."</td>";
1021 1021
             print '<td colspan="3">';
1022 1022
             $expe->fetch_delivery_methods();
1023
-            print $form->selectarray("shipping_method_id", $expe->meths, GETPOST('shipping_method_id','int'),1,0,0,"",1);
1024
-            if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
1023
+            print $form->selectarray("shipping_method_id", $expe->meths, GETPOST('shipping_method_id', 'int'), 1, 0, 0, "", 1);
1024
+            if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1025 1025
             print "</td></tr>\n";
1026 1026
 
1027 1027
             // Tracking number
1028 1028
             print "<tr><td>".$langs->trans("TrackingNumber")."</td>";
1029 1029
             print '<td colspan="3">';
1030
-            print '<input name="tracking_number" size="20" value="'.GETPOST('tracking_number','alpha').'">';
1030
+            print '<input name="tracking_number" size="20" value="'.GETPOST('tracking_number', 'alpha').'">';
1031 1031
             print "</td></tr>\n";
1032 1032
 
1033 1033
             // Other attributes
1034 1034
             $parameters = array('objectsrc' => $objectsrc, 'colspan' => ' colspan="3"', 'socid'=>$socid);
1035
-            $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$expe,$action);    // Note that $action and $object may have been modified by hook
1035
+            $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $expe, $action); // Note that $action and $object may have been modified by hook
1036 1036
             print $hookmanager->resPrint;
1037 1037
 
1038 1038
 			if (empty($reshook)) {
@@ -1052,12 +1052,12 @@  discard block
 block discarded – undo
1052 1052
 				print '<tr>';
1053 1053
 				print '<td><label for="incoterm_id">'.$form->textwithpicto($langs->trans("IncotermLabel"), $object->libelle_incoterms, 1).'</label></td>';
1054 1054
 		        print '<td colspan="3" class="maxwidthonsmartphone">';
1055
-		        print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms)?$object->location_incoterms:''));
1055
+		        print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : ''));
1056 1056
 				print '</td></tr>';
1057 1057
 			}
1058 1058
 
1059 1059
             // Document model
1060
-			include_once DOL_DOCUMENT_ROOT . '/core/modules/expedition/modules_expedition.php';
1060
+			include_once DOL_DOCUMENT_ROOT.'/core/modules/expedition/modules_expedition.php';
1061 1061
 			$liste = ModelePdfExpedition::liste_modeles($db);
1062 1062
 			if (count($liste) > 1)
1063 1063
 			{
@@ -1079,16 +1079,16 @@  discard block
 block discarded – undo
1079 1079
             print '<script type="text/javascript" language="javascript">
1080 1080
             jQuery(document).ready(function() {
1081 1081
 	            jQuery("#autofill").click(function() {';
1082
-    	    	$i=0;
1083
-    	    	while($i < $numAsked)
1082
+    	    	$i = 0;
1083
+    	    	while ($i < $numAsked)
1084 1084
     	    	{
1085 1085
     	    		print 'jQuery("#qtyl'.$i.'").val(jQuery("#qtyasked'.$i.'").val() - jQuery("#qtydelivered'.$i.'").val());'."\n";
1086 1086
     	    		$i++;
1087 1087
     	    	}
1088 1088
         		print '});
1089 1089
 	            jQuery("#autoreset").click(function() {';
1090
-    	    	$i=0;
1091
-    	    	while($i < $numAsked)
1090
+    	    	$i = 0;
1091
+    	    	while ($i < $numAsked)
1092 1092
     	    	{
1093 1093
     	    		print 'jQuery("#qtyl'.$i.'").val(0);'."\n";
1094 1094
     	    		$i++;
@@ -1120,7 +1120,7 @@  discard block
 block discarded – undo
1120 1120
 	                print ' / <a href="#" id="autoreset">'.$langs->trans("Reset").'</a>)';
1121 1121
 				}
1122 1122
                 print '</td>';
1123
-                if (! empty($conf->stock->enabled))
1123
+                if (!empty($conf->stock->enabled))
1124 1124
                 {
1125 1125
 					if (empty($conf->productbatch->enabled))
1126 1126
 					{
@@ -1143,11 +1143,11 @@  discard block
 block discarded – undo
1143 1143
 
1144 1144
 
1145 1145
                 // Show product and description
1146
-                $type=$line->product_type?$line->product_type:$line->fk_product_type;
1146
+                $type = $line->product_type ? $line->product_type : $line->fk_product_type;
1147 1147
                 // Try to enhance type detection using date_start and date_end for free lines where type
1148 1148
                 // was not saved.
1149
-                if (! empty($line->date_start)) $type=1;
1150
-                if (! empty($line->date_end)) $type=1;
1149
+                if (!empty($line->date_start)) $type = 1;
1150
+                if (!empty($line->date_end)) $type = 1;
1151 1151
 
1152 1152
                 print '<!-- line '.$line->rowid.' for product -->'."\n";
1153 1153
                 print '<tr class="oddeven">'."\n";
@@ -1156,29 +1156,29 @@  discard block
 block discarded – undo
1156 1156
                 if ($line->fk_product > 0)  // If predefined product
1157 1157
                 {
1158 1158
                     $product->fetch($line->fk_product);
1159
-                    $product->load_stock('warehouseopen');	// Load all $product->stock_warehouse[idwarehouse]->detail_batch
1159
+                    $product->load_stock('warehouseopen'); // Load all $product->stock_warehouse[idwarehouse]->detail_batch
1160 1160
                     //var_dump($product->stock_warehouse[1]);
1161 1161
 
1162 1162
                     print '<td>';
1163 1163
                     print '<a name="'.$line->rowid.'"></a>'; // ancre pour retourner sur la ligne
1164 1164
 
1165 1165
                     // Show product and description
1166
-                    $product_static->type=$line->fk_product_type;
1167
-                    $product_static->id=$line->fk_product;
1168
-                    $product_static->ref=$line->ref;
1169
-                    $product_static->status_batch=$line->product_tobatch;
1170
-                    $text=$product_static->getNomUrl(1);
1171
-                    $text.= ' - '.(! empty($line->label)?$line->label:$line->product_label);
1172
-                    $description=($conf->global->PRODUIT_DESC_IN_FORM?'':dol_htmlentitiesbr($line->desc));
1173
-                    print $form->textwithtooltip($text,$description,3,'','',$i);
1166
+                    $product_static->type = $line->fk_product_type;
1167
+                    $product_static->id = $line->fk_product;
1168
+                    $product_static->ref = $line->ref;
1169
+                    $product_static->status_batch = $line->product_tobatch;
1170
+                    $text = $product_static->getNomUrl(1);
1171
+                    $text .= ' - '.(!empty($line->label) ? $line->label : $line->product_label);
1172
+                    $description = ($conf->global->PRODUIT_DESC_IN_FORM ? '' : dol_htmlentitiesbr($line->desc));
1173
+                    print $form->textwithtooltip($text, $description, 3, '', '', $i);
1174 1174
 
1175 1175
                     // Show range
1176
-                    print_date_range($db->jdate($line->date_start),$db->jdate($line->date_end));
1176
+                    print_date_range($db->jdate($line->date_start), $db->jdate($line->date_end));
1177 1177
 
1178 1178
                     // Add description in form
1179
-                    if (! empty($conf->global->PRODUIT_DESC_IN_FORM))
1179
+                    if (!empty($conf->global->PRODUIT_DESC_IN_FORM))
1180 1180
                     {
1181
-                        print ($line->desc && $line->desc!=$line->product_label)?'<br>'.dol_htmlentitiesbr($line->desc):'';
1181
+                        print ($line->desc && $line->desc != $line->product_label) ? '<br>'.dol_htmlentitiesbr($line->desc) : '';
1182 1182
                     }
1183 1183
 
1184 1184
                     print '</td>';
@@ -1186,18 +1186,18 @@  discard block
 block discarded – undo
1186 1186
                 else
1187 1187
 				{
1188 1188
 				    print "<td>";
1189
-                    if ($type==1) $text = img_object($langs->trans('Service'),'service');
1190
-                    else $text = img_object($langs->trans('Product'),'product');
1189
+                    if ($type == 1) $text = img_object($langs->trans('Service'), 'service');
1190
+                    else $text = img_object($langs->trans('Product'), 'product');
1191 1191
 
1192
-                    if (! empty($line->label)) {
1193
-                    	$text.= ' <strong>'.$line->label.'</strong>';
1194
-                    	print $form->textwithtooltip($text,$line->desc,3,'','',$i);
1192
+                    if (!empty($line->label)) {
1193
+                    	$text .= ' <strong>'.$line->label.'</strong>';
1194
+                    	print $form->textwithtooltip($text, $line->desc, 3, '', '', $i);
1195 1195
                     } else {
1196 1196
                     	print $text.' '.nl2br($line->desc);
1197 1197
                     }
1198 1198
 
1199 1199
                     // Show range
1200
-                    print_date_range($db->jdate($line->date_start),$db->jdate($line->date_end));
1200
+                    print_date_range($db->jdate($line->date_start), $db->jdate($line->date_end));
1201 1201
                     print "</td>\n";
1202 1202
                 }
1203 1203
 
@@ -1205,7 +1205,7 @@  discard block
 block discarded – undo
1205 1205
                 print '<td align="center">'.$line->qty;
1206 1206
                 print '<input name="qtyasked'.$indiceAsked.'" id="qtyasked'.$indiceAsked.'" type="hidden" value="'.$line->qty.'">';
1207 1207
                 print '</td>';
1208
-                $qtyProdCom=$line->qty;
1208
+                $qtyProdCom = $line->qty;
1209 1209
 
1210 1210
                 // Qty already shipped
1211 1211
                 print '<td align="center">';
@@ -1224,23 +1224,23 @@  discard block
 block discarded – undo
1224 1224
 				{
1225 1225
 					$quantityToBeDelivered = $quantityAsked - $quantityDelivered;
1226 1226
 				}
1227
-                $warehouse_id = GETPOST('entrepot_id','int');
1227
+                $warehouse_id = GETPOST('entrepot_id', 'int');
1228 1228
 
1229 1229
 				$warehouseObject = null;
1230
-				if ($warehouse_id > 0 || ! ($line->fk_product > 0) || empty($conf->stock->enabled))     // If warehouse was already selected or if product is not a predefined, we go into this part with no multiwarehouse selection
1230
+				if ($warehouse_id > 0 || !($line->fk_product > 0) || empty($conf->stock->enabled))     // If warehouse was already selected or if product is not a predefined, we go into this part with no multiwarehouse selection
1231 1231
 				{
1232 1232
 				    print '<!-- Case warehouse already known or product not a predefined product -->';
1233 1233
 					//ship from preselected location
1234 1234
 					$stock = + $product->stock_warehouse[$warehouse_id]->real; // Convert to number
1235
-					$deliverableQty=min($quantityToBeDelivered, $stock);
1235
+					$deliverableQty = min($quantityToBeDelivered, $stock);
1236 1236
 					if ($deliverableQty < 0) $deliverableQty = 0;
1237
-					if (empty($conf->productbatch->enabled) || ! $product->hasbatch())
1237
+					if (empty($conf->productbatch->enabled) || !$product->hasbatch())
1238 1238
 					{
1239 1239
 						// Quantity to send
1240 1240
 						print '<td align="center">';
1241
-						if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
1241
+						if ($line->product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))
1242 1242
 						{
1243
-                            if (GETPOST('qtyl'.$indiceAsked, 'int')) $deliverableQty=GETPOST('qtyl'.$indiceAsked, 'int');
1243
+                            if (GETPOST('qtyl'.$indiceAsked, 'int')) $deliverableQty = GETPOST('qtyl'.$indiceAsked, 'int');
1244 1244
                             print '<input name="idl'.$indiceAsked.'" type="hidden" value="'.$line->id.'">';
1245 1245
 							print '<input name="qtyl'.$indiceAsked.'" id="qtyl'.$indiceAsked.'" type="text" size="4" value="'.$deliverableQty.'">';
1246 1246
 						}
@@ -1248,15 +1248,15 @@  discard block
 block discarded – undo
1248 1248
 						print '</td>';
1249 1249
 
1250 1250
 						// Stock
1251
-						if (! empty($conf->stock->enabled))
1251
+						if (!empty($conf->stock->enabled))
1252 1252
 						{
1253 1253
 							print '<td align="left">';
1254
-							if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))   // Type of product need stock change ?
1254
+							if ($line->product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))   // Type of product need stock change ?
1255 1255
 							{
1256 1256
 								// Show warehouse combo list
1257 1257
 								$ent = "entl".$indiceAsked;
1258 1258
 								$idl = "idl".$indiceAsked;
1259
-								$tmpentrepot_id = is_numeric(GETPOST($ent,'int'))?GETPOST($ent,'int'):$warehouse_id;
1259
+								$tmpentrepot_id = is_numeric(GETPOST($ent, 'int')) ?GETPOST($ent, 'int') : $warehouse_id;
1260 1260
 								if ($line->fk_product > 0)
1261 1261
 								{
1262 1262
 								    print '<!-- Show warehouse selection -->';
@@ -1266,7 +1266,7 @@  discard block
 block discarded – undo
1266 1266
 										//print $stock.' '.$quantityToBeDelivered;
1267 1267
 										if ($stock < $quantityToBeDelivered)
1268 1268
 										{
1269
-											print ' '.img_warning($langs->trans("StockTooLow"));	// Stock too low for this $warehouse_id but you can change warehouse
1269
+											print ' '.img_warning($langs->trans("StockTooLow")); // Stock too low for this $warehouse_id but you can change warehouse
1270 1270
 										}
1271 1271
 									}
1272 1272
 								}
@@ -1281,19 +1281,19 @@  discard block
 block discarded – undo
1281 1281
 						print "</tr>\n";
1282 1282
 
1283 1283
 						// Show subproducts of product
1284
-						if (! empty($conf->global->PRODUIT_SOUSPRODUITS) && $line->fk_product > 0)
1284
+						if (!empty($conf->global->PRODUIT_SOUSPRODUITS) && $line->fk_product > 0)
1285 1285
 						{
1286 1286
 							$product->get_sousproduits_arbo();
1287 1287
 							$prods_arbo = $product->get_arbo_each_prod($qtyProdCom);
1288
-							if(count($prods_arbo) > 0)
1288
+							if (count($prods_arbo) > 0)
1289 1289
 							{
1290
-								foreach($prods_arbo as $key => $value)
1290
+								foreach ($prods_arbo as $key => $value)
1291 1291
 								{
1292 1292
 									//print $value[0];
1293
-									$img='';
1293
+									$img = '';
1294 1294
 									if ($value['stock'] < $value['stock_alert'])
1295 1295
 									{
1296
-										$img=img_warning($langs->trans("StockTooLow"));
1296
+										$img = img_warning($langs->trans("StockTooLow"));
1297 1297
 									}
1298 1298
 									print "<tr class=\"oddeven\"><td>&nbsp; &nbsp; &nbsp; ->
1299 1299
 										<a href=\"".DOL_URL_ROOT."/product/card.php?id=".$value['id']."\">".$value['fullpath']."
@@ -1306,15 +1306,15 @@  discard block
 block discarded – undo
1306 1306
 					else
1307 1307
 					{
1308 1308
 					    // Product need lot
1309
-						print '<td></td><td></td></tr>';	// end line and start a new one for lot/serial
1309
+						print '<td></td><td></td></tr>'; // end line and start a new one for lot/serial
1310 1310
 						print '<!-- Case product need lot -->';
1311 1311
 
1312
-						$staticwarehouse=new Entrepot($db);
1312
+						$staticwarehouse = new Entrepot($db);
1313 1313
 						if ($warehouse_id > 0) $staticwarehouse->fetch($warehouse_id);
1314 1314
 
1315
-						$subj=0;
1315
+						$subj = 0;
1316 1316
 						// Define nb of lines suggested for this order line
1317
-						$nbofsuggested=0;
1317
+						$nbofsuggested = 0;
1318 1318
 						if (is_object($product->stock_warehouse[$warehouse_id]) && count($product->stock_warehouse[$warehouse_id]->detail_batch))
1319 1319
 						{
1320 1320
 							foreach ($product->stock_warehouse[$warehouse_id]->detail_batch as $dbatch)
@@ -1328,9 +1328,9 @@  discard block
 block discarded – undo
1328 1328
 							foreach ($product->stock_warehouse[$warehouse_id]->detail_batch as $dbatch)	// $dbatch is instance of Productbatch
1329 1329
 							{
1330 1330
 								//var_dump($dbatch);
1331
-								$batchStock = + $dbatch->qty;		// To get a numeric
1332
-								$deliverableQty = min($quantityToBeDelivered,$batchStock);
1333
-								print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested)?$bc[$var]:'').'>';
1331
+								$batchStock = + $dbatch->qty; // To get a numeric
1332
+								$deliverableQty = min($quantityToBeDelivered, $batchStock);
1333
+								print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested) ? $bc[$var] : '').'>';
1334 1334
 								print '<td colspan="3" ></td><td align="center">';
1335 1335
 								print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'_'.$subj.'" type="text" size="4" value="'.$deliverableQty.'">';
1336 1336
 								print '</td>';
@@ -1342,12 +1342,12 @@  discard block
 block discarded – undo
1342 1342
 
1343 1343
 								print '<input name="batchl'.$indiceAsked.'_'.$subj.'" type="hidden" value="'.$dbatch->id.'">';
1344 1344
 
1345
-								$detail='';
1346
-								$detail.= $langs->trans("Batch").': '.$dbatch->batch;
1347
-								$detail.= ' - '.$langs->trans("SellByDate").': '.dol_print_date($dbatch->sellby,"day");
1348
-								$detail.= ' - '.$langs->trans("EatByDate").': '.dol_print_date($dbatch->eatby,"day");
1349
-								$detail.= ' - '.$langs->trans("Qty").': '.$dbatch->qty;
1350
-								$detail.= '<br>';
1345
+								$detail = '';
1346
+								$detail .= $langs->trans("Batch").': '.$dbatch->batch;
1347
+								$detail .= ' - '.$langs->trans("SellByDate").': '.dol_print_date($dbatch->sellby, "day");
1348
+								$detail .= ' - '.$langs->trans("EatByDate").': '.dol_print_date($dbatch->eatby, "day");
1349
+								$detail .= ' - '.$langs->trans("Qty").': '.$dbatch->qty;
1350
+								$detail .= '<br>';
1351 1351
 								print $detail;
1352 1352
 
1353 1353
 								$quantityToBeDelivered -= $deliverableQty;
@@ -1375,15 +1375,15 @@  discard block
 block discarded – undo
1375 1375
 				else
1376 1376
 				{
1377 1377
 					// ship from multiple locations
1378
-					if (empty($conf->productbatch->enabled) || ! $product->hasbatch())
1378
+					if (empty($conf->productbatch->enabled) || !$product->hasbatch())
1379 1379
 					{
1380 1380
 					    print '<!-- Case warehouse not already known and product does not need lot -->';
1381
-					    print '<td></td><td></td></tr>'."\n";	// end line and start a new one for each warehouse
1381
+					    print '<td></td><td></td></tr>'."\n"; // end line and start a new one for each warehouse
1382 1382
 
1383 1383
 						print '<input name="idl'.$indiceAsked.'" type="hidden" value="'.$line->id.'">';
1384
-						$subj=0;
1384
+						$subj = 0;
1385 1385
     					// Define nb of lines suggested for this order line
1386
-						$nbofsuggested=0;
1386
+						$nbofsuggested = 0;
1387 1387
 						foreach ($product->stock_warehouse as $warehouse_id=>$stock_warehouse)
1388 1388
 						{
1389 1389
 							if ($stock_warehouse->real > 0)
@@ -1391,19 +1391,19 @@  discard block
 block discarded – undo
1391 1391
                                 $nbofsuggested++;
1392 1392
 						    }
1393 1393
 						}
1394
-						$tmpwarehouseObject=new Entrepot($db);
1394
+						$tmpwarehouseObject = new Entrepot($db);
1395 1395
 						foreach ($product->stock_warehouse as $warehouse_id=>$stock_warehouse)    // $stock_warehouse is product_stock
1396 1396
 						{
1397 1397
 							$tmpwarehouseObject->fetch($warehouse_id);
1398 1398
 							if ($stock_warehouse->real > 0)
1399 1399
 							{
1400 1400
 								$stock = + $stock_warehouse->real; // Convert it to number
1401
-								$deliverableQty = min($quantityToBeDelivered,$stock);
1401
+								$deliverableQty = min($quantityToBeDelivered, $stock);
1402 1402
 								$deliverableQty = max(0, $deliverableQty);
1403 1403
 								// Quantity to send
1404
-								print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested)?$bc[$var]:'').'>';
1404
+								print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested) ? $bc[$var] : '').'>';
1405 1405
 								print '<td colspan="3" ></td><td align="center"><!-- qty to ship (no lot management for product line indiceAsked='.$indiceAsked.') -->';
1406
-								if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
1406
+								if ($line->product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))
1407 1407
 								{
1408 1408
 									print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'" type="text" size="4" value="'.$deliverableQty.'">';
1409 1409
 									print '<input name="ent1'.$indiceAsked.'_'.$subj.'" type="hidden" value="'.$warehouse_id.'">';
@@ -1412,10 +1412,10 @@  discard block
 block discarded – undo
1412 1412
 								print '</td>';
1413 1413
 
1414 1414
 								// Stock
1415
-								if (! empty($conf->stock->enabled))
1415
+								if (!empty($conf->stock->enabled))
1416 1416
 								{
1417 1417
 									print '<td align="left">';
1418
-									if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
1418
+									if ($line->product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))
1419 1419
 									{
1420 1420
 										print $tmpwarehouseObject->getNomUrl(0).' ';
1421 1421
 
@@ -1438,19 +1438,19 @@  discard block
 block discarded – undo
1438 1438
 							}
1439 1439
 						}
1440 1440
 						// Show subproducts of product (not recommanded)
1441
-						if (! empty($conf->global->PRODUIT_SOUSPRODUITS) && $line->fk_product > 0)
1441
+						if (!empty($conf->global->PRODUIT_SOUSPRODUITS) && $line->fk_product > 0)
1442 1442
 						{
1443 1443
 							$product->get_sousproduits_arbo();
1444 1444
 							$prods_arbo = $product->get_arbo_each_prod($qtyProdCom);
1445 1445
 							if (count($prods_arbo) > 0)
1446 1446
 							{
1447
-								foreach($prods_arbo as $key => $value)
1447
+								foreach ($prods_arbo as $key => $value)
1448 1448
 								{
1449 1449
 									//print $value[0];
1450
-									$img='';
1450
+									$img = '';
1451 1451
 									if ($value['stock'] < $value['stock_alert'])
1452 1452
 									{
1453
-										$img=img_warning($langs->trans("StockTooLow"));
1453
+										$img = img_warning($langs->trans("StockTooLow"));
1454 1454
 									}
1455 1455
 									print '<tr class"oddeven"><td>';
1456 1456
 									print "&nbsp; &nbsp; &nbsp; ->
@@ -1465,15 +1465,15 @@  discard block
 block discarded – undo
1465 1465
 					else
1466 1466
 					{
1467 1467
 					    print '<!-- Case warehouse not already known and product need lot -->';
1468
-					    print '<td></td><td></td></tr>';	// end line and start a new one for lot/serial
1468
+					    print '<td></td><td></td></tr>'; // end line and start a new one for lot/serial
1469 1469
 
1470
-						$subj=0;
1470
+						$subj = 0;
1471 1471
 						print '<input name="idl'.$indiceAsked.'" type="hidden" value="'.$line->id.'">';
1472 1472
 
1473
-						$tmpwarehouseObject=new Entrepot($db);
1474
-						$productlotObject=new Productlot($db);
1473
+						$tmpwarehouseObject = new Entrepot($db);
1474
+						$productlotObject = new Productlot($db);
1475 1475
 						// Define nb of lines suggested for this order line
1476
-						$nbofsuggested=0;
1476
+						$nbofsuggested = 0;
1477 1477
 						foreach ($product->stock_warehouse as $warehouse_id=>$stock_warehouse)
1478 1478
 						{
1479 1479
 						    if (($stock_warehouse->real > 0) && (count($stock_warehouse->detail_batch))) {
@@ -1490,10 +1490,10 @@  discard block
 block discarded – undo
1490 1490
 						        foreach ($stock_warehouse->detail_batch as $dbatch)
1491 1491
 								{
1492 1492
 									//var_dump($dbatch);
1493
-									$batchStock = + $dbatch->qty;		// To get a numeric
1494
-									$deliverableQty = min($quantityToBeDelivered,$batchStock);
1493
+									$batchStock = + $dbatch->qty; // To get a numeric
1494
+									$deliverableQty = min($quantityToBeDelivered, $batchStock);
1495 1495
 									if ($deliverableQty < 0) $deliverableQty = 0;
1496
-									print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested)?$bc[$var]:'').'><td colspan="3"></td><td align="center">';
1496
+									print '<!-- subj='.$subj.'/'.$nbofsuggested.' --><tr '.((($subj + 1) == $nbofsuggested) ? $bc[$var] : '').'><td colspan="3"></td><td align="center">';
1497 1497
 									print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'_'.$subj.'" type="text" size="4" value="'.$deliverableQty.'">';
1498 1498
 									print '</td>';
1499 1499
 
@@ -1526,14 +1526,14 @@  discard block
 block discarded – undo
1526 1526
 					{
1527 1527
 					    print '<!-- line not shown yet, we show it -->';
1528 1528
 						print '<tr class="oddeven"><td colspan="3" ></td><td align="center">';
1529
-						if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
1529
+						if ($line->product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))
1530 1530
 						{
1531
-						    $disabled='';
1532
-					        if (! empty($conf->productbatch->enabled) && $product->hasbatch())
1531
+						    $disabled = '';
1532
+					        if (!empty($conf->productbatch->enabled) && $product->hasbatch())
1533 1533
 					        {
1534
-                                $disabled='disabled="disabled"';
1534
+                                $disabled = 'disabled="disabled"';
1535 1535
 						    }
1536
-    						print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'_'.$subj.'" type="text" size="4" value="0"'.($disabled?' '.$disabled:'').'> ';
1536
+    						print '<input name="qtyl'.$indiceAsked.'_'.$subj.'" id="qtyl'.$indiceAsked.'_'.$subj.'" type="text" size="4" value="0"'.($disabled ? ' '.$disabled : '').'> ';
1537 1537
 						}
1538 1538
 						else
1539 1539
 						{
@@ -1542,12 +1542,12 @@  discard block
 block discarded – undo
1542 1542
 						print '</td>';
1543 1543
 
1544 1544
 						print '<td align="left">';
1545
-						if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
1545
+						if ($line->product_type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES))
1546 1546
 						{
1547
-							$warehouse_selected_id = GETPOST('entrepot_id','int');
1547
+							$warehouse_selected_id = GETPOST('entrepot_id', 'int');
1548 1548
     						if ($warehouse_selected_id > 0)
1549 1549
     						{
1550
-    							$warehouseObject=new Entrepot($db);
1550
+    							$warehouseObject = new Entrepot($db);
1551 1551
     							$warehouseObject->fetch($warehouse_selected_id);
1552 1552
     							print img_warning().' '.$langs->trans("NoProductToShipFoundIntoStock", $warehouseObject->libelle);
1553 1553
     						}
@@ -1568,9 +1568,9 @@  discard block
 block discarded – undo
1568 1568
 
1569 1569
 
1570 1570
 				//Display lines extrafields
1571
-				if (is_array($extralabelslines) && count($extralabelslines)>0)
1571
+				if (is_array($extralabelslines) && count($extralabelslines) > 0)
1572 1572
 				{
1573
-					$colspan=5;
1573
+					$colspan = 5;
1574 1574
 					$orderLineExtrafields = new Extrafields($db);
1575 1575
 					$orderLineExtrafieldLabels = $orderLineExtrafields->fetch_name_optionals_label($object->table_element_line);
1576 1576
 					$srcLine = new OrderLine($db);
@@ -1579,7 +1579,7 @@  discard block
 block discarded – undo
1579 1579
 					//$line->fetch_optionals($line->id);
1580 1580
 					$line->array_options = array_merge($line->array_options, $srcLine->array_options);
1581 1581
 					print '<tr class="oddeven">';
1582
-					print $line->showOptionals($extrafieldsline, 'edit', array('style'=>$bc[$var], 'colspan'=>$colspan),$indiceAsked);
1582
+					print $line->showOptionals($extrafieldsline, 'edit', array('style'=>$bc[$var], 'colspan'=>$colspan), $indiceAsked);
1583 1583
 					print '</tr>';
1584 1584
 				}
1585 1585
 
@@ -1593,7 +1593,7 @@  discard block
 block discarded – undo
1593 1593
             print '<div class="center">';
1594 1594
             print '<input type="submit" class="button" name="add" value="'.dol_escape_htmltag($langs->trans("Create")).'">';
1595 1595
             print '&nbsp; ';
1596
-            print '<input type="'.($backtopage?"submit":"button").'" class="button" name="cancel" value="'.dol_escape_htmltag($langs->trans("Cancel")).'"'.($backtopage?'':' onclick="javascript:history.go(-1)"').'>';	// Cancel for create does not post form if we don't know the backtopage
1596
+            print '<input type="'.($backtopage ? "submit" : "button").'" class="button" name="cancel" value="'.dol_escape_htmltag($langs->trans("Cancel")).'"'.($backtopage ? '' : ' onclick="javascript:history.go(-1)"').'>'; // Cancel for create does not post form if we don't know the backtopage
1597 1597
             print '</div>';
1598 1598
 
1599 1599
             print '</form>';
@@ -1624,7 +1624,7 @@  discard block
 block discarded – undo
1624 1624
 			$typeobject = $object->origin;
1625 1625
 			$origin = $object->origin;
1626 1626
 			$origin_id = $object->origin_id;
1627
-			$object->fetch_origin();         // Load property $object->commande, $object->propal, ...
1627
+			$object->fetch_origin(); // Load property $object->commande, $object->propal, ...
1628 1628
 		}
1629 1629
 
1630 1630
 		$soc = new Societe($db);
@@ -1632,15 +1632,15 @@  discard block
 block discarded – undo
1632 1632
 
1633 1633
 		$res = $object->fetch_optionals();
1634 1634
 
1635
-		$head=shipping_prepare_head($object);
1635
+		$head = shipping_prepare_head($object);
1636 1636
 		dol_fiche_head($head, 'shipping', $langs->trans("Shipment"), -1, 'sending');
1637 1637
 
1638
-		$formconfirm='';
1638
+		$formconfirm = '';
1639 1639
 
1640 1640
 		// Confirm deleteion
1641 1641
 		if ($action == 'delete')
1642 1642
 		{
1643
-			$formconfirm=$form->formconfirm($_SERVER['PHP_SELF'].'?id='.$object->id,$langs->trans('DeleteSending'),$langs->trans("ConfirmDeleteSending",$object->ref),'confirm_delete','',0,1);
1643
+			$formconfirm = $form->formconfirm($_SERVER['PHP_SELF'].'?id='.$object->id, $langs->trans('DeleteSending'), $langs->trans("ConfirmDeleteSending", $object->ref), 'confirm_delete', '', 0, 1);
1644 1644
 		}
1645 1645
 
1646 1646
 		// Confirmation validation
@@ -1656,29 +1656,29 @@  discard block
 block discarded – undo
1656 1656
 				$numref = $object->ref;
1657 1657
 			}
1658 1658
 
1659
-			$text = $langs->trans("ConfirmValidateSending",$numref);
1659
+			$text = $langs->trans("ConfirmValidateSending", $numref);
1660 1660
 
1661
-			if (! empty($conf->notification->enabled))
1661
+			if (!empty($conf->notification->enabled))
1662 1662
 			{
1663
-				require_once DOL_DOCUMENT_ROOT .'/core/class/notify.class.php';
1664
-				$notify=new Notify($db);
1665
-				$text.='<br>';
1666
-				$text.=$notify->confirmMessage('SHIPPING_VALIDATE',$object->socid, $object);
1663
+				require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
1664
+				$notify = new Notify($db);
1665
+				$text .= '<br>';
1666
+				$text .= $notify->confirmMessage('SHIPPING_VALIDATE', $object->socid, $object);
1667 1667
 			}
1668 1668
 
1669
-			$formconfirm=$form->formconfirm($_SERVER['PHP_SELF'].'?id='.$object->id,$langs->trans('ValidateSending'),$text,'confirm_valid','',0,1);
1669
+			$formconfirm = $form->formconfirm($_SERVER['PHP_SELF'].'?id='.$object->id, $langs->trans('ValidateSending'), $text, 'confirm_valid', '', 0, 1);
1670 1670
 		}
1671 1671
 		// Confirm cancelation
1672 1672
 		if ($action == 'annuler')
1673 1673
 		{
1674
-			$formconfirm=$form->formconfirm($_SERVER['PHP_SELF'].'?id='.$object->id,$langs->trans('CancelSending'),$langs->trans("ConfirmCancelSending",$object->ref),'confirm_cancel','',0,1);
1674
+			$formconfirm = $form->formconfirm($_SERVER['PHP_SELF'].'?id='.$object->id, $langs->trans('CancelSending'), $langs->trans("ConfirmCancelSending", $object->ref), 'confirm_cancel', '', 0, 1);
1675 1675
 		}
1676 1676
 
1677 1677
 		// Call Hook formConfirm
1678 1678
 		$parameters = array();
1679 1679
 		$reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
1680
-		if (empty($reshook)) $formconfirm.=$hookmanager->resPrint;
1681
-		elseif ($reshook > 0) $formconfirm=$hookmanager->resPrint;
1680
+		if (empty($reshook)) $formconfirm .= $hookmanager->resPrint;
1681
+		elseif ($reshook > 0) $formconfirm = $hookmanager->resPrint;
1682 1682
 
1683 1683
 		// Print form confirm
1684 1684
 		print $formconfirm;
@@ -1686,57 +1686,57 @@  discard block
 block discarded – undo
1686 1686
 
1687 1687
 		// Calculate totalWeight and totalVolume for all products
1688 1688
 		// by adding weight and volume of each product line.
1689
-		$tmparray=$object->getTotalWeightVolume();
1690
-		$totalWeight=$tmparray['weight'];
1691
-		$totalVolume=$tmparray['volume'];
1689
+		$tmparray = $object->getTotalWeightVolume();
1690
+		$totalWeight = $tmparray['weight'];
1691
+		$totalVolume = $tmparray['volume'];
1692 1692
 
1693 1693
 
1694
-		if ($typeobject == 'commande' && $object->$typeobject->id && ! empty($conf->commande->enabled))
1694
+		if ($typeobject == 'commande' && $object->$typeobject->id && !empty($conf->commande->enabled))
1695 1695
 		{
1696
-		    $objectsrc=new Commande($db);
1696
+		    $objectsrc = new Commande($db);
1697 1697
 		    $objectsrc->fetch($object->$typeobject->id);
1698 1698
 		}
1699
-		if ($typeobject == 'propal' && $object->$typeobject->id && ! empty($conf->propal->enabled))
1699
+		if ($typeobject == 'propal' && $object->$typeobject->id && !empty($conf->propal->enabled))
1700 1700
 		{
1701
-		    $objectsrc=new Propal($db);
1701
+		    $objectsrc = new Propal($db);
1702 1702
 		    $objectsrc->fetch($object->$typeobject->id);
1703 1703
 		}
1704 1704
 
1705 1705
 		// Shipment card
1706
-		$linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php?restore_lastsearch_values=1' . (! empty($socid) ? '&socid=' . $socid : '') . '">'.$langs->trans("BackToList").'</a>';
1707
-		$morehtmlref='<div class="refidno">';
1706
+		$linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
1707
+		$morehtmlref = '<div class="refidno">';
1708 1708
 		// Ref customer shipment
1709
-		$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_customer', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', 0, 1);
1710
-		$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_customer', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', null, null, '', 1);
1709
+		$morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_customer', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', 0, 1);
1710
+		$morehtmlref .= $form->editfieldval("RefCustomer", 'ref_customer', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', null, null, '', 1);
1711 1711
 		// Thirdparty
1712
-        $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $object->thirdparty->getNomUrl(1);
1712
+        $morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
1713 1713
         // Project
1714
-        if (! empty($conf->projet->enabled)) {
1714
+        if (!empty($conf->projet->enabled)) {
1715 1715
             $langs->load("projects");
1716
-            $morehtmlref .= '<br>' . $langs->trans('Project') . ' ';
1716
+            $morehtmlref .= '<br>'.$langs->trans('Project').' ';
1717 1717
             if (0) {    // Do not change on shipment
1718 1718
                 if ($action != 'classify') {
1719
-                    $morehtmlref .= '<a href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
1719
+                    $morehtmlref .= '<a href="'.$_SERVER['PHP_SELF'].'?action=classify&amp;id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
1720 1720
                 }
1721 1721
                 if ($action == 'classify') {
1722 1722
                     // $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
1723
-                    $morehtmlref .= '<form method="post" action="' . $_SERVER['PHP_SELF'] . '?id=' . $object->id . '">';
1723
+                    $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
1724 1724
                     $morehtmlref .= '<input type="hidden" name="action" value="classin">';
1725
-                    $morehtmlref .= '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
1725
+                    $morehtmlref .= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
1726 1726
                     $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
1727
-                    $morehtmlref .= '<input type="submit" class="button" value="' . $langs->trans("Modify") . '">';
1727
+                    $morehtmlref .= '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
1728 1728
                     $morehtmlref .= '</form>';
1729 1729
                 } else {
1730
-                    $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
1730
+                    $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
1731 1731
                 }
1732 1732
             } else {
1733 1733
                 // We don't have project on shipment, so we will use the project or source object instead
1734 1734
                 // TODO Add project on shipment
1735 1735
                 $morehtmlref .= ' : ';
1736
-                if (! empty($objectsrc->fk_project)) {
1736
+                if (!empty($objectsrc->fk_project)) {
1737 1737
                     $proj = new Project($db);
1738 1738
                     $proj->fetch($objectsrc->fk_project);
1739
-                    $morehtmlref .= '<a href="' . DOL_URL_ROOT . '/projet/card.php?id=' . $objectsrc->fk_project . '" title="' . $langs->trans('ShowProject') . '">';
1739
+                    $morehtmlref .= '<a href="'.DOL_URL_ROOT.'/projet/card.php?id='.$objectsrc->fk_project.'" title="'.$langs->trans('ShowProject').'">';
1740 1740
                     $morehtmlref .= $proj->ref;
1741 1741
                     $morehtmlref .= '</a>';
1742 1742
                 } else {
@@ -1744,7 +1744,7 @@  discard block
 block discarded – undo
1744 1744
                 }
1745 1745
             }
1746 1746
         }
1747
-		$morehtmlref.='</div>';
1747
+		$morehtmlref .= '</div>';
1748 1748
 
1749 1749
 
1750 1750
     	dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
@@ -1757,28 +1757,28 @@  discard block
 block discarded – undo
1757 1757
         print '<table class="border" width="100%">';
1758 1758
 
1759 1759
 		// Linked documents
1760
-		if ($typeobject == 'commande' && $object->$typeobject->id && ! empty($conf->commande->enabled))
1760
+		if ($typeobject == 'commande' && $object->$typeobject->id && !empty($conf->commande->enabled))
1761 1761
 		{
1762 1762
 			print '<tr><td>';
1763 1763
 			print $langs->trans("RefOrder").'</td>';
1764 1764
 			print '<td colspan="3">';
1765
-			print $objectsrc->getNomUrl(1,'commande');
1765
+			print $objectsrc->getNomUrl(1, 'commande');
1766 1766
 			print "</td>\n";
1767 1767
 			print '</tr>';
1768 1768
 		}
1769
-		if ($typeobject == 'propal' && $object->$typeobject->id && ! empty($conf->propal->enabled))
1769
+		if ($typeobject == 'propal' && $object->$typeobject->id && !empty($conf->propal->enabled))
1770 1770
 		{
1771 1771
 			print '<tr><td>';
1772 1772
 			print $langs->trans("RefProposal").'</td>';
1773 1773
 			print '<td colspan="3">';
1774
-			print $objectsrc->getNomUrl(1,'expedition');
1774
+			print $objectsrc->getNomUrl(1, 'expedition');
1775 1775
 			print "</td>\n";
1776 1776
 			print '</tr>';
1777 1777
 		}
1778 1778
 
1779 1779
 		// Date creation
1780 1780
 		print '<tr><td class="titlefield">'.$langs->trans("DateCreation").'</td>';
1781
-		print '<td colspan="3">'.dol_print_date($object->date_creation,"dayhour")."</td>\n";
1781
+		print '<td colspan="3">'.dol_print_date($object->date_creation, "dayhour")."</td>\n";
1782 1782
 		print '</tr>';
1783 1783
 
1784 1784
 		// Delivery date planned
@@ -1787,7 +1787,7 @@  discard block
 block discarded – undo
1787 1787
 		print $langs->trans('DateDeliveryPlanned');
1788 1788
 		print '</td>';
1789 1789
 
1790
-		if ($action != 'editdate_livraison') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'),1).'</a></td>';
1790
+		if ($action != 'editdate_livraison') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'), 1).'</a></td>';
1791 1791
 		print '</tr></table>';
1792 1792
 		print '</td><td colspan="2">';
1793 1793
 		if ($action == 'editdate_livraison')
@@ -1795,30 +1795,30 @@  discard block
 block discarded – undo
1795 1795
 			print '<form name="setdate_livraison" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'" method="post">';
1796 1796
 			print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
1797 1797
 			print '<input type="hidden" name="action" value="setdate_livraison">';
1798
-			print $form->selectDate($object->date_delivery?$object->date_delivery:-1, 'liv_', 1, 1, '', "setdate_livraison", 1, 0);
1798
+			print $form->selectDate($object->date_delivery ? $object->date_delivery : -1, 'liv_', 1, 1, '', "setdate_livraison", 1, 0);
1799 1799
 			print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
1800 1800
 			print '</form>';
1801 1801
 		}
1802 1802
 		else
1803 1803
 		{
1804
-			print $object->date_delivery ? dol_print_date($object->date_delivery,'dayhour') : '&nbsp;';
1804
+			print $object->date_delivery ? dol_print_date($object->date_delivery, 'dayhour') : '&nbsp;';
1805 1805
 		}
1806 1806
 		print '</td>';
1807 1807
 		print '</tr>';
1808 1808
 
1809 1809
 		// Weight
1810 1810
 		print '<tr><td>';
1811
-		print $form->editfieldkey("Weight",'trueWeight',$object->trueWeight,$object,$user->rights->expedition->creer);
1811
+		print $form->editfieldkey("Weight", 'trueWeight', $object->trueWeight, $object, $user->rights->expedition->creer);
1812 1812
 		print '</td><td colspan="3">';
1813 1813
 
1814
-		if ($action=='edittrueWeight')
1814
+		if ($action == 'edittrueWeight')
1815 1815
 		{
1816 1816
 			print '<form name="settrueweight" action="'.$_SERVER["PHP_SELF"].'" method="post">';
1817 1817
 			print '<input name="action" value="settrueWeight" type="hidden">';
1818 1818
 			print '<input name="id" value="'.$object->id.'" type="hidden">';
1819 1819
 			print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
1820 1820
 			print '<input id="trueWeight" name="trueWeight" value="'.$object->trueWeight.'" type="text">';
1821
-			print $formproduct->select_measuring_units("weight_units","weight",$object->weight_units);
1821
+			print $formproduct->select_measuring_units("weight_units", "weight", $object->weight_units);
1822 1822
 			print ' <input class="button" name="modify" value="'.$langs->trans("Modify").'" type="submit">';
1823 1823
 			print ' <input class="button" name="cancel" value="'.$langs->trans("Cancel").'" type="submit">';
1824 1824
 			print '</form>';
@@ -1826,7 +1826,7 @@  discard block
 block discarded – undo
1826 1826
 		else
1827 1827
 		{
1828 1828
 			print $object->trueWeight;
1829
-			print ($object->trueWeight && $object->weight_units!='')?' '.measuring_units_string($object->weight_units,"weight"):'';
1829
+			print ($object->trueWeight && $object->weight_units != '') ? ' '.measuring_units_string($object->weight_units, "weight") : '';
1830 1830
 		}
1831 1831
 
1832 1832
         // Calculated
@@ -1834,28 +1834,28 @@  discard block
 block discarded – undo
1834 1834
 		{
1835 1835
 			if (!empty($object->trueWeight)) print ' ('.$langs->trans("SumOfProductWeights").': ';
1836 1836
 			//print $totalWeight.' '.measuring_units_string(0,"weight");
1837
-			print showDimensionInBestUnit($totalWeight, 0, "weight", $langs, isset($conf->global->MAIN_WEIGHT_DEFAULT_ROUND)?$conf->global->MAIN_WEIGHT_DEFAULT_ROUND:-1, isset($conf->global->MAIN_WEIGHT_DEFAULT_UNIT)?$conf->global->MAIN_WEIGHT_DEFAULT_UNIT:'no');
1837
+			print showDimensionInBestUnit($totalWeight, 0, "weight", $langs, isset($conf->global->MAIN_WEIGHT_DEFAULT_ROUND) ? $conf->global->MAIN_WEIGHT_DEFAULT_ROUND : -1, isset($conf->global->MAIN_WEIGHT_DEFAULT_UNIT) ? $conf->global->MAIN_WEIGHT_DEFAULT_UNIT : 'no');
1838 1838
 			//if (empty($object->trueWeight)) print ' ('.$langs->trans("Calculated").')';
1839 1839
 			if (!empty($object->trueWeight)) print ')';
1840 1840
 		}
1841 1841
 		print '</td></tr>';
1842 1842
 
1843 1843
 		// Width
1844
-		print '<tr><td>'.$form->editfieldkey("Width",'trueWidth',$object->trueWidth,$object,$user->rights->expedition->creer).'</td><td colspan="3">';
1845
-		print $form->editfieldval("Width",'trueWidth',$object->trueWidth,$object,$user->rights->expedition->creer);
1846
-		print ($object->trueWidth && $object->width_units!='')?' '.measuring_units_string($object->width_units,"size"):'';
1844
+		print '<tr><td>'.$form->editfieldkey("Width", 'trueWidth', $object->trueWidth, $object, $user->rights->expedition->creer).'</td><td colspan="3">';
1845
+		print $form->editfieldval("Width", 'trueWidth', $object->trueWidth, $object, $user->rights->expedition->creer);
1846
+		print ($object->trueWidth && $object->width_units != '') ? ' '.measuring_units_string($object->width_units, "size") : '';
1847 1847
 		print '</td></tr>';
1848 1848
 
1849 1849
 		// Height
1850
-		print '<tr><td>'.$form->editfieldkey("Height",'trueHeight',$object->trueHeight,$object,$user->rights->expedition->creer).'</td><td colspan="3">';
1851
-		if($action=='edittrueHeight')
1850
+		print '<tr><td>'.$form->editfieldkey("Height", 'trueHeight', $object->trueHeight, $object, $user->rights->expedition->creer).'</td><td colspan="3">';
1851
+		if ($action == 'edittrueHeight')
1852 1852
 		{
1853 1853
 			print '<form name="settrueHeight" action="'.$_SERVER["PHP_SELF"].'" method="post">';
1854 1854
 			print '<input name="action" value="settrueHeight" type="hidden">';
1855 1855
 			print '<input name="id" value="'.$object->id.'" type="hidden">';
1856 1856
 			print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
1857 1857
 			print '<input id="trueHeight" name="trueHeight" value="'.$object->trueHeight.'" type="text">';
1858
-			print $formproduct->select_measuring_units("size_units","size",$object->size_units);
1858
+			print $formproduct->select_measuring_units("size_units", "size", $object->size_units);
1859 1859
 			print ' <input class="button" name="modify" value="'.$langs->trans("Modify").'" type="submit">';
1860 1860
 			print ' <input class="button" name="cancel" value="'.$langs->trans("Cancel").'" type="submit">';
1861 1861
 			print '</form>';
@@ -1863,15 +1863,15 @@  discard block
 block discarded – undo
1863 1863
 		else
1864 1864
 		{
1865 1865
 			print $object->trueHeight;
1866
-			print ($object->trueHeight && $object->height_units!='')?' '.measuring_units_string($object->height_units,"size"):'';
1866
+			print ($object->trueHeight && $object->height_units != '') ? ' '.measuring_units_string($object->height_units, "size") : '';
1867 1867
 		}
1868 1868
 
1869 1869
 		print '</td></tr>';
1870 1870
 
1871 1871
 		// Depth
1872
-		print '<tr><td>'.$form->editfieldkey("Depth",'trueDepth',$object->trueDepth,$object,$user->rights->expedition->creer).'</td><td colspan="3">';
1873
-		print $form->editfieldval("Depth",'trueDepth',$object->trueDepth,$object,$user->rights->expedition->creer);
1874
-		print ($object->trueDepth && $object->depth_units!='')?' '.measuring_units_string($object->depth_units,"size"):'';
1872
+		print '<tr><td>'.$form->editfieldkey("Depth", 'trueDepth', $object->trueDepth, $object, $user->rights->expedition->creer).'</td><td colspan="3">';
1873
+		print $form->editfieldval("Depth", 'trueDepth', $object->trueDepth, $object, $user->rights->expedition->creer);
1874
+		print ($object->trueDepth && $object->depth_units != '') ? ' '.measuring_units_string($object->depth_units, "size") : '';
1875 1875
 		print '</td></tr>';
1876 1876
 
1877 1877
 		// Volume
@@ -1879,12 +1879,12 @@  discard block
 block discarded – undo
1879 1879
 		print $langs->trans("Volume");
1880 1880
 		print '</td>';
1881 1881
 		print '<td colspan="3">';
1882
-		$calculatedVolume=0;
1883
-		$volumeUnit=0;
1882
+		$calculatedVolume = 0;
1883
+		$volumeUnit = 0;
1884 1884
 		if ($object->trueWidth && $object->trueHeight && $object->trueDepth)
1885 1885
 		{
1886
-		    $calculatedVolume=($object->trueWidth * $object->trueHeight * $object->trueDepth);
1887
-		    $volumeUnit=$object->size_units * 3;
1886
+		    $calculatedVolume = ($object->trueWidth * $object->trueHeight * $object->trueDepth);
1887
+		    $volumeUnit = $object->size_units * 3;
1888 1888
 		}
1889 1889
 		// If sending volume not defined we use sum of products
1890 1890
 		if ($calculatedVolume > 0)
@@ -1892,15 +1892,15 @@  discard block
 block discarded – undo
1892 1892
 			if ($volumeUnit < 50)
1893 1893
 			{
1894 1894
 			    //print $calculatedVolume.' '.measuring_units_string($volumeUnit,"volume");
1895
-			    print showDimensionInBestUnit($calculatedVolume, $volumeUnit, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND)?$conf->global->MAIN_VOLUME_DEFAULT_ROUND:-1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT)?$conf->global->MAIN_VOLUME_DEFAULT_UNIT:'no');
1895
+			    print showDimensionInBestUnit($calculatedVolume, $volumeUnit, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND) ? $conf->global->MAIN_VOLUME_DEFAULT_ROUND : -1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT) ? $conf->global->MAIN_VOLUME_DEFAULT_UNIT : 'no');
1896 1896
 			}
1897
-			else print $calculatedVolume.' '.measuring_units_string($volumeUnit,"volume");
1897
+			else print $calculatedVolume.' '.measuring_units_string($volumeUnit, "volume");
1898 1898
 		}
1899 1899
 		if ($totalVolume > 0)
1900 1900
 		{
1901 1901
 			if ($calculatedVolume) print ' ('.$langs->trans("SumOfProductVolumes").': ';
1902 1902
 			//print $totalVolume.' '.measuring_units_string(0,"volume");
1903
-			print showDimensionInBestUnit($totalVolume, 0, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND)?$conf->global->MAIN_VOLUME_DEFAULT_ROUND:-1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT)?$conf->global->MAIN_VOLUME_DEFAULT_UNIT:'no');
1903
+			print showDimensionInBestUnit($totalVolume, 0, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND) ? $conf->global->MAIN_VOLUME_DEFAULT_ROUND : -1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT) ? $conf->global->MAIN_VOLUME_DEFAULT_UNIT : 'no');
1904 1904
 			//if (empty($calculatedVolume)) print ' ('.$langs->trans("Calculated").')';
1905 1905
 			if ($calculatedVolume) print ')';
1906 1906
 		}
@@ -1909,7 +1909,7 @@  discard block
 block discarded – undo
1909 1909
 
1910 1910
 		// Other attributes
1911 1911
 		$cols = 2;
1912
-		include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
1912
+		include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
1913 1913
 
1914 1914
 		print '</table>';
1915 1915
 
@@ -1926,7 +1926,7 @@  discard block
 block discarded – undo
1926 1926
 		print $langs->trans('SendingMethod');
1927 1927
 		print '</td>';
1928 1928
 
1929
-		if ($action != 'editshipping_method_id') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshipping_method_id&amp;id='.$object->id.'">'.img_edit($langs->trans('SetSendingMethod'),1).'</a></td>';
1929
+		if ($action != 'editshipping_method_id') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshipping_method_id&amp;id='.$object->id.'">'.img_edit($langs->trans('SetSendingMethod'), 1).'</a></td>';
1930 1930
 		print '</tr></table>';
1931 1931
 		print '</td><td colspan="2">';
1932 1932
 		if ($action == 'editshipping_method_id')
@@ -1935,8 +1935,8 @@  discard block
 block discarded – undo
1935 1935
 			print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
1936 1936
 			print '<input type="hidden" name="action" value="setshipping_method_id">';
1937 1937
 			$object->fetch_delivery_methods();
1938
-			print $form->selectarray("shipping_method_id",$object->meths,$object->shipping_method_id,1,0,0,"",1);
1939
-			if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
1938
+			print $form->selectarray("shipping_method_id", $object->meths, $object->shipping_method_id, 1, 0, 0, "", 1);
1939
+			if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1940 1940
 			print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
1941 1941
 			print '</form>';
1942 1942
 		}
@@ -1945,7 +1945,7 @@  discard block
 block discarded – undo
1945 1945
 			if ($object->shipping_method_id > 0)
1946 1946
 			{
1947 1947
 				// Get code using getLabelFromKey
1948
-				$code=$langs->getLabelFromKey($db,$object->shipping_method_id,'c_shipment_mode','rowid','code');
1948
+				$code = $langs->getLabelFromKey($db, $object->shipping_method_id, 'c_shipment_mode', 'rowid', 'code');
1949 1949
 				print $langs->trans("SendingMethod".strtoupper($code));
1950 1950
 			}
1951 1951
 		}
@@ -1953,8 +1953,8 @@  discard block
 block discarded – undo
1953 1953
 		print '</tr>';
1954 1954
 
1955 1955
 		// Tracking Number
1956
-		print '<tr><td class="titlefield">'.$form->editfieldkey("TrackingNumber",'tracking_number',$object->tracking_number,$object,$user->rights->expedition->creer).'</td><td colspan="3">';
1957
-		print $form->editfieldval("TrackingNumber",'tracking_number',$object->tracking_url,$object,$user->rights->expedition->creer,'string',$object->tracking_number);
1956
+		print '<tr><td class="titlefield">'.$form->editfieldkey("TrackingNumber", 'tracking_number', $object->tracking_number, $object, $user->rights->expedition->creer).'</td><td colspan="3">';
1957
+		print $form->editfieldval("TrackingNumber", 'tracking_number', $object->tracking_url, $object, $user->rights->expedition->creer, 'string', $object->tracking_number);
1958 1958
 		print '</td></tr>';
1959 1959
 
1960 1960
 		// Incoterms
@@ -1975,7 +1975,7 @@  discard block
 block discarded – undo
1975 1975
 			}
1976 1976
 			else
1977 1977
 			{
1978
-				print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms)?$object->location_incoterms:''), $_SERVER['PHP_SELF'].'?id='.$object->id);
1978
+				print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : ''), $_SERVER['PHP_SELF'].'?id='.$object->id);
1979 1979
 			}
1980 1980
 	        print '</td></tr>';
1981 1981
 		}
@@ -1993,11 +1993,11 @@  discard block
 block discarded – undo
1993 1993
 
1994 1994
 		if ($action == 'editline')
1995 1995
 		{
1996
-			print '	<form name="updateline" id="updateline" action="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&amp;lineid=' . $line_id . '" method="POST">
1997
-			<input type="hidden" name="token" value="' . $_SESSION ['newtoken'] . '">
1996
+			print '	<form name="updateline" id="updateline" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;lineid='.$line_id.'" method="POST">
1997
+			<input type="hidden" name="token" value="' . $_SESSION ['newtoken'].'">
1998 1998
 			<input type="hidden" name="action" value="updateline">
1999 1999
 			<input type="hidden" name="mode" value="">
2000
-			<input type="hidden" name="id" value="' . $object->id . '">
2000
+			<input type="hidden" name="id" value="' . $object->id.'">
2001 2001
 			';
2002 2002
 		}
2003 2003
 		print '<br>';
@@ -2006,7 +2006,7 @@  discard block
 block discarded – undo
2006 2006
 		print '<table class="noborder" width="100%">';
2007 2007
 		print '<tr class="liste_titre">';
2008 2008
 		// Adds a line numbering column
2009
-		if (! empty($conf->global->MAIN_VIEW_LINE_NUMBER))
2009
+		if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER))
2010 2010
 		{
2011 2011
 			print '<td width="5" align="center">&nbsp;</td>';
2012 2012
 		}
@@ -2023,7 +2023,7 @@  discard block
 block discarded – undo
2023 2023
 			$editColspan = 3;
2024 2024
 			if (empty($conf->stock->enabled)) $editColspan--;
2025 2025
 			if (empty($conf->productbatch->enabled)) $editColspan--;
2026
-			print '<td align="center" colspan="'. $editColspan . '">';
2026
+			print '<td align="center" colspan="'.$editColspan.'">';
2027 2027
 			if ($object->statut <= 1)
2028 2028
 			{
2029 2029
 				print $langs->trans("QtyToShip").' - ';
@@ -2032,11 +2032,11 @@  discard block
 block discarded – undo
2032 2032
 			{
2033 2033
 				print $langs->trans("QtyShipped").' - ';
2034 2034
 			}
2035
-			if (! empty($conf->stock->enabled))
2035
+			if (!empty($conf->stock->enabled))
2036 2036
 			{
2037 2037
 				print $langs->trans("WarehouseSource").' - ';
2038 2038
 			}
2039
-			if (! empty($conf->productbatch->enabled))
2039
+			if (!empty($conf->productbatch->enabled))
2040 2040
 			{
2041 2041
 				print $langs->trans("Batch");
2042 2042
 			}
@@ -2052,12 +2052,12 @@  discard block
 block discarded – undo
2052 2052
 			{
2053 2053
 				print '<td align="center">'.$langs->trans("QtyShipped").'</td>';
2054 2054
 			}
2055
-			if (! empty($conf->stock->enabled))
2055
+			if (!empty($conf->stock->enabled))
2056 2056
 			{
2057 2057
 				print '<td align="left">'.$langs->trans("WarehouseSource").'</td>';
2058 2058
 			}
2059 2059
 
2060
-			if (! empty($conf->productbatch->enabled))
2060
+			if (!empty($conf->productbatch->enabled))
2061 2061
 			{
2062 2062
 				print '<td align="left">'.$langs->trans("Batch").'</td>';
2063 2063
 			}
@@ -2072,18 +2072,18 @@  discard block
 block discarded – undo
2072 2072
 		}
2073 2073
 		print "</tr>\n";
2074 2074
 
2075
-		$var=false;
2075
+		$var = false;
2076 2076
 
2077
-		if (! empty($conf->global->MAIN_MULTILANGS) && ! empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE))
2077
+		if (!empty($conf->global->MAIN_MULTILANGS) && !empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE))
2078 2078
 		{
2079 2079
 			$object->fetch_thirdparty();
2080 2080
 			$outputlangs = $langs;
2081
-			$newlang='';
2082
-			if (empty($newlang) && GETPOST('lang_id','aZ09')) $newlang=GETPOST('lang_id','aZ09');
2083
-			if (empty($newlang)) $newlang=$object->thirdparty->default_lang;
2084
-			if (! empty($newlang))
2081
+			$newlang = '';
2082
+			if (empty($newlang) && GETPOST('lang_id', 'aZ09')) $newlang = GETPOST('lang_id', 'aZ09');
2083
+			if (empty($newlang)) $newlang = $object->thirdparty->default_lang;
2084
+			if (!empty($newlang))
2085 2085
 			{
2086
-				$outputlangs = new Translate("",$conf);
2086
+				$outputlangs = new Translate("", $conf);
2087 2087
 				$outputlangs->setDefaultLang($newlang);
2088 2088
 			}
2089 2089
 		}
@@ -2093,22 +2093,22 @@  discard block
 block discarded – undo
2093 2093
 		if ($origin && $origin_id > 0)
2094 2094
 		{
2095 2095
     		$sql = "SELECT obj.rowid, obj.fk_product, obj.label, obj.description, obj.product_type as fk_product_type, obj.qty as qty_asked, obj.date_start, obj.date_end";
2096
-    		$sql.= ", ed.rowid as shipmentline_id, ed.qty as qty_shipped, ed.fk_expedition as expedition_id, ed.fk_origin_line, ed.fk_entrepot";
2097
-    		$sql.= ", e.rowid as shipment_id, e.ref as shipment_ref, e.date_creation, e.date_valid, e.date_delivery, e.date_expedition";
2096
+    		$sql .= ", ed.rowid as shipmentline_id, ed.qty as qty_shipped, ed.fk_expedition as expedition_id, ed.fk_origin_line, ed.fk_entrepot";
2097
+    		$sql .= ", e.rowid as shipment_id, e.ref as shipment_ref, e.date_creation, e.date_valid, e.date_delivery, e.date_expedition";
2098 2098
     		//if ($conf->livraison_bon->enabled) $sql .= ", l.rowid as livraison_id, l.ref as livraison_ref, l.date_delivery, ld.qty as qty_received";
2099
-    		$sql.= ', p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid, p.tobatch as product_tobatch';
2100
-    		$sql.= ', p.description as product_desc';
2101
-    		$sql.= " FROM ".MAIN_DB_PREFIX."expeditiondet as ed";
2102
-    		$sql.= ", ".MAIN_DB_PREFIX."expedition as e";
2103
-    		$sql.= ", ".MAIN_DB_PREFIX.$origin."det as obj";
2099
+    		$sql .= ', p.label as product_label, p.ref, p.fk_product_type, p.rowid as prodid, p.tobatch as product_tobatch';
2100
+    		$sql .= ', p.description as product_desc';
2101
+    		$sql .= " FROM ".MAIN_DB_PREFIX."expeditiondet as ed";
2102
+    		$sql .= ", ".MAIN_DB_PREFIX."expedition as e";
2103
+    		$sql .= ", ".MAIN_DB_PREFIX.$origin."det as obj";
2104 2104
     		//if ($conf->livraison_bon->enabled) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."livraison as l ON l.fk_expedition = e.rowid LEFT JOIN ".MAIN_DB_PREFIX."livraisondet as ld ON ld.fk_livraison = l.rowid  AND obj.rowid = ld.fk_origin_line";
2105
-    		$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON obj.fk_product = p.rowid";
2106
-    		$sql.= " WHERE e.entity IN (".getEntity('expedition').")";
2107
-    		$sql.= " AND obj.fk_".$origin." = ".$origin_id;
2108
-    		$sql.= " AND obj.rowid = ed.fk_origin_line";
2109
-    		$sql.= " AND ed.fk_expedition = e.rowid";
2105
+    		$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON obj.fk_product = p.rowid";
2106
+    		$sql .= " WHERE e.entity IN (".getEntity('expedition').")";
2107
+    		$sql .= " AND obj.fk_".$origin." = ".$origin_id;
2108
+    		$sql .= " AND obj.rowid = ed.fk_origin_line";
2109
+    		$sql .= " AND ed.fk_expedition = e.rowid";
2110 2110
     		//if ($filter) $sql.= $filter;
2111
-    		$sql.= " ORDER BY obj.fk_product";
2111
+    		$sql .= " ORDER BY obj.fk_product";
2112 2112
 
2113 2113
     		dol_syslog("get list of shipment lines", LOG_DEBUG);
2114 2114
     		$resql = $db->query($sql);
@@ -2117,13 +2117,13 @@  discard block
 block discarded – undo
2117 2117
     		    $num = $db->num_rows($resql);
2118 2118
     		    $i = 0;
2119 2119
 
2120
-    		    while($i < $num)
2120
+    		    while ($i < $num)
2121 2121
     		    {
2122 2122
         		    $obj = $db->fetch_object($resql);
2123 2123
         		    if ($obj)
2124 2124
         		    {
2125 2125
         		        // $obj->rowid is rowid in $origin."det" table
2126
-        		        $alreadysent[$obj->rowid][$obj->shipmentline_id]=array('shipment_ref'=>$obj->shipment_ref, 'shipment_id'=>$obj->shipment_id, 'warehouse'=>$obj->fk_entrepot, 'qty_shipped'=>$obj->qty_shipped, 'date_valid'=>$obj->date_valid, 'date_delivery'=>$obj->date_delivery);
2126
+        		        $alreadysent[$obj->rowid][$obj->shipmentline_id] = array('shipment_ref'=>$obj->shipment_ref, 'shipment_id'=>$obj->shipment_id, 'warehouse'=>$obj->fk_entrepot, 'qty_shipped'=>$obj->qty_shipped, 'date_valid'=>$obj->date_valid, 'date_delivery'=>$obj->date_delivery);
2127 2127
         		    }
2128 2128
         		    $i++;
2129 2129
     		    }
@@ -2132,62 +2132,62 @@  discard block
 block discarded – undo
2132 2132
 		}
2133 2133
 
2134 2134
 		// Loop on each product to send/sent
2135
-		for ($i = 0 ; $i < $num_prod ; $i++)
2135
+		for ($i = 0; $i < $num_prod; $i++)
2136 2136
 		{
2137 2137
 		    print '<!-- origin line id = '.$lines[$i]->origin_line_id.' -->'; // id of order line
2138 2138
 			print '<tr class="oddeven">';
2139 2139
 
2140 2140
 			// Adds a line numbering column
2141
-			if (! empty($conf->global->MAIN_VIEW_LINE_NUMBER))
2141
+			if (!empty($conf->global->MAIN_VIEW_LINE_NUMBER))
2142 2142
 			{
2143
-				print '<td align="center">'.($i+1).'</td>';
2143
+				print '<td align="center">'.($i + 1).'</td>';
2144 2144
 			}
2145 2145
 
2146 2146
 			// Predefined product or service
2147 2147
 			if ($lines[$i]->fk_product > 0)
2148 2148
 			{
2149 2149
 				// Define output language
2150
-				if (! empty($conf->global->MAIN_MULTILANGS) && ! empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE))
2150
+				if (!empty($conf->global->MAIN_MULTILANGS) && !empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE))
2151 2151
 				{
2152 2152
 					$prod = new Product($db);
2153 2153
 					$prod->fetch($lines[$i]->fk_product);
2154
-					$label = ( ! empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $lines[$i]->product_label;
2154
+					$label = (!empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $lines[$i]->product_label;
2155 2155
 				}
2156 2156
 				else
2157
-					$label = (! empty($lines[$i]->label)?$lines[$i]->label:$lines[$i]->product_label);
2157
+					$label = (!empty($lines[$i]->label) ? $lines[$i]->label : $lines[$i]->product_label);
2158 2158
 
2159 2159
 				print '<td>';
2160 2160
 
2161 2161
 				// Show product and description
2162
-				$product_static->type=$lines[$i]->fk_product_type;
2163
-				$product_static->id=$lines[$i]->fk_product;
2164
-				$product_static->ref=$lines[$i]->ref;
2165
-				$product_static->status_batch=$lines[$i]->product_tobatch;
2166
-				$text=$product_static->getNomUrl(1);
2167
-				$text.= ' - '.$label;
2168
-				$description=(! empty($conf->global->PRODUIT_DESC_IN_FORM)?'':dol_htmlentitiesbr($lines[$i]->description));
2169
-				print $form->textwithtooltip($text,$description,3,'','',$i);
2170
-				print_date_range($lines[$i]->date_start,$lines[$i]->date_end);
2171
-				if (! empty($conf->global->PRODUIT_DESC_IN_FORM))
2162
+				$product_static->type = $lines[$i]->fk_product_type;
2163
+				$product_static->id = $lines[$i]->fk_product;
2164
+				$product_static->ref = $lines[$i]->ref;
2165
+				$product_static->status_batch = $lines[$i]->product_tobatch;
2166
+				$text = $product_static->getNomUrl(1);
2167
+				$text .= ' - '.$label;
2168
+				$description = (!empty($conf->global->PRODUIT_DESC_IN_FORM) ? '' : dol_htmlentitiesbr($lines[$i]->description));
2169
+				print $form->textwithtooltip($text, $description, 3, '', '', $i);
2170
+				print_date_range($lines[$i]->date_start, $lines[$i]->date_end);
2171
+				if (!empty($conf->global->PRODUIT_DESC_IN_FORM))
2172 2172
 				{
2173
-					print (! empty($lines[$i]->description) && $lines[$i]->description!=$lines[$i]->product)?'<br>'.dol_htmlentitiesbr($lines[$i]->description):'';
2173
+					print (!empty($lines[$i]->description) && $lines[$i]->description != $lines[$i]->product) ? '<br>'.dol_htmlentitiesbr($lines[$i]->description) : '';
2174 2174
 				}
2175 2175
 				print "</td>\n";
2176 2176
 			}
2177 2177
 			else
2178 2178
 			{
2179 2179
 				print "<td>";
2180
-				if ($lines[$i]->product_type == Product::TYPE_SERVICE) $text = img_object($langs->trans('Service'),'service');
2181
-				else $text = img_object($langs->trans('Product'),'product');
2180
+				if ($lines[$i]->product_type == Product::TYPE_SERVICE) $text = img_object($langs->trans('Service'), 'service');
2181
+				else $text = img_object($langs->trans('Product'), 'product');
2182 2182
 
2183
-				if (! empty($lines[$i]->label)) {
2184
-					$text.= ' <strong>'.$lines[$i]->label.'</strong>';
2185
-					print $form->textwithtooltip($text,$lines[$i]->description,3,'','',$i);
2183
+				if (!empty($lines[$i]->label)) {
2184
+					$text .= ' <strong>'.$lines[$i]->label.'</strong>';
2185
+					print $form->textwithtooltip($text, $lines[$i]->description, 3, '', '', $i);
2186 2186
 				} else {
2187 2187
 					print $text.' '.nl2br($lines[$i]->description);
2188 2188
 				}
2189 2189
 
2190
-				print_date_range($lines[$i]->date_start,$lines[$i]->date_end);
2190
+				print_date_range($lines[$i]->date_start, $lines[$i]->date_end);
2191 2191
 				print "</td>\n";
2192 2192
 			}
2193 2193
 
@@ -2203,7 +2203,7 @@  discard block
 block discarded – undo
2203 2203
     			    if ($lines[$i]->fk_origin_line == $key)
2204 2204
     			    {
2205 2205
     			        $j = 0;
2206
-    			        foreach($val as $shipmentline_id=> $shipmentline_var)
2206
+    			        foreach ($val as $shipmentline_id=> $shipmentline_var)
2207 2207
     			        {
2208 2208
     			            if ($shipmentline_var['shipment_id'] == $lines[$i]->fk_expedition) continue; // We want to show only "other shipments"
2209 2209
 
@@ -2212,8 +2212,8 @@  discard block
 block discarded – undo
2212 2212
     			            $shipment_static->fetch($shipmentline_var['shipment_id']);
2213 2213
     			            print $shipment_static->getNomUrl(1);
2214 2214
     			            print ' - '.$shipmentline_var['qty_shipped'];
2215
-    			            $htmltext=$langs->trans("DateValidation").' : '.(empty($shipmentline_var['date_valid'])?$langs->trans("Draft"):dol_print_date($shipmentline_var['date_valid'], 'dayhour'));
2216
-    			            if (! empty($conf->stock->enabled) && $shipmentline_var['warehouse'] > 0)
2215
+    			            $htmltext = $langs->trans("DateValidation").' : '.(empty($shipmentline_var['date_valid']) ? $langs->trans("Draft") : dol_print_date($shipmentline_var['date_valid'], 'dayhour'));
2216
+    			            if (!empty($conf->stock->enabled) && $shipmentline_var['warehouse'] > 0)
2217 2217
     			            {
2218 2218
     			                $warehousestatic->fetch($shipmentline_var['warehouse']);
2219 2219
     			                $htmltext .= '<br>'.$langs->trans("From").' : '.$warehousestatic->getNomUrl(1);
@@ -2237,25 +2237,25 @@  discard block
 block discarded – undo
2237 2237
 					{
2238 2238
 						print '<tr>';
2239 2239
 						// Qty to ship or shipped
2240
-						print '<td>' . '<input name="qtyl'.$detail_batch->fk_expeditiondet.'_'.$detail_batch->id.'" id="qtyl'.$line_id.'_'.$detail_batch->id.'" type="text" size="4" value="'.$detail_batch->qty.'">' . '</td>';
2240
+						print '<td>'.'<input name="qtyl'.$detail_batch->fk_expeditiondet.'_'.$detail_batch->id.'" id="qtyl'.$line_id.'_'.$detail_batch->id.'" type="text" size="4" value="'.$detail_batch->qty.'">'.'</td>';
2241 2241
 						// Batch number managment
2242 2242
 						if ($lines[$i]->entrepot_id == 0)
2243 2243
 						{
2244 2244
 							// only show lot numbers from src warehouse when shipping from multiple warehouses
2245 2245
 							$line->fetch($detail_batch->fk_expeditiondet);
2246 2246
 						}
2247
-						print '<td>' . $formproduct->selectLotStock($detail_batch->fk_origin_stock, 'batchl'.$detail_batch->fk_expeditiondet.'_'.$detail_batch->fk_origin_stock, '', 1, 0, $lines[$i]->fk_product, $line->entrepot_id). '</td>';
2247
+						print '<td>'.$formproduct->selectLotStock($detail_batch->fk_origin_stock, 'batchl'.$detail_batch->fk_expeditiondet.'_'.$detail_batch->fk_origin_stock, '', 1, 0, $lines[$i]->fk_product, $line->entrepot_id).'</td>';
2248 2248
 						print '</tr>';
2249 2249
 					}
2250 2250
 					// add a 0 qty lot row to be able to add a lot
2251 2251
 					print '<tr>';
2252 2252
 					// Qty to ship or shipped
2253
-					print '<td>' . '<input name="qtyl'.$line_id.'_0" id="qtyl'.$line_id.'_0" type="text" size="4" value="0">' . '</td>';
2253
+					print '<td>'.'<input name="qtyl'.$line_id.'_0" id="qtyl'.$line_id.'_0" type="text" size="4" value="0">'.'</td>';
2254 2254
 					// Batch number managment
2255
-					print '<td>' . $formproduct->selectLotStock('', 'batchl'.$line_id.'_0', '', 1, 0, $lines[$i]->fk_product). '</td>';
2255
+					print '<td>'.$formproduct->selectLotStock('', 'batchl'.$line_id.'_0', '', 1, 0, $lines[$i]->fk_product).'</td>';
2256 2256
 					print '</tr>';
2257 2257
 				}
2258
-				else if (! empty($conf->stock->enabled))
2258
+				else if (!empty($conf->stock->enabled))
2259 2259
 				{
2260 2260
 					if ($lines[$i]->fk_product > 0)
2261 2261
 					{
@@ -2264,11 +2264,11 @@  discard block
 block discarded – undo
2264 2264
 							print '<!-- case edit 2 -->';
2265 2265
 							print '<tr>';
2266 2266
 							// Qty to ship or shipped
2267
-							print '<td>' . '<input name="qtyl'.$line_id.'" id="qtyl'.$line_id.'" type="text" size="4" value="'.$lines[$i]->qty_shipped.'">' . '</td>';
2267
+							print '<td>'.'<input name="qtyl'.$line_id.'" id="qtyl'.$line_id.'" type="text" size="4" value="'.$lines[$i]->qty_shipped.'">'.'</td>';
2268 2268
 							// Warehouse source
2269
-							print '<td>' . $formproduct->selectWarehouses($lines[$i]->entrepot_id, 'entl'.$line_id, '', 1, 0, $lines[$i]->fk_product, '', 1). '</td>';
2269
+							print '<td>'.$formproduct->selectWarehouses($lines[$i]->entrepot_id, 'entl'.$line_id, '', 1, 0, $lines[$i]->fk_product, '', 1).'</td>';
2270 2270
 							// Batch number managment
2271
-							print '<td> - ' . $langs->trans("NA") . '</td>';
2271
+							print '<td> - '.$langs->trans("NA").'</td>';
2272 2272
 							print '</tr>';
2273 2273
 						}
2274 2274
 						else if (count($lines[$i]->details_entrepot) > 1)
@@ -2278,11 +2278,11 @@  discard block
 block discarded – undo
2278 2278
 							{
2279 2279
 								print '<tr>';
2280 2280
 								// Qty to ship or shipped
2281
-								print '<td>' . '<input name="qtyl'.$detail_entrepot->line_id.'" id="qtyl'.$detail_entrepot->line_id.'" type="text" size="4" value="'.$detail_entrepot->qty_shipped.'">' . '</td>';
2281
+								print '<td>'.'<input name="qtyl'.$detail_entrepot->line_id.'" id="qtyl'.$detail_entrepot->line_id.'" type="text" size="4" value="'.$detail_entrepot->qty_shipped.'">'.'</td>';
2282 2282
 								// Warehouse source
2283
-								print '<td>' . $formproduct->selectWarehouses($detail_entrepot->entrepot_id, 'entl'.$detail_entrepot->line_id, '', 1, 0, $lines[$i]->fk_product, '', 1) . '</td>';
2283
+								print '<td>'.$formproduct->selectWarehouses($detail_entrepot->entrepot_id, 'entl'.$detail_entrepot->line_id, '', 1, 0, $lines[$i]->fk_product, '', 1).'</td>';
2284 2284
 								// Batch number managment
2285
-								print '<td> - ' . $langs->trans("NA") . '</td>';
2285
+								print '<td> - '.$langs->trans("NA").'</td>';
2286 2286
 								print '</tr>';
2287 2287
 							}
2288 2288
 						}
@@ -2297,11 +2297,11 @@  discard block
 block discarded – undo
2297 2297
 						print '<!-- case edit 5 -->';
2298 2298
 						print '<tr>';
2299 2299
 						// Qty to ship or shipped
2300
-						print '<td>' . '<input name="qtyl'.$line_id.'" id="qtyl'.$line_id.'" type="text" size="4" value="'.$lines[$i]->qty_shipped.'">' . '</td>';
2300
+						print '<td>'.'<input name="qtyl'.$line_id.'" id="qtyl'.$line_id.'" type="text" size="4" value="'.$lines[$i]->qty_shipped.'">'.'</td>';
2301 2301
 						// Warehouse source
2302
-						print '<td>' . '</td>';
2302
+						print '<td>'.'</td>';
2303 2303
 						// Batch number managment
2304
-						print '<td>' . '</td>';
2304
+						print '<td>'.'</td>';
2305 2305
 						print '</tr>';
2306 2306
 					}
2307 2307
 				}
@@ -2313,7 +2313,7 @@  discard block
 block discarded – undo
2313 2313
 				print '<td align="center">'.$lines[$i]->qty_shipped.'</td>';
2314 2314
 
2315 2315
 				// Warehouse source
2316
-				if (! empty($conf->stock->enabled))
2316
+				if (!empty($conf->stock->enabled))
2317 2317
 				{
2318 2318
 					print '<td align="left">';
2319 2319
 					if ($lines[$i]->entrepot_id > 0)
@@ -2331,16 +2331,16 @@  discard block
 block discarded – undo
2331 2331
 							{
2332 2332
 								$entrepot = new Entrepot($db);
2333 2333
 								$entrepot->fetch($detail_entrepot->entrepot_id);
2334
-								$detail.= $langs->trans("DetailWarehouseFormat",$entrepot->libelle,$detail_entrepot->qty_shipped).'<br/>';
2334
+								$detail .= $langs->trans("DetailWarehouseFormat", $entrepot->libelle, $detail_entrepot->qty_shipped).'<br/>';
2335 2335
 							}
2336 2336
 						}
2337
-						print $form->textwithtooltip(img_picto('', 'object_stock').' '.$langs->trans("DetailWarehouseNumber"),$detail);
2337
+						print $form->textwithtooltip(img_picto('', 'object_stock').' '.$langs->trans("DetailWarehouseNumber"), $detail);
2338 2338
 					}
2339 2339
 					print '</td>';
2340 2340
 				}
2341 2341
 
2342 2342
 				// Batch number managment
2343
-				if (! empty($conf->productbatch->enabled))
2343
+				if (!empty($conf->productbatch->enabled))
2344 2344
 				{
2345 2345
 					if (isset($lines[$i]->detail_batch))
2346 2346
 					{
@@ -2351,13 +2351,13 @@  discard block
 block discarded – undo
2351 2351
 							$detail = '';
2352 2352
 							foreach ($lines[$i]->detail_batch as $dbatch)	// $dbatch is instance of ExpeditionLineBatch
2353 2353
 							{
2354
-								$detail.= $langs->trans("Batch").': '.$dbatch->batch;
2355
-								$detail.= ' - '.$langs->trans("SellByDate").': '.dol_print_date($dbatch->sellby,"day");
2356
-								$detail.= ' - '.$langs->trans("EatByDate").': '.dol_print_date($dbatch->eatby,"day");
2357
-								$detail.= ' - '.$langs->trans("Qty").': '.$dbatch->qty;
2358
-								$detail.= '<br>';
2354
+								$detail .= $langs->trans("Batch").': '.$dbatch->batch;
2355
+								$detail .= ' - '.$langs->trans("SellByDate").': '.dol_print_date($dbatch->sellby, "day");
2356
+								$detail .= ' - '.$langs->trans("EatByDate").': '.dol_print_date($dbatch->eatby, "day");
2357
+								$detail .= ' - '.$langs->trans("Qty").': '.$dbatch->qty;
2358
+								$detail .= '<br>';
2359 2359
 							}
2360
-							print $form->textwithtooltip(img_picto('', 'object_barcode').' '.$langs->trans("DetailBatchNumber"),$detail);
2360
+							print $form->textwithtooltip(img_picto('', 'object_barcode').' '.$langs->trans("DetailBatchNumber"), $detail);
2361 2361
 						}
2362 2362
 						else
2363 2363
 						{
@@ -2372,13 +2372,13 @@  discard block
 block discarded – undo
2372 2372
 
2373 2373
 			// Weight
2374 2374
 			print '<td align="center">';
2375
-			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) print $lines[$i]->weight*$lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->weight_units,"weight");
2375
+			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) print $lines[$i]->weight * $lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->weight_units, "weight");
2376 2376
 			else print '&nbsp;';
2377 2377
 			print '</td>';
2378 2378
 
2379 2379
 			// Volume
2380 2380
 			print '<td align="center">';
2381
-			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) print $lines[$i]->volume*$lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->volume_units,"volume");
2381
+			if ($lines[$i]->fk_product_type == Product::TYPE_PRODUCT) print $lines[$i]->volume * $lines[$i]->qty_shipped.' '.measuring_units_string($lines[$i]->volume_units, "volume");
2382 2382
 			else print '&nbsp;';
2383 2383
 			print '</td>';
2384 2384
 
@@ -2388,21 +2388,21 @@  discard block
 block discarded – undo
2388 2388
 			if ($action == 'editline' && $lines[$i]->id == $line_id)
2389 2389
 			{
2390 2390
 				print '<td align="center" colspan="2" valign="middle">';
2391
-				print '<input type="submit" class="button" id="savelinebutton" name="save" value="' . $langs->trans("Save") . '"><br>';
2392
-				print '<input type="submit" class="button" id="cancellinebutton" name="cancel" value="' . $langs->trans("Cancel") . '"><br>';
2391
+				print '<input type="submit" class="button" id="savelinebutton" name="save" value="'.$langs->trans("Save").'"><br>';
2392
+				print '<input type="submit" class="button" id="cancellinebutton" name="cancel" value="'.$langs->trans("Cancel").'"><br>';
2393 2393
 			}
2394 2394
 			else if ($object->statut == 0)
2395 2395
 			{
2396 2396
 				// edit-delete buttons
2397 2397
 				print '<td class="linecoledit" align="center">';
2398
-				print '<a href="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&amp;action=editline&amp;lineid=' . $lines[$i]->id . '">' . img_edit() . '</a>';
2398
+				print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=editline&amp;lineid='.$lines[$i]->id.'">'.img_edit().'</a>';
2399 2399
 				print '</td>';
2400 2400
 				print '<td class="linecoldelete" width="10">';
2401
-				print '<a href="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&amp;action=deleteline&amp;lineid=' . $lines[$i]->id . '">' . img_delete() . '</a>';
2401
+				print '<a href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=deleteline&amp;lineid='.$lines[$i]->id.'">'.img_delete().'</a>';
2402 2402
 				print '</td>';
2403 2403
 
2404 2404
 				// Display lines extrafields
2405
-				if (! empty($rowExtrafieldsStart))
2405
+				if (!empty($rowExtrafieldsStart))
2406 2406
 				{
2407 2407
 					print $rowExtrafieldsStart;
2408 2408
 					print $rowExtrafieldsView;
@@ -2412,18 +2412,18 @@  discard block
 block discarded – undo
2412 2412
 			print "</tr>";
2413 2413
 
2414 2414
 			// Display lines extrafields
2415
-			if (is_array($extralabelslines) && count($extralabelslines)>0) {
2416
-				$colspan= empty($conf->productbatch->enabled) ? 5 : 6;
2415
+			if (is_array($extralabelslines) && count($extralabelslines) > 0) {
2416
+				$colspan = empty($conf->productbatch->enabled) ? 5 : 6;
2417 2417
 				$line = new ExpeditionLigne($db);
2418 2418
 				$line->fetch_optionals($lines[$i]->id);
2419 2419
 				print '<tr class="oddeven">';
2420 2420
 				if ($action == 'editline' && $lines[$i]->id == $line_id)
2421 2421
 				{
2422
-					print $line->showOptionals($extrafieldsline, 'edit', array('style'=>$bc[$var], 'colspan'=>$colspan),$indiceAsked);
2422
+					print $line->showOptionals($extrafieldsline, 'edit', array('style'=>$bc[$var], 'colspan'=>$colspan), $indiceAsked);
2423 2423
 				}
2424 2424
 				else
2425 2425
 				{
2426
-					print $line->showOptionals($extrafieldsline, 'view', array('style'=>$bc[$var], 'colspan'=>$colspan),$indiceAsked);
2426
+					print $line->showOptionals($extrafieldsline, 'view', array('style'=>$bc[$var], 'colspan'=>$colspan), $indiceAsked);
2427 2427
 				}
2428 2428
 				print '</tr>';
2429 2429
 			}
@@ -2439,14 +2439,14 @@  discard block
 block discarded – undo
2439 2439
 	dol_fiche_end();
2440 2440
 
2441 2441
 
2442
-	$object->fetchObjectLinked($object->id,$object->element);
2442
+	$object->fetchObjectLinked($object->id, $object->element);
2443 2443
 
2444 2444
 
2445 2445
 	/*
2446 2446
 	 *    Boutons actions
2447 2447
 	 */
2448 2448
 
2449
-	if (($user->societe_id == 0) && ($action!='presend'))
2449
+	if (($user->societe_id == 0) && ($action != 'presend'))
2450 2450
 	{
2451 2451
 		print '<div class="tabsAction">';
2452 2452
 
@@ -2458,8 +2458,8 @@  discard block
 block discarded – undo
2458 2458
 
2459 2459
 			if ($object->statut == Expedition::STATUS_DRAFT && $num_prod > 0)
2460 2460
 			{
2461
-				if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->creer))
2462
-	  		     || (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->expedition->shipping_advance->validate)))
2461
+				if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->expedition->creer))
2462
+	  		     || (!empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->expedition->shipping_advance->validate)))
2463 2463
 				{
2464 2464
 					print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=valid">'.$langs->trans("Validate").'</a>';
2465 2465
 				}
@@ -2473,7 +2473,7 @@  discard block
 block discarded – undo
2473 2473
 			// 0=draft, 1=validated, 2=billed, we miss a status "delivered" (only available on order)
2474 2474
 			if ($object->statut == Expedition::STATUS_CLOSED && $user->rights->expedition->creer)
2475 2475
 			{
2476
-				if (! empty($conf->facture->enabled) && ! empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT))  // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2476
+				if (!empty($conf->facture->enabled) && !empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT))  // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2477 2477
 				{
2478 2478
 					print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action=reopen">'.$langs->trans("ClassifyUnbilled").'</a>';
2479 2479
 				}
@@ -2494,7 +2494,7 @@  discard block
 block discarded – undo
2494 2494
 			}
2495 2495
 
2496 2496
 			// Create bill
2497
-			if (! empty($conf->facture->enabled) && ($object->statut == Expedition::STATUS_VALIDATED || $object->statut == Expedition::STATUS_CLOSED))
2497
+			if (!empty($conf->facture->enabled) && ($object->statut == Expedition::STATUS_VALIDATED || $object->statut == Expedition::STATUS_CLOSED))
2498 2498
 			{
2499 2499
 				if ($user->rights->facture->creer)
2500 2500
 				{
@@ -2513,14 +2513,14 @@  discard block
 block discarded – undo
2513 2513
 			// Close
2514 2514
 			if ($object->statut == Expedition::STATUS_VALIDATED)
2515 2515
 			{
2516
-				if ($user->rights->expedition->creer && $object->statut > 0 && ! $object->billed)
2516
+				if ($user->rights->expedition->creer && $object->statut > 0 && !$object->billed)
2517 2517
 				{
2518
-					$label="Close"; $paramaction='classifyclosed';       // = Transferred/Received
2518
+					$label = "Close"; $paramaction = 'classifyclosed'; // = Transferred/Received
2519 2519
 					// Label here should be "Close" or "ClassifyBilled" if we decided to make bill on shipments instead of orders
2520
-					if (! empty($conf->facture->enabled) && ! empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT))  // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2520
+					if (!empty($conf->facture->enabled) && !empty($conf->global->WORKFLOW_BILL_ON_SHIPMENT))  // Quand l'option est on, il faut avoir le bouton en plus et non en remplacement du Close ?
2521 2521
 					{
2522
-					    $label="ClassifyBilled";
2523
-					    $paramaction='classifybilled';
2522
+					    $label = "ClassifyBilled";
2523
+					    $paramaction = 'classifybilled';
2524 2524
 					}
2525 2525
 					print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'&amp;action='.$paramaction.'">'.$langs->trans($label).'</a>';
2526 2526
 				}
@@ -2545,14 +2545,14 @@  discard block
 block discarded – undo
2545 2545
         print '<div class="fichecenter"><div class="fichehalfleft">';
2546 2546
 
2547 2547
         $objectref = dol_sanitizeFileName($object->ref);
2548
-		$filedir = $conf->expedition->dir_output . "/sending/" .$objectref;
2548
+		$filedir = $conf->expedition->dir_output."/sending/".$objectref;
2549 2549
 
2550 2550
 		$urlsource = $_SERVER["PHP_SELF"]."?id=".$object->id;
2551 2551
 
2552
-		$genallowed=$user->rights->expedition->lire;
2553
-		$delallowed=$user->rights->expedition->creer;
2552
+		$genallowed = $user->rights->expedition->lire;
2553
+		$delallowed = $user->rights->expedition->creer;
2554 2554
 
2555
-		print $formfile->showdocuments('expedition',$objectref,$filedir,$urlsource,$genallowed,$delallowed,$object->modelpdf,1,0,0,28,0,'','','',$soc->default_lang);
2555
+		print $formfile->showdocuments('expedition', $objectref, $filedir, $urlsource, $genallowed, $delallowed, $object->modelpdf, 1, 0, 0, 28, 0, '', '', '', $soc->default_lang);
2556 2556
 
2557 2557
 
2558 2558
 		// Show links to link elements
@@ -2564,8 +2564,8 @@  discard block
 block discarded – undo
2564 2564
 
2565 2565
 		// List of actions on element
2566 2566
 		include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
2567
-		$formactions=new FormActions($db);
2568
-		$somethingshown = $formactions->showactions($object,'shipping',$socid,1);
2567
+		$formactions = new FormActions($db);
2568
+		$somethingshown = $formactions->showactions($object, 'shipping', $socid, 1);
2569 2569
 
2570 2570
 		print '</div></div></div>';
2571 2571
 	}
@@ -2581,9 +2581,9 @@  discard block
 block discarded – undo
2581 2581
 	}
2582 2582
 
2583 2583
 	// Presend form
2584
-	$modelmail='shipping_send';
2585
-	$defaulttopic='SendShippingRef';
2586
-	$diroutput = $conf->expedition->dir_output. '/sending';
2584
+	$modelmail = 'shipping_send';
2585
+	$defaulttopic = 'SendShippingRef';
2586
+	$diroutput = $conf->expedition->dir_output.'/sending';
2587 2587
 	$trackid = 'shi'.$object->id;
2588 2588
 
2589 2589
 	include DOL_DOCUMENT_ROOT.'/core/tpl/card_presend.tpl.php';
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/tpl/linkedobjectblock.tpl.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  */
18 18
 
19 19
 // Protection to avoid direct call of template
20
-if (empty($conf) || ! is_object($conf))
20
+if (empty($conf) || !is_object($conf))
21 21
 {
22 22
 	print "Error, template page can't be called as URL";
23 23
 	exit;
@@ -37,19 +37,19 @@  discard block
 block discarded – undo
37 37
 // Load translation files required by the page
38 38
 $langs->load("sendings");
39 39
 
40
-$total=0; $ilink=0;
41
-foreach($linkedObjectBlock as $key => $objectlink)
40
+$total = 0; $ilink = 0;
41
+foreach ($linkedObjectBlock as $key => $objectlink)
42 42
 {
43 43
     $ilink++;
44 44
 
45
-    $trclass='oddeven';
46
-    if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) $trclass.=' liste_sub_total';
45
+    $trclass = 'oddeven';
46
+    if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) $trclass .= ' liste_sub_total';
47 47
 ?>
48 48
     <tr class="<?php echo $trclass; ?>">
49 49
         <td><?php echo $langs->trans("Shipment"); ?></td>
50 50
         <td><?php echo $objectlink->getNomUrl(1); ?></td>
51 51
         <td></td>
52
-    	<td align="center"><?php echo dol_print_date($objectlink->date_delivery,'day'); ?></td>
52
+    	<td align="center"><?php echo dol_print_date($objectlink->date_delivery, 'day'); ?></td>
53 53
     	<td align="right"><?php
54 54
     		if ($user->rights->expedition->lire) {
55 55
     			$total = $total + $objectlink->total_ht;
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     	<td align="right">
60 60
     		<?php
61 61
     		// For now, shipments must stay linked to order, so link is not deletable
62
-    		if($object->element != 'commande') {
62
+    		if ($object->element != 'commande') {
63 63
     			?>
64 64
     			<a href="<?php echo $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=dellink&dellinkid='.$key; ?>"><?php echo img_picto($langs->transnoentitiesnoconv("RemoveLink"), 'unlink'); ?></a></td>
65 65
     			<?php
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 if (count($linkedObjectBlock) > 1)
72 72
 {
73 73
     ?>
74
-    <tr class="liste_total <?php echo (empty($noMoreLinkedObjectBlockAfter)?'liste_sub_total':''); ?>">
74
+    <tr class="liste_total <?php echo (empty($noMoreLinkedObjectBlockAfter) ? 'liste_sub_total' : ''); ?>">
75 75
         <td><?php echo $langs->trans("Total"); ?></td>
76 76
         <td></td>
77 77
     	<td align="center"></td>
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,10 @@
 block discarded – undo
43 43
     $ilink++;
44 44
 
45 45
     $trclass='oddeven';
46
-    if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) $trclass.=' liste_sub_total';
47
-?>
46
+    if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
47
+        $trclass.=' liste_sub_total';
48
+    }
49
+    ?>
48 50
     <tr class="<?php echo $trclass; ?>">
49 51
         <td><?php echo $langs->trans("Shipment"); ?></td>
50 52
         <td><?php echo $objectlink->getNomUrl(1); ?></td>
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/shipment.php 2 patches
Braces   +105 added lines, -67 removed lines patch added patch discarded remove patch
@@ -37,9 +37,15 @@  discard block
 block discarded – undo
37 37
 	require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php';
38 38
 	require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php';
39 39
 }
40
-if (! empty($conf->stock->enabled))  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
41
-if (! empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
42
-if (! empty($conf->product->enabled) || ! empty($conf->service->enabled)) 	require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
40
+if (! empty($conf->stock->enabled)) {
41
+    require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
42
+}
43
+if (! empty($conf->propal->enabled)) {
44
+    require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
45
+}
46
+if (! empty($conf->product->enabled) || ! empty($conf->service->enabled)) {
47
+    require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
48
+}
43 49
 
44 50
 // Load translation files required by the page
45 51
 $langs->loadLangs(array('orders',"companies","bills",'propal','deliveries','stocks',"productbatch",'incoterm'));
@@ -50,7 +56,9 @@  discard block
 block discarded – undo
50 56
 
51 57
 // Security check
52 58
 $socid=0;
53
-if (! empty($user->societe_id)) $socid=$user->societe_id;
59
+if (! empty($user->societe_id)) {
60
+    $socid=$user->societe_id;
61
+}
54 62
 $result=restrictedArea($user,'commande',$id);
55 63
 
56 64
 $object = new Commande($db);
@@ -71,7 +79,9 @@  discard block
 block discarded – undo
71 79
 
72 80
 $parameters = array('socid' => $socid);
73 81
 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
74
-if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
82
+if ($reshook < 0) {
83
+    setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
84
+}
75 85
 
76 86
 if (empty($reshook))
77 87
 {
@@ -107,8 +117,9 @@  discard block
 block discarded – undo
107 117
     	$object = new Commande($db);
108 118
     	$object->fetch($id);
109 119
     	$result=$object->set_date_livraison($user,$datelivraison);
110
-    	if ($result < 0)
111
-    		setEventMessages($object->error, $object->errors, 'errors');
120
+    	if ($result < 0) {
121
+    	    		setEventMessages($object->error, $object->errors, 'errors');
122
+    	}
112 123
     }
113 124
     /*
114 125
     if ($action == 'setdeliveryaddress' && $user->rights->commande->creer)
@@ -125,24 +136,27 @@  discard block
 block discarded – undo
125 136
     	$object = new Commande($db);
126 137
     	$object->fetch($id);
127 138
     	$result = $object->setPaymentMethods(GETPOST('mode_reglement_id','int'));
128
-    	if ($result < 0)
129
-    		setEventMessages($object->error, $object->errors, 'errors');
139
+    	if ($result < 0) {
140
+    	    		setEventMessages($object->error, $object->errors, 'errors');
141
+    	}
130 142
     }
131 143
 
132 144
     if ($action == 'setavailability' && $user->rights->commande->creer) {
133 145
         $object = new Commande($db);
134 146
         $object->fetch($id);
135 147
         $result=$object->availability(GETPOST('availability_id'));
136
-        if ($result < 0)
137
-            setEventMessages($object->error, $object->errors, 'errors');
148
+        if ($result < 0) {
149
+                    setEventMessages($object->error, $object->errors, 'errors');
150
+        }
138 151
     }
139 152
 
140 153
     if ($action == 'setdemandreason' && $user->rights->commande->creer) {
141 154
         $object = new Commande($db);
142 155
         $object->fetch($id);
143 156
         $result=$object->demand_reason(GETPOST('demand_reason_id'));
144
-        if ($result < 0)
145
-            setEventMessages($object->error, $object->errors, 'errors');
157
+        if ($result < 0) {
158
+                    setEventMessages($object->error, $object->errors, 'errors');
159
+        }
146 160
     }
147 161
 
148 162
     if ($action == 'setconditions' && $user->rights->commande->creer)
@@ -150,8 +164,9 @@  discard block
 block discarded – undo
150 164
     	$object = new Commande($db);
151 165
     	$object->fetch($id);
152 166
     	$result=$object->setPaymentTerms(GETPOST('cond_reglement_id','int'));
153
-    	if ($result < 0)
154
-    		setEventMessages($object->error, $object->errors, 'errors');
167
+    	if ($result < 0) {
168
+    	    		setEventMessages($object->error, $object->errors, 'errors');
169
+    	}
155 170
     }
156 171
 
157 172
     // Set incoterm
@@ -168,8 +183,9 @@  discard block
 block discarded – undo
168 183
         $object = new Commande($db);
169 184
         $object->fetch($id);
170 185
         $result=$object->setShippingMethod(GETPOST('shipping_method_id', 'int'));
171
-    	if ($result < 0)
172
-    		setEventMessages($object->error, $object->errors, 'errors');
186
+    	if ($result < 0) {
187
+    	    		setEventMessages($object->error, $object->errors, 'errors');
188
+    	}
173 189
     }
174 190
 
175 191
     // warehouse
@@ -177,8 +193,9 @@  discard block
 block discarded – undo
177 193
         $object = new Commande($db);
178 194
         $object->fetch($id);
179 195
         $result = $object->setWarehouse(GETPOST('warehouse_id', 'int'));
180
-        if ($result < 0)
181
-            setEventMessages($object->error, $object->errors, 'errors');
196
+        if ($result < 0) {
197
+                    setEventMessages($object->error, $object->errors, 'errors');
198
+        }
182 199
     }
183 200
 
184 201
     if ($action == 'update_extras')
@@ -188,7 +205,9 @@  discard block
 block discarded – undo
188 205
     	// Fill array 'array_options' with data from update form
189 206
         $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
190 207
         $ret = $extrafields->setOptionalsFromPost($extralabels, $object, GETPOST('attribute', 'none'));
191
-        if ($ret < 0) $error++;
208
+        if ($ret < 0) {
209
+            $error++;
210
+        }
192 211
 
193 212
         if (! $error)
194 213
         {
@@ -201,8 +220,9 @@  discard block
 block discarded – undo
201 220
 			}
202 221
         }
203 222
 
204
-        if ($error)
205
-            $action = 'edit_extras';
223
+        if ($error) {
224
+                    $action = 'edit_extras';
225
+        }
206 226
     }
207 227
 
208 228
     if ($action == 'set_thirdparty' && $user->rights->commande->creer)
@@ -261,8 +281,11 @@  discard block
 block discarded – undo
261 281
 		// Call Hook formConfirm
262 282
 		$parameters = array();
263 283
 		$reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
264
-		if (empty($reshook)) $formconfirm.=$hookmanager->resPrint;
265
-		elseif ($reshook > 0) $formconfirm=$hookmanager->resPrint;
284
+		if (empty($reshook)) {
285
+		    $formconfirm.=$hookmanager->resPrint;
286
+		} elseif ($reshook > 0) {
287
+		    $formconfirm=$hookmanager->resPrint;
288
+		}
266 289
 
267 290
 		// Print form confirm
268 291
 		print $formconfirm;
@@ -286,8 +309,9 @@  discard block
 block discarded – undo
286 309
 	        $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
287 310
 	        if ($user->rights->commande->creer)
288 311
 	        {
289
-	            if ($action != 'classify')
290
-	                $morehtmlref.='<a href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
312
+	            if ($action != 'classify') {
313
+	            	                $morehtmlref.='<a href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
314
+	            }
291 315
 	                if ($action == 'classify') {
292 316
 	                    //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
293 317
 	                    $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
@@ -362,7 +386,9 @@  discard block
 block discarded – undo
362 386
 		print $langs->trans('DateDeliveryPlanned');
363 387
 		print '</td>';
364 388
 
365
-		if ($action != 'editdate_livraison') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'),1).'</a></td>';
389
+		if ($action != 'editdate_livraison') {
390
+		    print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'),1).'</a></td>';
391
+		}
366 392
 		print '</tr></table>';
367 393
 		print '</td><td colspan="2">';
368 394
 		if ($action == 'editdate_livraison')
@@ -373,8 +399,7 @@  discard block
 block discarded – undo
373 399
 			print $form->selectDate($object->date_livraison>0?$object->date_livraison:-1, 'liv_', '', '', '', "setdatedelivery");
374 400
 			print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
375 401
 			print '</form>';
376
-		}
377
-		else
402
+		} else
378 403
 		{
379 404
 			print dol_print_date($object->date_livraison,'daytext');
380 405
 			if ($object->hasDelay() && ! empty($object->date_livraison)) {
@@ -393,8 +418,9 @@  discard block
 block discarded – undo
393 418
         print '<table width="100%" class="nobordernopadding"><tr><td>';
394 419
         print $langs->trans('SendingMethod');
395 420
         print '</td>';
396
-        if ($action != 'editshippingmethod' && $user->rights->expedition->creer)
397
-            print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshippingmethod&amp;id='.$object->id.'">'.img_edit($langs->trans('SetShippingMode'),1).'</a></td>';
421
+        if ($action != 'editshippingmethod' && $user->rights->expedition->creer) {
422
+                    print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshippingmethod&amp;id='.$object->id.'">'.img_edit($langs->trans('SetShippingMode'),1).'</a></td>';
423
+        }
398 424
         print '</tr></table>';
399 425
         print '</td><td colspan="2">';
400 426
         if ($action == 'editshippingmethod') {
@@ -413,8 +439,9 @@  discard block
 block discarded – undo
413 439
             print '<table width="100%" class="nobordernopadding"><tr><td>';
414 440
             print $langs->trans('Warehouse');
415 441
             print '</td>';
416
-            if ($action != 'editwarehouse' && $user->rights->commande->creer)
417
-                print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editwarehouse&amp;id='.$object->id.'">'.img_edit($langs->trans('SetWarehouse'),1).'</a></td>';
442
+            if ($action != 'editwarehouse' && $user->rights->commande->creer) {
443
+                            print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editwarehouse&amp;id='.$object->id.'">'.img_edit($langs->trans('SetWarehouse'),1).'</a></td>';
444
+            }
418 445
             print '</tr></table>';
419 446
             print '</td><td colspan="2">';
420 447
             if ($action == 'editwarehouse') {
@@ -469,8 +496,9 @@  discard block
 block discarded – undo
469 496
 		print '<table class="nobordernopadding" width="100%"><tr><td>';
470 497
 		print $langs->trans('AvailabilityPeriod');
471 498
 		print '</td>';
472
-		if ($action != 'editavailability')
473
-			print '<td align="right"><a href="' . $_SERVER["PHP_SELF"] . '?action=editavailability&amp;id=' . $object->id . '">' . img_edit($langs->trans('SetAvailability'), 1) . '</a></td>';
499
+		if ($action != 'editavailability') {
500
+					print '<td align="right"><a href="' . $_SERVER["PHP_SELF"] . '?action=editavailability&amp;id=' . $object->id . '">' . img_edit($langs->trans('SetAvailability'), 1) . '</a></td>';
501
+		}
474 502
 		print '</tr></table>';
475 503
 		print '</td><td colspan="3">';
476 504
 		if ($action == 'editavailability') {
@@ -485,8 +513,9 @@  discard block
 block discarded – undo
485 513
 		print '<table class="nobordernopadding" width="100%"><tr><td>';
486 514
 		print $langs->trans('Source');
487 515
 		print '</td>';
488
-		if ($action != 'editdemandreason')
489
-			print '<td align="right"><a href="' . $_SERVER["PHP_SELF"] . '?action=editdemandreason&amp;id=' . $object->id . '">' . img_edit($langs->trans('SetDemandReason'), 1) . '</a></td>';
516
+		if ($action != 'editdemandreason') {
517
+					print '<td align="right"><a href="' . $_SERVER["PHP_SELF"] . '?action=editdemandreason&amp;id=' . $object->id . '">' . img_edit($langs->trans('SetDemandReason'), 1) . '</a></td>';
518
+		}
490 519
 		print '</tr></table>';
491 520
 		print '</td><td colspan="3">';
492 521
 		if ($action == 'editdemandreason') {
@@ -519,16 +548,18 @@  discard block
 block discarded – undo
519 548
 		    print '<table width="100%" class="nobordernopadding"><tr><td>';
520 549
 		    print $langs->trans('IncotermLabel');
521 550
 		    print '<td><td align="right">';
522
-		    if ($user->rights->commande->creer) print '<a href="'.$_SERVER['PHP_SELF'].'/expedition/shipment.php?id='.$object->id.'&action=editincoterm">'.img_edit().'</a>';
523
-		    else print '&nbsp;';
551
+		    if ($user->rights->commande->creer) {
552
+		        print '<a href="'.$_SERVER['PHP_SELF'].'/expedition/shipment.php?id='.$object->id.'&action=editincoterm">'.img_edit().'</a>';
553
+		    } else {
554
+		        print '&nbsp;';
555
+		    }
524 556
 		    print '</td></tr></table>';
525 557
 		    print '</td>';
526 558
 		    print '<td colspan="3">';
527 559
 		    if ($action != 'editincoterm')
528 560
 		    {
529 561
 		        print $form->textwithpicto($object->display_incoterms(), $object->libelle_incoterms, 1);
530
-		    }
531
-		    else
562
+		    } else
532 563
 		    {
533 564
 		        print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms)?$object->location_incoterms:''), $_SERVER['PHP_SELF'].'?id='.$object->id);
534 565
 		    }
@@ -576,14 +607,18 @@  discard block
 block discarded – undo
576 607
 		print '</tr>';
577 608
 
578 609
 		// Amount Local Taxes
579
-		if ($mysoc->localtax1_assuj == "1" || $object->total_localtax1 != 0) 		// Localtax1
610
+		if ($mysoc->localtax1_assuj == "1" || $object->total_localtax1 != 0) {
611
+		    // Localtax1
580 612
 		{
581 613
 		    print '<tr><td>' . $langs->transcountry("AmountLT1", $mysoc->country_code) . '</td>';
614
+		}
582 615
 		    print '<td>' . price($object->total_localtax1, 1, '', 1, - 1, - 1, $conf->currency) . '</td></tr>';
583 616
 		}
584
-		if ($mysoc->localtax2_assuj == "1" || $object->total_localtax2 != 0) 		// Localtax2 IRPF
617
+		if ($mysoc->localtax2_assuj == "1" || $object->total_localtax2 != 0) {
618
+		    // Localtax2 IRPF
585 619
 		{
586 620
 		    print '<tr><td>' . $langs->transcountry("AmountLT2", $mysoc->country_code) . '</td>';
621
+		}
587 622
 		    print '<td>' . price($object->total_localtax2, 1, '', 1, - 1, - 1, $conf->currency) . '</td></tr>';
588 623
 		}
589 624
 
@@ -634,8 +669,7 @@  discard block
 block discarded – undo
634 669
 			if (! empty($conf->stock->enabled))
635 670
 			{
636 671
 				print '<td align="center">'.$langs->trans("RealStock").'</td>';
637
-			}
638
-			else
672
+			} else
639 673
 			{
640 674
 				print '<td>&nbsp;</td>';
641 675
 			}
@@ -653,8 +687,12 @@  discard block
 block discarded – undo
653 687
 
654 688
 				// Try to enhance type detection using date_start and date_end for free lines where type
655 689
 				// was not saved.
656
-				if (! empty($objp->date_start)) $type=1;
657
-				if (! empty($objp->date_end)) $type=1;
690
+				if (! empty($objp->date_start)) {
691
+				    $type=1;
692
+				}
693
+				if (! empty($objp->date_end)) {
694
+				    $type=1;
695
+				}
658 696
 
659 697
 				print '<tr class="oddeven">';
660 698
 
@@ -673,8 +711,12 @@  discard block
 block discarded – undo
673 711
 
674 712
 						$outputlangs = $langs;
675 713
 						$newlang='';
676
-						if (empty($newlang) && ! empty($_REQUEST['lang_id'])) $newlang=$_REQUEST['lang_id'];
677
-						if (empty($newlang)) $newlang=$object->thirdparty->default_lang;
714
+						if (empty($newlang) && ! empty($_REQUEST['lang_id'])) {
715
+						    $newlang=$_REQUEST['lang_id'];
716
+						}
717
+						if (empty($newlang)) {
718
+						    $newlang=$object->thirdparty->default_lang;
719
+						}
678 720
 						if (! empty($newlang))
679 721
 						{
680 722
 							$outputlangs = new Translate("",$conf);
@@ -682,9 +724,9 @@  discard block
 block discarded – undo
682 724
 						}
683 725
 
684 726
 						$label = (! empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $objp->product_label;
727
+					} else {
728
+											$label = (! empty($objp->label)?$objp->label:$objp->product_label);
685 729
 					}
686
-					else
687
-						$label = (! empty($objp->label)?$objp->label:$objp->product_label);
688 730
 
689 731
 					print '<td>';
690 732
 					print '<a name="'.$objp->rowid.'"></a>'; // ancre pour retourner sur la ligne
@@ -710,12 +752,14 @@  discard block
 block discarded – undo
710 752
 					}
711 753
 
712 754
 					print '</td>';
713
-				}
714
-				else
755
+				} else
715 756
 				{
716 757
 					print "<td>";
717
-					if ($type==1) $text = img_object($langs->trans('Service'),'service');
718
-					else $text = img_object($langs->trans('Product'),'product');
758
+					if ($type==1) {
759
+					    $text = img_object($langs->trans('Service'),'service');
760
+					} else {
761
+					    $text = img_object($langs->trans('Product'),'product');
762
+					}
719 763
 
720 764
 					if (! empty($objp->label)) {
721 765
 						$text.= ' <strong>'.$objp->label.'</strong>';
@@ -747,8 +791,7 @@  discard block
 block discarded – undo
747 791
 					$toBeShipped[$objp->fk_product] = $objp->qty - $qtyAlreadyShipped;
748 792
 					$toBeShippedTotal += $toBeShipped[$objp->fk_product];
749 793
 					print $toBeShipped[$objp->fk_product];
750
-				}
751
-				else
794
+				} else
752 795
 				{
753 796
 					print '0 ('.$langs->trans("Service").')';
754 797
 				}
@@ -770,8 +813,7 @@  discard block
 block discarded – undo
770 813
 						print ' '.img_warning($langs->trans("StockTooLow"));
771 814
 					}
772 815
 					print '</td>';
773
-				}
774
-				else
816
+				} else
775 817
 				{
776 818
 					print '<td>&nbsp;</td>';
777 819
 				}
@@ -815,8 +857,7 @@  discard block
 block discarded – undo
815 857
 			}
816 858
 
817 859
 			print "</table>";
818
-		}
819
-		else
860
+		} else
820 861
 		{
821 862
 			dol_print_error($db);
822 863
 		}
@@ -842,8 +883,7 @@  discard block
 block discarded – undo
842 883
 					{
843 884
 						print ' '.img_warning($langs->trans("WarningNoQtyLeftToSend"));
844 885
 					}
845
-				}
846
-				else
886
+				} else
847 887
 				{
848 888
 					print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans("CreateShipment").'</a>';
849 889
 				}
@@ -906,8 +946,7 @@  discard block
 block discarded – undo
906 946
 				print '</div>';
907 947
 
908 948
 				$somethingshown=1;
909
-			}
910
-			else
949
+			} else
911 950
 			{
912 951
 				print '<div class="tabsAction">';
913 952
 				print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans("CreateShipment").'</a>';
@@ -916,8 +955,7 @@  discard block
 block discarded – undo
916 955
 		}
917 956
 
918 957
 		show_list_sending_receive('commande',$object->id);
919
-	}
920
-	else
958
+	} else
921 959
 	{
922 960
 		/* Order not found */
923 961
 		setEventMessages($langs->trans("NonExistentOrder"), null, 'errors');
Please login to merge, or discard this patch.
Spacing   +150 added lines, -150 removed lines patch added patch discarded remove patch
@@ -28,32 +28,32 @@  discard block
 block discarded – undo
28 28
 
29 29
 // Copyright (C) 2018 Alxarafe/Alixar  <[email protected]>
30 30
 defined('BASE_PATH') or die('Single entry point through the index.php of the main folder');
31
-require DOL_BASE_PATH . '/main.inc.php';
32
-require_once DOL_DOCUMENT_ROOT . '/core/class/html.formfile.class.php';
31
+require DOL_BASE_PATH.'/main.inc.php';
32
+require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
33 33
 require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
34 34
 require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
35 35
 require_once DOL_DOCUMENT_ROOT.'/core/lib/order.lib.php';
36 36
 require_once DOL_DOCUMENT_ROOT.'/core/lib/sendings.lib.php';
37 37
 require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php';
38
-if (! empty($conf->projet->enabled)) {
39
-	require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php';
40
-	require_once DOL_DOCUMENT_ROOT . '/core/class/html.formprojet.class.php';
38
+if (!empty($conf->projet->enabled)) {
39
+	require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
40
+	require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
41 41
 }
42
-if (! empty($conf->stock->enabled))  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
43
-if (! empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
44
-if (! empty($conf->product->enabled) || ! empty($conf->service->enabled)) 	require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
42
+if (!empty($conf->stock->enabled))  require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
43
+if (!empty($conf->propal->enabled)) require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php';
44
+if (!empty($conf->product->enabled) || !empty($conf->service->enabled)) 	require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
45 45
 
46 46
 // Load translation files required by the page
47
-$langs->loadLangs(array('orders',"companies","bills",'propal','deliveries','stocks',"productbatch",'incoterm'));
47
+$langs->loadLangs(array('orders', "companies", "bills", 'propal', 'deliveries', 'stocks', "productbatch", 'incoterm'));
48 48
 
49
-$id=GETPOST('id','int');			// id of order
50
-$ref= GETPOST('ref','alpha');
51
-$action=GETPOST('action','alpha');
49
+$id = GETPOST('id', 'int'); // id of order
50
+$ref = GETPOST('ref', 'alpha');
51
+$action = GETPOST('action', 'alpha');
52 52
 
53 53
 // Security check
54
-$socid=0;
55
-if (! empty($user->societe_id)) $socid=$user->societe_id;
56
-$result=restrictedArea($user,'commande',$id);
54
+$socid = 0;
55
+if (!empty($user->societe_id)) $socid = $user->societe_id;
56
+$result = restrictedArea($user, 'commande', $id);
57 57
 
58 58
 $object = new Commande($db);
59 59
 $extrafields = new ExtraFields($db);
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 $extralabels = $extrafields->fetch_name_optionals_label($object->table_element);
63 63
 
64 64
 // Load object
65
-include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php';  // Must be include, not include_once
65
+include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once
66 66
 
67 67
 
68 68
 
@@ -82,10 +82,10 @@  discard block
 block discarded – undo
82 82
     {
83 83
     	$object = new Commande($db);
84 84
     	$object->fetch($id);
85
-    	$object->setProject(GETPOST('projectid','int'));
85
+    	$object->setProject(GETPOST('projectid', 'int'));
86 86
     }
87 87
 
88
-    if ($action == 'confirm_cloture' && GETPOST('confirm','alpha') == 'yes')
88
+    if ($action == 'confirm_cloture' && GETPOST('confirm', 'alpha') == 'yes')
89 89
     {
90 90
     	$object = new Commande($db);
91 91
     	$object->fetch($id);
@@ -104,11 +104,11 @@  discard block
 block discarded – undo
104 104
     if ($action == 'setdatedelivery' && $user->rights->commande->creer)
105 105
     {
106 106
     	//print "x ".$_POST['liv_month'].", ".$_POST['liv_day'].", ".$_POST['liv_year'];
107
-    	$datelivraison=dol_mktime(0, 0, 0, GETPOST('liv_month','int'), GETPOST('liv_day','int'),GETPOST('liv_year','int'));
107
+    	$datelivraison = dol_mktime(0, 0, 0, GETPOST('liv_month', 'int'), GETPOST('liv_day', 'int'), GETPOST('liv_year', 'int'));
108 108
 
109 109
     	$object = new Commande($db);
110 110
     	$object->fetch($id);
111
-    	$result=$object->set_date_livraison($user,$datelivraison);
111
+    	$result = $object->set_date_livraison($user, $datelivraison);
112 112
     	if ($result < 0)
113 113
     		setEventMessages($object->error, $object->errors, 'errors');
114 114
     }
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     {
127 127
     	$object = new Commande($db);
128 128
     	$object->fetch($id);
129
-    	$result = $object->setPaymentMethods(GETPOST('mode_reglement_id','int'));
129
+    	$result = $object->setPaymentMethods(GETPOST('mode_reglement_id', 'int'));
130 130
     	if ($result < 0)
131 131
     		setEventMessages($object->error, $object->errors, 'errors');
132 132
     }
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     if ($action == 'setavailability' && $user->rights->commande->creer) {
135 135
         $object = new Commande($db);
136 136
         $object->fetch($id);
137
-        $result=$object->availability(GETPOST('availability_id'));
137
+        $result = $object->availability(GETPOST('availability_id'));
138 138
         if ($result < 0)
139 139
             setEventMessages($object->error, $object->errors, 'errors');
140 140
     }
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     if ($action == 'setdemandreason' && $user->rights->commande->creer) {
143 143
         $object = new Commande($db);
144 144
         $object->fetch($id);
145
-        $result=$object->demand_reason(GETPOST('demand_reason_id'));
145
+        $result = $object->demand_reason(GETPOST('demand_reason_id'));
146 146
         if ($result < 0)
147 147
             setEventMessages($object->error, $object->errors, 'errors');
148 148
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     {
152 152
     	$object = new Commande($db);
153 153
     	$object->fetch($id);
154
-    	$result=$object->setPaymentTerms(GETPOST('cond_reglement_id','int'));
154
+    	$result = $object->setPaymentTerms(GETPOST('cond_reglement_id', 'int'));
155 155
     	if ($result < 0)
156 156
     		setEventMessages($object->error, $object->errors, 'errors');
157 157
     }
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     if ($action == 'setshippingmethod' && $user->rights->commande->creer) {
170 170
         $object = new Commande($db);
171 171
         $object->fetch($id);
172
-        $result=$object->setShippingMethod(GETPOST('shipping_method_id', 'int'));
172
+        $result = $object->setShippingMethod(GETPOST('shipping_method_id', 'int'));
173 173
     	if ($result < 0)
174 174
     		setEventMessages($object->error, $object->errors, 'errors');
175 175
     }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         $ret = $extrafields->setOptionalsFromPost($extralabels, $object, GETPOST('attribute', 'none'));
193 193
         if ($ret < 0) $error++;
194 194
 
195
-        if (! $error)
195
+        if (!$error)
196 196
         {
197 197
             // Actions on extra fields
198 198
             $result = $object->insertExtraFields('SHIPMENT_MODIFY');
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         $object->fetch($id);
213 213
         $object->setValueFrom('fk_soc', $socid, '', '', 'date', '', $user, 'ORDER_MODIFY');
214 214
 
215
-        header('Location: ' . $_SERVER["PHP_SELF"] . '?id=' . $id);
215
+        header('Location: '.$_SERVER["PHP_SELF"].'?id='.$id);
216 216
         exit();
217 217
     }
218 218
 
@@ -226,19 +226,19 @@  discard block
 block discarded – undo
226 226
 $form = new Form($db);
227 227
 $formfile = new FormFile($db);
228 228
 $formproduct = new FormProduct($db);
229
-if (! empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
229
+if (!empty($conf->projet->enabled)) { $formproject = new FormProjets($db); }
230 230
 
231
-llxHeader('',$langs->trans('OrderCard'),'');
231
+llxHeader('', $langs->trans('OrderCard'), '');
232 232
 
233 233
 
234
-if ($id > 0 || ! empty($ref))
234
+if ($id > 0 || !empty($ref))
235 235
 {
236 236
 	$object = new Commande($db);
237
-	if ( $object->fetch($id,$ref) > 0)
237
+	if ($object->fetch($id, $ref) > 0)
238 238
 	{
239 239
 		$object->loadExpeditions(1);
240 240
 
241
-		$product_static=new Product($db);
241
+		$product_static = new Product($db);
242 242
 
243 243
 		$soc = new Societe($db);
244 244
 		$soc->fetch($object->socid);
@@ -257,14 +257,14 @@  discard block
 block discarded – undo
257 257
 		// Confirm validation
258 258
 		if ($action == 'cloture')
259 259
 		{
260
-			$formconfirm = $form->formconfirm($_SERVER['PHP_SELF']."?id=".$id,$langs->trans("CloseShipment"),$langs->trans("ConfirmCloseShipment"),"confirm_cloture");
260
+			$formconfirm = $form->formconfirm($_SERVER['PHP_SELF']."?id=".$id, $langs->trans("CloseShipment"), $langs->trans("ConfirmCloseShipment"), "confirm_cloture");
261 261
 		}
262 262
 
263 263
 		// Call Hook formConfirm
264 264
 		$parameters = array();
265 265
 		$reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
266
-		if (empty($reshook)) $formconfirm.=$hookmanager->resPrint;
267
-		elseif ($reshook > 0) $formconfirm=$hookmanager->resPrint;
266
+		if (empty($reshook)) $formconfirm .= $hookmanager->resPrint;
267
+		elseif ($reshook > 0) $formconfirm = $hookmanager->resPrint;
268 268
 
269 269
 		// Print form confirm
270 270
 		print $formconfirm;
@@ -272,48 +272,48 @@  discard block
 block discarded – undo
272 272
 
273 273
 		// Order card
274 274
 
275
-		$linkback = '<a href="' . DOL_URL_ROOT . '/commande/list.php?restore_lastsearch_values=1' . (! empty($socid) ? '?socid=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>';
275
+		$linkback = '<a href="'.DOL_URL_ROOT.'/commande/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '?socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
276 276
 
277 277
 
278
-		$morehtmlref='<div class="refidno">';
278
+		$morehtmlref = '<div class="refidno">';
279 279
 		// Ref customer
280
-		$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, $user->rights->commande->creer, 'string', '', 0, 1);
281
-		$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, $user->rights->commande->creer, 'string', '', null, null, '', 1);
280
+		$morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, $user->rights->commande->creer, 'string', '', 0, 1);
281
+		$morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, $user->rights->commande->creer, 'string', '', null, null, '', 1);
282 282
 	    // Thirdparty
283
-	    $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $soc->getNomUrl(1);
283
+	    $morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$soc->getNomUrl(1);
284 284
 	    // Project
285
-	    if (! empty($conf->projet->enabled))
285
+	    if (!empty($conf->projet->enabled))
286 286
 	    {
287 287
 	        $langs->load("projects");
288
-	        $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
288
+	        $morehtmlref .= '<br>'.$langs->trans('Project').' ';
289 289
 	        if ($user->rights->commande->creer)
290 290
 	        {
291 291
 	            if ($action != 'classify')
292
-	                $morehtmlref.='<a href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
292
+	                $morehtmlref .= '<a href="'.$_SERVER['PHP_SELF'].'?action=classify&amp;id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
293 293
 	                if ($action == 'classify') {
294 294
 	                    //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
295
-	                    $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
296
-	                    $morehtmlref.='<input type="hidden" name="action" value="classin">';
297
-	                    $morehtmlref.='<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
298
-	                    $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
299
-	                    $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
300
-	                    $morehtmlref.='</form>';
295
+	                    $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
296
+	                    $morehtmlref .= '<input type="hidden" name="action" value="classin">';
297
+	                    $morehtmlref .= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
298
+	                    $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
299
+	                    $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
300
+	                    $morehtmlref .= '</form>';
301 301
 	                } else {
302
-	                    $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
302
+	                    $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
303 303
 	                }
304 304
 	        } else {
305
-	            if (! empty($object->fk_project)) {
305
+	            if (!empty($object->fk_project)) {
306 306
 	                $proj = new Project($db);
307 307
 	                $proj->fetch($object->fk_project);
308
-	                $morehtmlref.='<a href="'.DOL_URL_ROOT.'/projet/card.php?id=' . $object->fk_project . '" title="' . $langs->trans('ShowProject') . '">';
309
-	                $morehtmlref.=$proj->ref;
310
-	                $morehtmlref.='</a>';
308
+	                $morehtmlref .= '<a href="'.DOL_URL_ROOT.'/projet/card.php?id='.$object->fk_project.'" title="'.$langs->trans('ShowProject').'">';
309
+	                $morehtmlref .= $proj->ref;
310
+	                $morehtmlref .= '</a>';
311 311
 	            } else {
312
-	                $morehtmlref.='';
312
+	                $morehtmlref .= '';
313 313
 	            }
314 314
 	        }
315 315
 	    }
316
-	    $morehtmlref.='</div>';
316
+	    $morehtmlref .= '</div>';
317 317
 
318 318
 
319 319
 	    dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 	    print '<table class="border" width="100%">';
327 327
 
328 328
 		// Discounts for third party
329
-	    if (! empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) {
329
+	    if (!empty($conf->global->FACTURE_DEPOSITS_ARE_JUST_PAYMENTS)) {
330 330
 	    	$filterabsolutediscount = "fk_facture_source IS NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
331 331
 	    	$filtercreditnote = "fk_facture_source IS NOT NULL"; // If we want deposit to be substracted to payments only and not to total of final invoice
332 332
 	    } else {
@@ -336,14 +336,14 @@  discard block
 block discarded – undo
336 336
 
337 337
 		print '<tr><td class="titlefield">'.$langs->trans('Discounts').'</td><td colspan="3">';
338 338
 
339
-		$absolute_discount=$soc->getAvailableDiscounts('',$filterabsolutediscount);
340
-		$absolute_creditnote=$soc->getAvailableDiscounts('',$filtercreditnote);
341
-		$absolute_discount=price2num($absolute_discount,'MT');
342
-		$absolute_creditnote=price2num($absolute_creditnote,'MT');
339
+		$absolute_discount = $soc->getAvailableDiscounts('', $filterabsolutediscount);
340
+		$absolute_creditnote = $soc->getAvailableDiscounts('', $filtercreditnote);
341
+		$absolute_discount = price2num($absolute_discount, 'MT');
342
+		$absolute_creditnote = price2num($absolute_creditnote, 'MT');
343 343
 
344 344
 		$thirdparty = $soc;
345 345
 		$discount_type = 0;
346
-		$backtopage = urlencode($_SERVER["PHP_SELF"] . '?id=' . $object->id);
346
+		$backtopage = urlencode($_SERVER["PHP_SELF"].'?id='.$object->id);
347 347
 		$cannotApplyDiscount = 1;
348 348
 		include DOL_DOCUMENT_ROOT.'/core/tpl/object_discounts.tpl.php';
349 349
 		print '</td></tr>';
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
 		// Date
352 352
 		print '<tr><td>'.$langs->trans('Date').'</td>';
353 353
 		print '<td colspan="2">';
354
-		print dol_print_date($object->date,'daytext');
354
+		print dol_print_date($object->date, 'daytext');
355 355
 		if ($object->hasDelay() && empty($object->date_livraison)) {
356 356
 		    print ' '.img_picto($langs->trans("Late").' : '.$object->showDelay(), "warning");
357 357
 		}
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
 		print $langs->trans('DateDeliveryPlanned');
365 365
 		print '</td>';
366 366
 
367
-		if ($action != 'editdate_livraison') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'),1).'</a></td>';
367
+		if ($action != 'editdate_livraison') print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdate_livraison&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDeliveryDate'), 1).'</a></td>';
368 368
 		print '</tr></table>';
369 369
 		print '</td><td colspan="2">';
370 370
 		if ($action == 'editdate_livraison')
@@ -372,14 +372,14 @@  discard block
 block discarded – undo
372 372
 			print '<form name="setdate_livraison" action="'.$_SERVER["PHP_SELF"].'?id='.$object->id.'" method="post">';
373 373
 			print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
374 374
 			print '<input type="hidden" name="action" value="setdatedelivery">';
375
-			print $form->selectDate($object->date_livraison>0?$object->date_livraison:-1, 'liv_', '', '', '', "setdatedelivery");
375
+			print $form->selectDate($object->date_livraison > 0 ? $object->date_livraison : -1, 'liv_', '', '', '', "setdatedelivery");
376 376
 			print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
377 377
 			print '</form>';
378 378
 		}
379 379
 		else
380 380
 		{
381
-			print dol_print_date($object->date_livraison,'daytext');
382
-			if ($object->hasDelay() && ! empty($object->date_livraison)) {
381
+			print dol_print_date($object->date_livraison, 'daytext');
382
+			if ($object->hasDelay() && !empty($object->date_livraison)) {
383 383
 			    print ' '.img_picto($langs->trans("Late").' : '.$object->showDelay(), "warning");
384 384
 			}
385 385
 		}
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
         print $langs->trans('SendingMethod');
397 397
         print '</td>';
398 398
         if ($action != 'editshippingmethod' && $user->rights->expedition->creer)
399
-            print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshippingmethod&amp;id='.$object->id.'">'.img_edit($langs->trans('SetShippingMode'),1).'</a></td>';
399
+            print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editshippingmethod&amp;id='.$object->id.'">'.img_edit($langs->trans('SetShippingMode'), 1).'</a></td>';
400 400
         print '</tr></table>';
401 401
         print '</td><td colspan="2">';
402 402
         if ($action == 'editshippingmethod') {
@@ -408,15 +408,15 @@  discard block
 block discarded – undo
408 408
         print '</tr>';
409 409
 
410 410
         // Warehouse
411
-        if (! empty($conf->stock->enabled) && ! empty($conf->global->WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER)) {
411
+        if (!empty($conf->stock->enabled) && !empty($conf->global->WAREHOUSE_ASK_WAREHOUSE_DURING_ORDER)) {
412 412
             require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
413
-            $formproduct=new FormProduct($db);
413
+            $formproduct = new FormProduct($db);
414 414
             print '<tr><td>';
415 415
             print '<table width="100%" class="nobordernopadding"><tr><td>';
416 416
             print $langs->trans('Warehouse');
417 417
             print '</td>';
418 418
             if ($action != 'editwarehouse' && $user->rights->commande->creer)
419
-                print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editwarehouse&amp;id='.$object->id.'">'.img_edit($langs->trans('SetWarehouse'),1).'</a></td>';
419
+                print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editwarehouse&amp;id='.$object->id.'">'.img_edit($langs->trans('SetWarehouse'), 1).'</a></td>';
420 420
             print '</tr></table>';
421 421
             print '</td><td colspan="2">';
422 422
             if ($action == 'editwarehouse') {
@@ -472,13 +472,13 @@  discard block
 block discarded – undo
472 472
 		print $langs->trans('AvailabilityPeriod');
473 473
 		print '</td>';
474 474
 		if ($action != 'editavailability')
475
-			print '<td align="right"><a href="' . $_SERVER["PHP_SELF"] . '?action=editavailability&amp;id=' . $object->id . '">' . img_edit($langs->trans('SetAvailability'), 1) . '</a></td>';
475
+			print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editavailability&amp;id='.$object->id.'">'.img_edit($langs->trans('SetAvailability'), 1).'</a></td>';
476 476
 		print '</tr></table>';
477 477
 		print '</td><td colspan="3">';
478 478
 		if ($action == 'editavailability') {
479
-			$form->form_availability($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->availability_id, 'availability_id', 1);
479
+			$form->form_availability($_SERVER['PHP_SELF'].'?id='.$object->id, $object->availability_id, 'availability_id', 1);
480 480
 		} else {
481
-			$form->form_availability($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->availability_id, 'none', 1);
481
+			$form->form_availability($_SERVER['PHP_SELF'].'?id='.$object->id, $object->availability_id, 'none', 1);
482 482
 		}
483 483
 		print '</td></tr>';
484 484
 
@@ -488,27 +488,27 @@  discard block
 block discarded – undo
488 488
 		print $langs->trans('Source');
489 489
 		print '</td>';
490 490
 		if ($action != 'editdemandreason')
491
-			print '<td align="right"><a href="' . $_SERVER["PHP_SELF"] . '?action=editdemandreason&amp;id=' . $object->id . '">' . img_edit($langs->trans('SetDemandReason'), 1) . '</a></td>';
491
+			print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editdemandreason&amp;id='.$object->id.'">'.img_edit($langs->trans('SetDemandReason'), 1).'</a></td>';
492 492
 		print '</tr></table>';
493 493
 		print '</td><td colspan="3">';
494 494
 		if ($action == 'editdemandreason') {
495
-			$form->formInputReason($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->demand_reason_id, 'demand_reason_id', 1);
495
+			$form->formInputReason($_SERVER['PHP_SELF'].'?id='.$object->id, $object->demand_reason_id, 'demand_reason_id', 1);
496 496
 		} else {
497
-			$form->formInputReason($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->demand_reason_id, 'none');
497
+			$form->formInputReason($_SERVER['PHP_SELF'].'?id='.$object->id, $object->demand_reason_id, 'none');
498 498
 		}
499 499
 
500
-		$tmparray=$object->getTotalWeightVolume();
501
-		$totalWeight=$tmparray['weight'];
502
-		$totalVolume=$tmparray['volume'];
500
+		$tmparray = $object->getTotalWeightVolume();
501
+		$totalWeight = $tmparray['weight'];
502
+		$totalVolume = $tmparray['volume'];
503 503
 		if ($totalWeight || $totalVolume)
504 504
 		{
505 505
 		    print '<tr><td>'.$langs->trans("CalculatedWeight").'</td>';
506 506
 		    print '<td>';
507
-		    print showDimensionInBestUnit($totalWeight, 0, "weight", $langs, isset($conf->global->MAIN_WEIGHT_DEFAULT_ROUND)?$conf->global->MAIN_WEIGHT_DEFAULT_ROUND:-1, isset($conf->global->MAIN_WEIGHT_DEFAULT_UNIT)?$conf->global->MAIN_WEIGHT_DEFAULT_UNIT:'no');
507
+		    print showDimensionInBestUnit($totalWeight, 0, "weight", $langs, isset($conf->global->MAIN_WEIGHT_DEFAULT_ROUND) ? $conf->global->MAIN_WEIGHT_DEFAULT_ROUND : -1, isset($conf->global->MAIN_WEIGHT_DEFAULT_UNIT) ? $conf->global->MAIN_WEIGHT_DEFAULT_UNIT : 'no');
508 508
 		    print '</td></tr>';
509 509
 		    print '<tr><td>'.$langs->trans("CalculatedVolume").'</td>';
510 510
 		    print '<td>';
511
-		    print showDimensionInBestUnit($totalVolume, 0, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND)?$conf->global->MAIN_VOLUME_DEFAULT_ROUND:-1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT)?$conf->global->MAIN_VOLUME_DEFAULT_UNIT:'no');
511
+		    print showDimensionInBestUnit($totalVolume, 0, "volume", $langs, isset($conf->global->MAIN_VOLUME_DEFAULT_ROUND) ? $conf->global->MAIN_VOLUME_DEFAULT_ROUND : -1, isset($conf->global->MAIN_VOLUME_DEFAULT_UNIT) ? $conf->global->MAIN_VOLUME_DEFAULT_UNIT : 'no');
512 512
 		    print '</td></tr>';
513 513
 		}
514 514
 
@@ -532,14 +532,14 @@  discard block
 block discarded – undo
532 532
 		    }
533 533
 		    else
534 534
 		    {
535
-		        print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms)?$object->location_incoterms:''), $_SERVER['PHP_SELF'].'?id='.$object->id);
535
+		        print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : ''), $_SERVER['PHP_SELF'].'?id='.$object->id);
536 536
 		    }
537 537
 		    print '</td></tr>';
538 538
 		}
539 539
 
540 540
 		// Other attributes
541 541
 		$cols = 2;
542
-		include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
542
+		include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
543 543
 
544 544
 		print '</table>';
545 545
 
@@ -553,18 +553,18 @@  discard block
 block discarded – undo
553 553
 		if (!empty($conf->multicurrency->enabled) && ($object->multicurrency_code != $conf->currency))
554 554
 		{
555 555
 		    // Multicurrency Amount HT
556
-		    print '<tr><td class="titlefieldmiddle">' . $form->editfieldkey('MulticurrencyAmountHT', 'multicurrency_total_ht', '', $object, 0) . '</td>';
557
-		    print '<td class="nowrap">' . price($object->multicurrency_total_ht, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)) . '</td>';
556
+		    print '<tr><td class="titlefieldmiddle">'.$form->editfieldkey('MulticurrencyAmountHT', 'multicurrency_total_ht', '', $object, 0).'</td>';
557
+		    print '<td class="nowrap">'.price($object->multicurrency_total_ht, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).'</td>';
558 558
 		    print '</tr>';
559 559
 
560 560
 		    // Multicurrency Amount VAT
561
-		    print '<tr><td>' . $form->editfieldkey('MulticurrencyAmountVAT', 'multicurrency_total_tva', '', $object, 0) . '</td>';
562
-		    print '<td class="nowrap">' . price($object->multicurrency_total_tva, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)) . '</td>';
561
+		    print '<tr><td>'.$form->editfieldkey('MulticurrencyAmountVAT', 'multicurrency_total_tva', '', $object, 0).'</td>';
562
+		    print '<td class="nowrap">'.price($object->multicurrency_total_tva, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).'</td>';
563 563
 		    print '</tr>';
564 564
 
565 565
 		    // Multicurrency Amount TTC
566
-		    print '<tr><td>' . $form->editfieldkey('MulticurrencyAmountTTC', 'multicurrency_total_ttc', '', $object, 0) . '</td>';
567
-		    print '<td class="nowrap">' . price($object->multicurrency_total_ttc, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)) . '</td>';
566
+		    print '<tr><td>'.$form->editfieldkey('MulticurrencyAmountTTC', 'multicurrency_total_ttc', '', $object, 0).'</td>';
567
+		    print '<td class="nowrap">'.price($object->multicurrency_total_ttc, '', $langs, 0, - 1, - 1, (!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency)).'</td>';
568 568
 		    print '</tr>';
569 569
 		}
570 570
 
@@ -580,13 +580,13 @@  discard block
 block discarded – undo
580 580
 		// Amount Local Taxes
581 581
 		if ($mysoc->localtax1_assuj == "1" || $object->total_localtax1 != 0) 		// Localtax1
582 582
 		{
583
-		    print '<tr><td>' . $langs->transcountry("AmountLT1", $mysoc->country_code) . '</td>';
584
-		    print '<td>' . price($object->total_localtax1, 1, '', 1, - 1, - 1, $conf->currency) . '</td></tr>';
583
+		    print '<tr><td>'.$langs->transcountry("AmountLT1", $mysoc->country_code).'</td>';
584
+		    print '<td>'.price($object->total_localtax1, 1, '', 1, - 1, - 1, $conf->currency).'</td></tr>';
585 585
 		}
586 586
 		if ($mysoc->localtax2_assuj == "1" || $object->total_localtax2 != 0) 		// Localtax2 IRPF
587 587
 		{
588
-		    print '<tr><td>' . $langs->transcountry("AmountLT2", $mysoc->country_code) . '</td>';
589
-		    print '<td>' . price($object->total_localtax2, 1, '', 1, - 1, - 1, $conf->currency) . '</td></tr>';
588
+		    print '<tr><td>'.$langs->transcountry("AmountLT2", $mysoc->country_code).'</td>';
589
+		    print '<td>'.price($object->total_localtax2, 1, '', 1, - 1, - 1, $conf->currency).'</td></tr>';
590 590
 		}
591 591
 
592 592
 		// Total TTC
@@ -610,15 +610,15 @@  discard block
 block discarded – undo
610 610
 		print '<table class="noborder noshadow" width="100%">';
611 611
 
612 612
 		$sql = "SELECT cd.rowid, cd.fk_product, cd.product_type as type, cd.label, cd.description,";
613
-		$sql.= " cd.price, cd.tva_tx, cd.subprice,";
614
-		$sql.= " cd.qty,";
615
-		$sql.= ' cd.date_start,';
616
-		$sql.= ' cd.date_end,';
617
-		$sql.= ' p.rowid as prodid, p.label as product_label, p.entity, p.ref, p.fk_product_type as product_type, p.description as product_desc';
618
-		$sql.= " FROM ".MAIN_DB_PREFIX."commandedet as cd";
619
-		$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON cd.fk_product = p.rowid";
620
-		$sql.= " WHERE cd.fk_commande = ".$object->id;
621
-		$sql.= " ORDER BY cd.rang, cd.rowid";
613
+		$sql .= " cd.price, cd.tva_tx, cd.subprice,";
614
+		$sql .= " cd.qty,";
615
+		$sql .= ' cd.date_start,';
616
+		$sql .= ' cd.date_end,';
617
+		$sql .= ' p.rowid as prodid, p.label as product_label, p.entity, p.ref, p.fk_product_type as product_type, p.description as product_desc';
618
+		$sql .= " FROM ".MAIN_DB_PREFIX."commandedet as cd";
619
+		$sql .= " LEFT JOIN ".MAIN_DB_PREFIX."product as p ON cd.fk_product = p.rowid";
620
+		$sql .= " WHERE cd.fk_commande = ".$object->id;
621
+		$sql .= " ORDER BY cd.rang, cd.rowid";
622 622
 
623 623
 		//print $sql;
624 624
 		dol_syslog("shipment.php", LOG_DEBUG);
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
 			print '<td align="center">'.$langs->trans("QtyOrdered").'</td>';
634 634
 			print '<td align="center">'.$langs->trans("QtyShipped").'</td>';
635 635
 			print '<td align="center">'.$langs->trans("KeepToShip").'</td>';
636
-			if (! empty($conf->stock->enabled))
636
+			if (!empty($conf->stock->enabled))
637 637
 			{
638 638
 				print '<td align="center">'.$langs->trans("RealStock").'</td>';
639 639
 			}
@@ -643,20 +643,20 @@  discard block
 block discarded – undo
643 643
 			}
644 644
 			print "</tr>\n";
645 645
 
646
-			$toBeShipped=array();
647
-			$toBeShippedTotal=0;
646
+			$toBeShipped = array();
647
+			$toBeShippedTotal = 0;
648 648
 			while ($i < $num)
649 649
 			{
650 650
 				$objp = $db->fetch_object($resql);
651 651
 
652 652
 
653 653
 				// Show product and description
654
-				$type=isset($objp->type)?$objp->type:$objp->product_type;
654
+				$type = isset($objp->type) ? $objp->type : $objp->product_type;
655 655
 
656 656
 				// Try to enhance type detection using date_start and date_end for free lines where type
657 657
 				// was not saved.
658
-				if (! empty($objp->date_start)) $type=1;
659
-				if (! empty($objp->date_end)) $type=1;
658
+				if (!empty($objp->date_start)) $type = 1;
659
+				if (!empty($objp->date_end)) $type = 1;
660 660
 
661 661
 				print '<tr class="oddeven">';
662 662
 
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
 				if ($objp->fk_product > 0)
665 665
 				{
666 666
 					// Define output language
667
-					if (! empty($conf->global->MAIN_MULTILANGS) && ! empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE))
667
+					if (!empty($conf->global->MAIN_MULTILANGS) && !empty($conf->global->PRODUIT_TEXTS_IN_THIRDPARTY_LANGUAGE))
668 668
 					{
669 669
 						$object->fetch_thirdparty();
670 670
 
@@ -674,41 +674,41 @@  discard block
 block discarded – undo
674 674
 						$prod->getMultiLangs();
675 675
 
676 676
 						$outputlangs = $langs;
677
-						$newlang='';
678
-						if (empty($newlang) && ! empty($_REQUEST['lang_id'])) $newlang=$_REQUEST['lang_id'];
679
-						if (empty($newlang)) $newlang=$object->thirdparty->default_lang;
680
-						if (! empty($newlang))
677
+						$newlang = '';
678
+						if (empty($newlang) && !empty($_REQUEST['lang_id'])) $newlang = $_REQUEST['lang_id'];
679
+						if (empty($newlang)) $newlang = $object->thirdparty->default_lang;
680
+						if (!empty($newlang))
681 681
 						{
682
-							$outputlangs = new Translate("",$conf);
682
+							$outputlangs = new Translate("", $conf);
683 683
 							$outputlangs->setDefaultLang($newlang);
684 684
 						}
685 685
 
686
-						$label = (! empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $objp->product_label;
686
+						$label = (!empty($prod->multilangs[$outputlangs->defaultlang]["label"])) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $objp->product_label;
687 687
 					}
688 688
 					else
689
-						$label = (! empty($objp->label)?$objp->label:$objp->product_label);
689
+						$label = (!empty($objp->label) ? $objp->label : $objp->product_label);
690 690
 
691 691
 					print '<td>';
692 692
 					print '<a name="'.$objp->rowid.'"></a>'; // ancre pour retourner sur la ligne
693 693
 
694 694
 					// Show product and description
695
-					$product_static->type=$type;
696
-					$product_static->id=$objp->fk_product;
697
-					$product_static->ref=$objp->ref;
695
+					$product_static->type = $type;
696
+					$product_static->id = $objp->fk_product;
697
+					$product_static->ref = $objp->ref;
698 698
                     $product_static->entity = $objp->entity;
699
-					$text=$product_static->getNomUrl(1);
700
-					$text.= ' - '.$label;
701
-					$description=($conf->global->PRODUIT_DESC_IN_FORM?'':dol_htmlentitiesbr($objp->description)).'<br>';
702
-                    $description.= $product_static->show_photos('product', $conf->product->multidir_output[$product_static->entity], 1, 1, 0, 0, 0, 80);
703
-					print $form->textwithtooltip($text,$description,3,'','',$i);
699
+					$text = $product_static->getNomUrl(1);
700
+					$text .= ' - '.$label;
701
+					$description = ($conf->global->PRODUIT_DESC_IN_FORM ? '' : dol_htmlentitiesbr($objp->description)).'<br>';
702
+                    $description .= $product_static->show_photos('product', $conf->product->multidir_output[$product_static->entity], 1, 1, 0, 0, 0, 80);
703
+					print $form->textwithtooltip($text, $description, 3, '', '', $i);
704 704
 
705 705
 					// Show range
706
-					print_date_range($db->jdate($objp->date_start),$db->jdate($objp->date_end));
706
+					print_date_range($db->jdate($objp->date_start), $db->jdate($objp->date_end));
707 707
 
708 708
 					// Add description in form
709
-					if (! empty($conf->global->PRODUIT_DESC_IN_FORM))
709
+					if (!empty($conf->global->PRODUIT_DESC_IN_FORM))
710 710
 					{
711
-						print ($objp->description && $objp->description!=$objp->product_label)?'<br>'.dol_htmlentitiesbr($objp->description):'';
711
+						print ($objp->description && $objp->description != $objp->product_label) ? '<br>'.dol_htmlentitiesbr($objp->description) : '';
712 712
 					}
713 713
 
714 714
 					print '</td>';
@@ -716,35 +716,35 @@  discard block
 block discarded – undo
716 716
 				else
717 717
 				{
718 718
 					print "<td>";
719
-					if ($type==1) $text = img_object($langs->trans('Service'),'service');
720
-					else $text = img_object($langs->trans('Product'),'product');
719
+					if ($type == 1) $text = img_object($langs->trans('Service'), 'service');
720
+					else $text = img_object($langs->trans('Product'), 'product');
721 721
 
722
-					if (! empty($objp->label)) {
723
-						$text.= ' <strong>'.$objp->label.'</strong>';
724
-						print $form->textwithtooltip($text,$objp->description,3,'','',$i);
722
+					if (!empty($objp->label)) {
723
+						$text .= ' <strong>'.$objp->label.'</strong>';
724
+						print $form->textwithtooltip($text, $objp->description, 3, '', '', $i);
725 725
 					} else {
726 726
 						print $text.' '.nl2br($objp->description);
727 727
 					}
728 728
 
729 729
 					// Show range
730
-					print_date_range($db->jdate($objp->date_start),$db->jdate($objp->date_end));
730
+					print_date_range($db->jdate($objp->date_start), $db->jdate($objp->date_end));
731 731
 					print "</td>\n";
732 732
 				}
733 733
 
734 734
 				// Qty ordered
735
-				print '<td align="center">' . $objp->qty . '</td>';
735
+				print '<td align="center">'.$objp->qty.'</td>';
736 736
 
737 737
 				// Qty already shipped
738
-				$qtyProdCom=$objp->qty;
738
+				$qtyProdCom = $objp->qty;
739 739
 				print '<td align="center">';
740 740
 				// Nb of sending products for this line of order
741
-				$qtyAlreadyShipped = (! empty($object->expeditions[$objp->rowid])?$object->expeditions[$objp->rowid]:0);
741
+				$qtyAlreadyShipped = (!empty($object->expeditions[$objp->rowid]) ? $object->expeditions[$objp->rowid] : 0);
742 742
 				print $qtyAlreadyShipped;
743 743
 				print '</td>';
744 744
 
745 745
 				// Qty remains to ship
746 746
 				print '<td align="center">';
747
-				if ($type == 0 || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
747
+				if ($type == 0 || !empty($conf->global->STOCK_SUPPORTS_SERVICES))
748 748
 				{
749 749
 					$toBeShipped[$objp->fk_product] = $objp->qty - $qtyAlreadyShipped;
750 750
 					$toBeShippedTotal += $toBeShipped[$objp->fk_product];
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
 					$product->load_stock('warehouseopen');
764 764
 				}
765 765
 
766
-				if ($objp->fk_product > 0 && ($type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES)) && ! empty($conf->stock->enabled))
766
+				if ($objp->fk_product > 0 && ($type == Product::TYPE_PRODUCT || !empty($conf->global->STOCK_SUPPORTS_SERVICES)) && !empty($conf->stock->enabled))
767 767
 				{
768 768
 					print '<td align="center">';
769 769
 					print $product->stock_reel;
@@ -780,7 +780,7 @@  discard block
 block discarded – undo
780 780
 				print "</tr>\n";
781 781
 
782 782
 				// Show subproducts lines
783
-				if ($objp->fk_product > 0 && ! empty($conf->global->PRODUIT_SOUSPRODUITS))
783
+				if ($objp->fk_product > 0 && !empty($conf->global->PRODUIT_SOUSPRODUITS))
784 784
 				{
785 785
 					// Set tree of subproducts in product->sousprods
786 786
 					$product->get_sousproduits_arbo();
@@ -791,12 +791,12 @@  discard block
 block discarded – undo
791 791
 					//var_dump($prods_arbo);
792 792
 					if (count($prods_arbo) > 0)
793 793
 					{
794
-						foreach($prods_arbo as $key => $value)
794
+						foreach ($prods_arbo as $key => $value)
795 795
 						{
796
-							$img='';
796
+							$img = '';
797 797
 							if ($value['stock'] < $value['stock_alert'])
798 798
 							{
799
-								$img=img_warning($langs->trans("StockTooLow"));
799
+								$img = img_warning($langs->trans("StockTooLow"));
800 800
 							}
801 801
 							print '<tr class="oddeven"><td>&nbsp; &nbsp; &nbsp; -> <a href="'.DOL_URL_ROOT."/product/card.php?id=".$value['id'].'">'.$value['fullpath'].'</a> ('.$value['nb'].')</td>';
802 802
 							print '<td align="center"> '.$value['nb_total'].'</td>';
@@ -811,7 +811,7 @@  discard block
 block discarded – undo
811 811
 			}
812 812
 			$db->free($resql);
813 813
 
814
-			if (! $num)
814
+			if (!$num)
815 815
 			{
816 816
 				print '<tr '.$bc[false].'><td colspan="5">'.$langs->trans("NoArticleOfTypeProduct").'<br>';
817 817
 			}
@@ -856,12 +856,12 @@  discard block
 block discarded – undo
856 856
 
857 857
         // Bouton expedier avec gestion des stocks
858 858
 
859
-        if (! empty($conf->stock->enabled) && $object->statut == Commande::STATUS_DRAFT)
859
+        if (!empty($conf->stock->enabled) && $object->statut == Commande::STATUS_DRAFT)
860 860
         {
861 861
             print $langs->trans("ValidateOrderFirstBeforeShipment");
862 862
         }
863 863
 
864
-		if (! empty($conf->stock->enabled) && ($object->statut > Commande::STATUS_DRAFT && $object->statut < Commande::STATUS_CLOSED))
864
+		if (!empty($conf->stock->enabled) && ($object->statut > Commande::STATUS_DRAFT && $object->statut < Commande::STATUS_CLOSED))
865 865
 		{
866 866
 			if ($user->rights->expedition->creer)
867 867
 			{
@@ -881,13 +881,13 @@  discard block
 block discarded – undo
881 881
 
882 882
 				//print '<tr>';
883 883
 
884
-				if (! empty($conf->stock->enabled))
884
+				if (!empty($conf->stock->enabled))
885 885
 				{
886 886
 					//print '<td>';
887 887
 					print $langs->trans("WarehouseSource");
888 888
 					//print '</td>';
889 889
 					//print '<td>';
890
-					print $formproduct->selectWarehouses(! empty($object->warehouse_id)?$object->warehouse_id:-1, 'entrepot_id', '', 1, 0, 0, '', 0, 0, array(), 'minwidth200');
890
+					print $formproduct->selectWarehouses(!empty($object->warehouse_id) ? $object->warehouse_id : -1, 'entrepot_id', '', 1, 0, 0, '', 0, 0, array(), 'minwidth200');
891 891
 					if (count($formproduct->cache_warehouses) <= 0)
892 892
 					{
893 893
 						print ' &nbsp; '.$langs->trans("WarehouseSourceNotDefined").' <a href="'.DOL_URL_ROOT.'/product/stock/card.php?action=create">'.$langs->trans("AddOne").'</a>';
@@ -907,7 +907,7 @@  discard block
 block discarded – undo
907 907
 
908 908
 				print '</div>';
909 909
 
910
-				$somethingshown=1;
910
+				$somethingshown = 1;
911 911
 			}
912 912
 			else
913 913
 			{
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
 			}
918 918
 		}
919 919
 
920
-		show_list_sending_receive('commande',$object->id);
920
+		show_list_sending_receive('commande', $object->id);
921 921
 	}
922 922
 	else
923 923
 	{
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/document.php 2 patches
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -60,8 +60,12 @@  discard block
 block discarded – undo
60 60
 $offset = $conf->liste_limit * $page;
61 61
 $pageprev = $page - 1;
62 62
 $pagenext = $page + 1;
63
-if (! $sortorder) $sortorder="ASC";
64
-if (! $sortfield) $sortfield="name";
63
+if (! $sortorder) {
64
+    $sortorder="ASC";
65
+}
66
+if (! $sortfield) {
67
+    $sortfield="name";
68
+}
65 69
 
66 70
 $object = new Expedition($db);
67 71
 
@@ -175,12 +179,10 @@  discard block
 block discarded – undo
175 179
 		$permtoedit = $user->rights->expedition->creer;
176 180
 		$param = '&id=' . $object->id;
177 181
 		include_once DOL_DOCUMENT_ROOT . '/core/tpl/document_actions_post_headers.tpl.php';
178
-	}
179
-	else{
182
+	} else{
180 183
 		dol_print_error($db);
181 184
 	}
182
-}
183
-else{
185
+} else{
184 186
 	header('Location: index.php');
185 187
 	exit;
186 188
 }
Please login to merge, or discard this patch.
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -28,23 +28,23 @@  discard block
 block discarded – undo
28 28
 
29 29
 // Copyright (C) 2018 Alxarafe/Alixar  <[email protected]>
30 30
 defined('BASE_PATH') or die('Single entry point through the index.php of the main folder');
31
-require DOL_BASE_PATH . '/main.inc.php';
32
-require_once DOL_DOCUMENT_ROOT . '/core/lib/order.lib.php';
31
+require DOL_BASE_PATH.'/main.inc.php';
32
+require_once DOL_DOCUMENT_ROOT.'/core/lib/order.lib.php';
33 33
 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
34 34
 require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
35 35
 require_once DOL_DOCUMENT_ROOT.'/core/lib/sendings.lib.php';
36 36
 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
37
-require_once DOL_DOCUMENT_ROOT .'/expedition/class/expedition.class.php';
38
-if (! empty($conf->projet->enabled)) {
39
-	require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php';
37
+require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
38
+if (!empty($conf->projet->enabled)) {
39
+	require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
40 40
 }
41 41
 
42 42
 // Load translation files required by the page
43 43
 $langs->loadLangs(array('companies', 'other'));
44 44
 
45
-$action		= GETPOST('action','aZ09');
45
+$action		= GETPOST('action', 'aZ09');
46 46
 $confirm	= GETPOST('confirm');
47
-$id			= GETPOST('id','int');
47
+$id			= GETPOST('id', 'int');
48 48
 $ref		= GETPOST('ref');
49 49
 
50 50
 // Security check
@@ -52,18 +52,18 @@  discard block
 block discarded – undo
52 52
 {
53 53
 	$socid = $user->societe_id;
54 54
 }
55
-$result=restrictedArea($user,'expedition',$id,'');
55
+$result = restrictedArea($user, 'expedition', $id, '');
56 56
 
57 57
 // Get parameters
58
-$sortfield = GETPOST("sortfield",'alpha');
59
-$sortorder = GETPOST("sortorder",'alpha');
60
-$page = GETPOST("page",'int');
58
+$sortfield = GETPOST("sortfield", 'alpha');
59
+$sortorder = GETPOST("sortorder", 'alpha');
60
+$page = GETPOST("page", 'int');
61 61
 if (empty($page) || $page == -1) { $page = 0; }     // If $page is not defined, or '' or -1
62 62
 $offset = $conf->liste_limit * $page;
63 63
 $pageprev = $page - 1;
64 64
 $pagenext = $page + 1;
65
-if (! $sortorder) $sortorder="ASC";
66
-if (! $sortfield) $sortfield="name";
65
+if (!$sortorder) $sortorder = "ASC";
66
+if (!$sortfield) $sortfield = "name";
67 67
 
68 68
 $object = new Expedition($db);
69 69
 
@@ -74,22 +74,22 @@  discard block
 block discarded – undo
74 74
 if ($object->fetch($id))
75 75
 {
76 76
 	$object->fetch_thirdparty();
77
-	$upload_dir = $conf->expedition->dir_output . "/sending/" . dol_sanitizeFileName($object->ref);
77
+	$upload_dir = $conf->expedition->dir_output."/sending/".dol_sanitizeFileName($object->ref);
78 78
 }
79 79
 
80
-include_once DOL_DOCUMENT_ROOT . '/core/actions_linkedfiles.inc.php';
80
+include_once DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
81 81
 
82 82
 
83 83
 /*
84 84
  * View
85 85
  */
86 86
 
87
-llxHeader('',$langs->trans('Order'),'EN:Customers_Orders|FR:expeditions_Clients|ES:Pedidos de clientes');
87
+llxHeader('', $langs->trans('Order'), 'EN:Customers_Orders|FR:expeditions_Clients|ES:Pedidos de clientes');
88 88
 
89 89
 $form = new Form($db);
90 90
 
91
-if ($id > 0 || ! empty($ref)){
92
-	if ($object->fetch($id, $ref)){
91
+if ($id > 0 || !empty($ref)) {
92
+	if ($object->fetch($id, $ref)) {
93 93
 		$object->fetch_thirdparty();
94 94
 
95 95
 		$upload_dir = $conf->expedition->dir_output.'/sending/'.dol_sanitizeFileName($object->ref);
@@ -99,50 +99,50 @@  discard block
 block discarded – undo
99 99
 	
100 100
 
101 101
 		// Build file list
102
-		$filearray=dol_dir_list($upload_dir,"files",0,'','(\.meta|_preview.*\.png)$',$sortfield,(strtolower($sortorder)=='desc'?SORT_DESC:SORT_ASC),1);
103
-		$totalsize=0;
104
-		foreach($filearray as $key => $file){
105
-		    $totalsize+=$file['size'];
102
+		$filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
103
+		$totalsize = 0;
104
+		foreach ($filearray as $key => $file) {
105
+		    $totalsize += $file['size'];
106 106
 		}
107 107
 
108 108
 		// Shipment card
109
-		$linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php?restore_lastsearch_values=1' . (! empty($socid) ? '&socid=' . $socid : '') . '">'.$langs->trans("BackToList").'</a>';
109
+		$linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
110 110
 
111 111
 
112
-		$morehtmlref='<div class="refidno">';
112
+		$morehtmlref = '<div class="refidno">';
113 113
 		// Ref customer
114
-		$morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
115
-		$morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
114
+		$morehtmlref .= $form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
115
+		$morehtmlref .= $form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
116 116
 		// Thirdparty
117
-		$morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $object->thirdparty->getNomUrl(1);
117
+		$morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
118 118
 
119 119
 		// Project
120
-		if (! empty($conf->projet->enabled)) {
120
+		if (!empty($conf->projet->enabled)) {
121 121
 			$langs->load("projects");
122
-			$morehtmlref .= '<br>' . $langs->trans('Project') . ' ';
122
+			$morehtmlref .= '<br>'.$langs->trans('Project').' ';
123 123
 			if (0) {    // Do not change on shipment
124 124
 				if ($action != 'classify') {
125
-					$morehtmlref .= '<a href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
125
+					$morehtmlref .= '<a href="'.$_SERVER['PHP_SELF'].'?action=classify&amp;id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
126 126
 				}
127 127
 				if ($action == 'classify') {
128 128
 					// $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
129
-					$morehtmlref .= '<form method="post" action="' . $_SERVER['PHP_SELF'] . '?id=' . $object->id . '">';
129
+					$morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
130 130
 					$morehtmlref .= '<input type="hidden" name="action" value="classin">';
131
-					$morehtmlref .= '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
131
+					$morehtmlref .= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
132 132
 					$morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
133
-					$morehtmlref .= '<input type="submit" class="button" value="' . $langs->trans("Modify") . '">';
133
+					$morehtmlref .= '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
134 134
 					$morehtmlref .= '</form>';
135 135
 				} else {
136
-					$morehtmlref .= $form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
136
+					$morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
137 137
 				}
138 138
 			} else {
139 139
 				// We don't have project on shipment, so we will use the project or source object instead
140 140
 				// TODO Add project on shipment
141 141
 				$morehtmlref .= ' : ';
142
-				if (! empty($objectsrc->fk_project)) {
142
+				if (!empty($objectsrc->fk_project)) {
143 143
 					$proj = new Project($db);
144 144
 					$proj->fetch($objectsrc->fk_project);
145
-					$morehtmlref .= '<a href="' . DOL_URL_ROOT . '/projet/card.php?id=' . $objectsrc->fk_project . '" title="' . $langs->trans('ShowProject') . '">';
145
+					$morehtmlref .= '<a href="'.DOL_URL_ROOT.'/projet/card.php?id='.$objectsrc->fk_project.'" title="'.$langs->trans('ShowProject').'">';
146 146
 					$morehtmlref .= $proj->ref;
147 147
 					$morehtmlref .= '</a>';
148 148
 				} else {
@@ -150,11 +150,11 @@  discard block
 block discarded – undo
150 150
 				}
151 151
 			}
152 152
 		}
153
-		$morehtmlref.='</div>';
153
+		$morehtmlref .= '</div>';
154 154
 
155 155
 		// Order card
156 156
 
157
-		$linkback = '<a href="' . DOL_URL_ROOT . '/expedition/list.php' . (! empty($socid) ? '?socid=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>';
157
+		$linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php'.(!empty($socid) ? '?socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
158 158
 
159 159
 		dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
160 160
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 		print '<table class="border" width="100%">';
165 165
 
166 166
 		print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
167
-		print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize,1,1).'</td></tr>';
167
+		print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
168 168
 
169 169
 		print "</table>\n";
170 170
 
@@ -175,14 +175,14 @@  discard block
 block discarded – undo
175 175
 		$modulepart = 'expedition';
176 176
 		$permission = $user->rights->expedition->creer;
177 177
 		$permtoedit = $user->rights->expedition->creer;
178
-		$param = '&id=' . $object->id;
179
-		include_once DOL_DOCUMENT_ROOT . '/core/tpl/document_actions_post_headers.tpl.php';
178
+		$param = '&id='.$object->id;
179
+		include_once DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
180 180
 	}
181
-	else{
181
+	else {
182 182
 		dol_print_error($db);
183 183
 	}
184 184
 }
185
-else{
185
+else {
186 186
 	header('Location: index.php');
187 187
 	exit;
188 188
 }
Please login to merge, or discard this patch.
dolibarr/htdocs/expedition/note.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,9 @@
 block discarded – undo
41 41
 
42 42
 // Security check
43 43
 $socid='';
44
-if ($user->societe_id) $socid=$user->societe_id;
44
+if ($user->societe_id) {
45
+    $socid=$user->societe_id;
46
+}
45 47
 $result=restrictedArea($user, $origin, $origin_id);
46 48
 
47 49
 $object = new Expedition($db);
Please login to merge, or discard this patch.
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
 
27 27
 // Copyright (C) 2018 Alxarafe/Alixar  <[email protected]>
28 28
 defined('BASE_PATH') or die('Single entry point through the index.php of the main folder');
29
-require DOL_BASE_PATH . '/main.inc.php';
30
-require_once DOL_DOCUMENT_ROOT . '/expedition/class/expedition.class.php';
29
+require DOL_BASE_PATH.'/main.inc.php';
30
+require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
31 31
 require_once DOL_DOCUMENT_ROOT.'/core/lib/sendings.lib.php';
32
-if (! empty($conf->projet->enabled)) {
32
+if (!empty($conf->projet->enabled)) {
33 33
     require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
34 34
     require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
35 35
 }
@@ -37,17 +37,17 @@  discard block
 block discarded – undo
37 37
 // Load translation files required by the page
38 38
 $langs->loadLangs(array('sendings', 'companies', 'bills', 'deliveries', 'orders', 'stocks', 'other', 'propal'));
39 39
 
40
-$id=(GETPOST('id','int')?GETPOST('id','int'):GETPOST('facid','int'));  // For backward compatibility
41
-$ref=GETPOST('ref','alpha');
42
-$action=GETPOST('action','alpha');
40
+$id = (GETPOST('id', 'int') ?GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
41
+$ref = GETPOST('ref', 'alpha');
42
+$action = GETPOST('action', 'alpha');
43 43
 
44 44
 // Security check
45
-$socid='';
46
-if ($user->societe_id) $socid=$user->societe_id;
47
-$result=restrictedArea($user, $origin, $origin_id);
45
+$socid = '';
46
+if ($user->societe_id) $socid = $user->societe_id;
47
+$result = restrictedArea($user, $origin, $origin_id);
48 48
 
49 49
 $object = new Expedition($db);
50
-if ($id > 0 || ! empty($ref))
50
+if ($id > 0 || !empty($ref))
51 51
 {
52 52
     $object->fetch($id, $ref);
53 53
     $object->fetch_thirdparty();
@@ -60,26 +60,26 @@  discard block
 block discarded – undo
60 60
     }
61 61
 
62 62
     // Linked documents
63
-    if ($typeobject == 'commande' && $object->$typeobject->id && ! empty($conf->commande->enabled))
63
+    if ($typeobject == 'commande' && $object->$typeobject->id && !empty($conf->commande->enabled))
64 64
     {
65
-        $objectsrc=new Commande($db);
65
+        $objectsrc = new Commande($db);
66 66
         $objectsrc->fetch($object->$typeobject->id);
67 67
     }
68
-    if ($typeobject == 'propal' && $object->$typeobject->id && ! empty($conf->propal->enabled))
68
+    if ($typeobject == 'propal' && $object->$typeobject->id && !empty($conf->propal->enabled))
69 69
     {
70
-        $objectsrc=new Propal($db);
70
+        $objectsrc = new Propal($db);
71 71
         $objectsrc->fetch($object->$typeobject->id);
72 72
     }
73 73
 }
74 74
 
75
-$permissionnote=$user->rights->expedition->creer;	// Used by the include of actions_setnotes.inc.php
75
+$permissionnote = $user->rights->expedition->creer; // Used by the include of actions_setnotes.inc.php
76 76
 
77 77
 
78 78
 /*
79 79
  * Actions
80 80
  */
81 81
 
82
-include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php';	// Must be include, not includ_once
82
+include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once
83 83
 
84 84
 
85 85
 /*
@@ -90,49 +90,49 @@  discard block
 block discarded – undo
90 90
 
91 91
 $form = new Form($db);
92 92
 
93
-if ($id > 0 || ! empty($ref))
93
+if ($id > 0 || !empty($ref))
94 94
 {
95 95
 
96
-	$head=shipping_prepare_head($object);
96
+	$head = shipping_prepare_head($object);
97 97
 	dol_fiche_head($head, 'note', $langs->trans("Shipment"), -1, 'sending');
98 98
 
99 99
 
100 100
 	// Shipment card
101
-	$linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php?restore_lastsearch_values=1' . (! empty($socid) ? '&socid=' . $socid : '') . '">'.$langs->trans("BackToList").'</a>';
101
+	$linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
102 102
 
103
-	$morehtmlref='<div class="refidno">';
103
+	$morehtmlref = '<div class="refidno">';
104 104
 	// Ref customer shipment
105
-	$morehtmlref.=$form->editfieldkey("RefCustomer", '', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', 0, 1);
106
-	$morehtmlref.=$form->editfieldval("RefCustomer", '', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', null, null, '', 1);
105
+	$morehtmlref .= $form->editfieldkey("RefCustomer", '', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', 0, 1);
106
+	$morehtmlref .= $form->editfieldval("RefCustomer", '', $object->ref_customer, $object, $user->rights->expedition->creer, 'string', '', null, null, '', 1);
107 107
 	// Thirdparty
108
-	$morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . $object->thirdparty->getNomUrl(1);
108
+	$morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
109 109
     // Project
110
-    if (! empty($conf->projet->enabled)) {
110
+    if (!empty($conf->projet->enabled)) {
111 111
         $langs->load("projects");
112
-        $morehtmlref .= '<br>' . $langs->trans('Project') . ' ';
112
+        $morehtmlref .= '<br>'.$langs->trans('Project').' ';
113 113
         if (0) {    // Do not change on shipment
114 114
             if ($action != 'classify') {
115
-                $morehtmlref .= '<a href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
115
+                $morehtmlref .= '<a href="'.$_SERVER['PHP_SELF'].'?action=classify&amp;id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
116 116
             }
117 117
             if ($action == 'classify') {
118 118
                 // $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
119
-                $morehtmlref .= '<form method="post" action="' . $_SERVER['PHP_SELF'] . '?id=' . $object->id . '">';
119
+                $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
120 120
                 $morehtmlref .= '<input type="hidden" name="action" value="classin">';
121
-                $morehtmlref .= '<input type="hidden" name="token" value="' . $_SESSION['newtoken'] . '">';
121
+                $morehtmlref .= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
122 122
                 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
123
-                $morehtmlref .= '<input type="submit" class="button" value="' . $langs->trans("Modify") . '">';
123
+                $morehtmlref .= '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
124 124
                 $morehtmlref .= '</form>';
125 125
             } else {
126
-                $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
126
+                $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
127 127
             }
128 128
         } else {
129 129
             // We don't have project on shipment, so we will use the project or source object instead
130 130
             // TODO Add project on shipment
131 131
             $morehtmlref .= ' : ';
132
-            if (! empty($objectsrc->fk_project)) {
132
+            if (!empty($objectsrc->fk_project)) {
133 133
                 $proj = new Project($db);
134 134
                 $proj->fetch($objectsrc->fk_project);
135
-                $morehtmlref .= '<a href="' . DOL_URL_ROOT . '/projet/card.php?id=' . $objectsrc->fk_project . '" title="' . $langs->trans('ShowProject') . '">';
135
+                $morehtmlref .= '<a href="'.DOL_URL_ROOT.'/projet/card.php?id='.$objectsrc->fk_project.'" title="'.$langs->trans('ShowProject').'">';
136 136
                 $morehtmlref .= $proj->ref;
137 137
                 $morehtmlref .= '</a>';
138 138
             } else {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             }
141 141
         }
142 142
     }
143
-    $morehtmlref.='</div>';
143
+    $morehtmlref .= '</div>';
144 144
 
145 145
 
146 146
     dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 
149 149
     print '<div class="underbanner clearboth"></div>';
150 150
 
151
-	$cssclass='titlefield';
151
+	$cssclass = 'titlefield';
152 152
 	include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
153 153
 
154 154
 	dol_fiche_end();
Please login to merge, or discard this patch.