Passed
Push — master ( 9ce9eb...91cbcc )
by
unknown
02:21
created
script/interface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 	dol_include_once('/supplier_proposal/class/supplier_proposal.class.php');
11 11
 	dol_include_once('/fourn/class/fournisseur.facture.class.php');
12 12
 	
13
-	$get=GETPOST('get');
14
-	$set=GETPOST('set');
13
+	$get = GETPOST('get');
14
+	$set = GETPOST('set');
15 15
 	
16 16
 	switch ($get) {
17 17
 		default:
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 	
21 21
 	switch ($set) {
22 22
 		case 'updateLineNC': // Gestion du Compris/Non Compris via les titres et/ou lignes
23
-			echo json_encode( _updateLineNC(GETPOST('element'), GETPOST('elementid'), GETPOST('lineid'), GETPOST('subtotal_nc')) );
23
+			echo json_encode(_updateLineNC(GETPOST('element'), GETPOST('elementid'), GETPOST('lineid'), GETPOST('subtotal_nc')));
24 24
 			
25 25
 			break;
26 26
 		default:
Please login to merge, or discard this patch.
core/triggers/interface_90_modSubtotal_subtotaltrigger.class.php 3 patches
Indentation   +520 added lines, -520 removed lines patch added patch discarded remove patch
@@ -36,68 +36,68 @@  discard block
 block discarded – undo
36 36
 class Interfacesubtotaltrigger
37 37
 {
38 38
 
39
-    private $db;
40
-
41
-    /**
42
-     * Constructor
43
-     *
44
-     * 	@param		DoliDB		$db		Database handler
45
-     */
46
-    public function __construct($db)
47
-    {
48
-        $this->db = $db;
49
-
50
-        $this->name = preg_replace('/^Interface/i', '', get_class($this));
51
-        $this->family = "demo";
52
-        $this->description = "Triggers of this module are empty functions."
53
-            . "They have no effect."
54
-            . "They are provided for tutorial purpose only.";
55
-        // 'development', 'experimental', 'dolibarr' or version
56
-        $this->version = 'development';
57
-        $this->picto = 'titre@titre';
58
-    }
59
-
60
-    /**
61
-     * Trigger name
62
-     *
63
-     * 	@return		string	Name of trigger file
64
-     */
65
-    public function getName()
66
-    {
67
-        return $this->name;
68
-    }
69
-
70
-    /**
71
-     * Trigger description
72
-     *
73
-     * 	@return		string	Description of trigger file
74
-     */
75
-    public function getDesc()
76
-    {
77
-        return $this->description;
78
-    }
79
-
80
-    /**
81
-     * Trigger version
82
-     *
83
-     * 	@return		string	Version of trigger file
84
-     */
85
-    public function getVersion()
86
-    {
87
-        global $langs;
88
-        $langs->load("admin");
89
-
90
-        if ($this->version == 'development') {
91
-            return $langs->trans("Development");
92
-        } elseif ($this->version == 'experimental')
93
-
94
-                return $langs->trans("Experimental");
95
-        elseif ($this->version == 'dolibarr') return DOL_VERSION;
96
-        elseif ($this->version) return $this->version;
97
-        else {
98
-            return $langs->trans("Unknown");
99
-        }
100
-    }
39
+	private $db;
40
+
41
+	/**
42
+	 * Constructor
43
+	 *
44
+	 * 	@param		DoliDB		$db		Database handler
45
+	 */
46
+	public function __construct($db)
47
+	{
48
+		$this->db = $db;
49
+
50
+		$this->name = preg_replace('/^Interface/i', '', get_class($this));
51
+		$this->family = "demo";
52
+		$this->description = "Triggers of this module are empty functions."
53
+			. "They have no effect."
54
+			. "They are provided for tutorial purpose only.";
55
+		// 'development', 'experimental', 'dolibarr' or version
56
+		$this->version = 'development';
57
+		$this->picto = 'titre@titre';
58
+	}
59
+
60
+	/**
61
+	 * Trigger name
62
+	 *
63
+	 * 	@return		string	Name of trigger file
64
+	 */
65
+	public function getName()
66
+	{
67
+		return $this->name;
68
+	}
69
+
70
+	/**
71
+	 * Trigger description
72
+	 *
73
+	 * 	@return		string	Description of trigger file
74
+	 */
75
+	public function getDesc()
76
+	{
77
+		return $this->description;
78
+	}
79
+
80
+	/**
81
+	 * Trigger version
82
+	 *
83
+	 * 	@return		string	Version of trigger file
84
+	 */
85
+	public function getVersion()
86
+	{
87
+		global $langs;
88
+		$langs->load("admin");
89
+
90
+		if ($this->version == 'development') {
91
+			return $langs->trans("Development");
92
+		} elseif ($this->version == 'experimental')
93
+
94
+				return $langs->trans("Experimental");
95
+		elseif ($this->version == 'dolibarr') return DOL_VERSION;
96
+		elseif ($this->version) return $this->version;
97
+		else {
98
+			return $langs->trans("Unknown");
99
+		}
100
+	}
101 101
 	
102 102
 	public function addToBegin(&$parent, &$object, $rang)
103 103
 	{
@@ -147,27 +147,27 @@  discard block
 block discarded – undo
147 147
 		}
148 148
 	}
149 149
 	
150
-    /**
151
-     * Function called when a Dolibarrr business event is done.
152
-     * All functions "run_trigger" are triggered if file
153
-     * is inside directory core/triggers
154
-     *
155
-     * 	@param		string		$action		Event action code
156
-     * 	@param		Object		$object		Object
157
-     * 	@param		User		$user		Object user
158
-     * 	@param		Translate	$langs		Object langs
159
-     * 	@param		conf		$conf		Object conf
160
-     * 	@return		int						<0 if KO, 0 if no triggered ran, >0 if OK
161
-     */
162
-    public function run_trigger($action, $object, $user, $langs, $conf)
163
-    {
164
-        // Put here code you want to execute when a Dolibarr business events occurs.
165
-        // Data and type of action are stored into $object and $action
166
-        // Users
167
-        dol_include_once('/subtotal/class/subtotal.class.php');
168
-        $langs->load('subtotal@subtotal');
150
+	/**
151
+	 * Function called when a Dolibarrr business event is done.
152
+	 * All functions "run_trigger" are triggered if file
153
+	 * is inside directory core/triggers
154
+	 *
155
+	 * 	@param		string		$action		Event action code
156
+	 * 	@param		Object		$object		Object
157
+	 * 	@param		User		$user		Object user
158
+	 * 	@param		Translate	$langs		Object langs
159
+	 * 	@param		conf		$conf		Object conf
160
+	 * 	@return		int						<0 if KO, 0 if no triggered ran, >0 if OK
161
+	 */
162
+	public function run_trigger($action, $object, $user, $langs, $conf)
163
+	{
164
+		// Put here code you want to execute when a Dolibarr business events occurs.
165
+		// Data and type of action are stored into $object and $action
166
+		// Users
167
+		dol_include_once('/subtotal/class/subtotal.class.php');
168
+		$langs->load('subtotal@subtotal');
169 169
    
170
-        if (!empty($conf->global->SUBTOTAL_ALLOW_ADD_LINE_UNDER_TITLE) && in_array($action, array('LINEPROPAL_INSERT', 'LINEORDER_INSERT', 'LINEBILL_INSERT')))
170
+		if (!empty($conf->global->SUBTOTAL_ALLOW_ADD_LINE_UNDER_TITLE) && in_array($action, array('LINEPROPAL_INSERT', 'LINEORDER_INSERT', 'LINEBILL_INSERT')))
171 171
 		{
172 172
 			
173 173
 			$rang = GETPOST('under_title', 'int'); // Rang du titre
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 		}
200 200
         
201 201
 		
202
-        if ($action == 'LINEBILL_INSERT' && $object->special_code != TSubtotal::$module_number)
202
+		if ($action == 'LINEBILL_INSERT' && $object->special_code != TSubtotal::$module_number)
203 203
 		{
204 204
 			$subtotal_add_title_bloc_from_orderstoinvoice = GETPOST('subtotal_add_title_bloc_from_orderstoinvoice');
205 205
 			if (!empty($subtotal_add_title_bloc_from_orderstoinvoice))
@@ -307,173 +307,173 @@  discard block
 block discarded – undo
307 307
 		}
308 308
 		
309 309
         
310
-        if ($action == 'USER_LOGIN') {
311
-            dol_syslog(
312
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
313
-            );
314
-        } elseif ($action == 'USER_UPDATE_SESSION') {
315
-            // Warning: To increase performances, this action is triggered only if
316
-            // constant MAIN_ACTIVATE_UPDATESESSIONTRIGGER is set to 1.
317
-            dol_syslog(
318
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
319
-            );
320
-        } elseif ($action == 'USER_CREATE') {
321
-            dol_syslog(
322
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
323
-            );
324
-        } elseif ($action == 'USER_CREATE_FROM_CONTACT') {
325
-            dol_syslog(
326
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
327
-            );
328
-        } elseif ($action == 'USER_MODIFY') {
329
-            dol_syslog(
330
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
331
-            );
332
-        } elseif ($action == 'USER_NEW_PASSWORD') {
333
-            dol_syslog(
334
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
335
-            );
336
-        } elseif ($action == 'USER_ENABLEDISABLE') {
337
-            dol_syslog(
338
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
339
-            );
340
-        } elseif ($action == 'USER_DELETE') {
341
-            dol_syslog(
342
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
343
-            );
344
-        } elseif ($action == 'USER_LOGOUT') {
345
-            dol_syslog(
346
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
347
-            );
348
-        } elseif ($action == 'USER_SETINGROUP') {
349
-            dol_syslog(
350
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
351
-            );
352
-        } elseif ($action == 'USER_REMOVEFROMGROUP') {
353
-            dol_syslog(
354
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
355
-            );
356
-        }
357
-
358
-        // Groups
359
-        elseif ($action == 'GROUP_CREATE') {
360
-            dol_syslog(
361
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
362
-            );
363
-        } elseif ($action == 'GROUP_MODIFY') {
364
-            dol_syslog(
365
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
366
-            );
367
-        } elseif ($action == 'GROUP_DELETE') {
368
-            dol_syslog(
369
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
370
-            );
371
-        }
372
-
373
-        // Companies
374
-        elseif ($action == 'COMPANY_CREATE') {
375
-            dol_syslog(
376
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
377
-            );
378
-        } elseif ($action == 'COMPANY_MODIFY') {
379
-            dol_syslog(
380
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
381
-            );
382
-        } elseif ($action == 'COMPANY_DELETE') {
383
-            dol_syslog(
384
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
385
-            );
386
-        }
387
-
388
-        // Contacts
389
-        elseif ($action == 'CONTACT_CREATE') {
390
-            dol_syslog(
391
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
392
-            );
393
-        } elseif ($action == 'CONTACT_MODIFY') {
394
-            dol_syslog(
395
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
396
-            );
397
-        } elseif ($action == 'CONTACT_DELETE') {
398
-            dol_syslog(
399
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
400
-            );
401
-        }
402
-
403
-        // Products
404
-        elseif ($action == 'PRODUCT_CREATE') {
405
-            dol_syslog(
406
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
407
-            );
408
-        } elseif ($action == 'PRODUCT_MODIFY') {
409
-            dol_syslog(
410
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
411
-            );
412
-        } elseif ($action == 'PRODUCT_DELETE') {
413
-            dol_syslog(
414
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
415
-            );
416
-        }
417
-
418
-        // Customer orders
419
-        elseif ($action == 'ORDER_CREATE') {
420
-            dol_syslog(
421
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
422
-            );
423
-        } elseif ($action == 'ORDER_VALIDATE') {
424
-            dol_syslog(
425
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
426
-            );
427
-        } elseif ($action == 'ORDER_DELETE') {
428
-            dol_syslog(
429
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
430
-            );
431
-        } elseif ($action == 'ORDER_BUILDDOC') {
432
-            dol_syslog(
433
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
434
-            );
435
-        } elseif ($action == 'ORDER_SENTBYMAIL') {
436
-            dol_syslog(
437
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
438
-            );
439
-        } elseif ($action == 'LINEORDER_INSERT') {
440
-            dol_syslog(
441
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
442
-            );
443
-        } elseif ($action == 'LINEORDER_DELETE') {
444
-            dol_syslog(
445
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
446
-            );
447
-        }
448
-
449
-        // Supplier orders
450
-        elseif ($action == 'ORDER_SUPPLIER_CREATE') {
451
-            dol_syslog(
452
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
453
-            );
454
-        } elseif ($action == 'ORDER_SUPPLIER_VALIDATE') {
455
-            dol_syslog(
456
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
457
-            );
458
-        } elseif ($action == 'ORDER_SUPPLIER_SENTBYMAIL') {
459
-            dol_syslog(
460
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
461
-            );
462
-        } elseif ($action == 'SUPPLIER_ORDER_BUILDDOC') {
463
-            dol_syslog(
464
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
465
-            );
466
-        }
467
-
468
-        // Proposals
469
-        elseif ($action == 'PROPAL_CREATE') {
470
-            dol_syslog(
471
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
472
-            );
473
-        } elseif (in_array($action, array('PROPAL_CLONE', 'ORDER_CLONE', 'BILL_CLONE'))) {
474
-            dol_syslog(
475
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
476
-            );
310
+		if ($action == 'USER_LOGIN') {
311
+			dol_syslog(
312
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
313
+			);
314
+		} elseif ($action == 'USER_UPDATE_SESSION') {
315
+			// Warning: To increase performances, this action is triggered only if
316
+			// constant MAIN_ACTIVATE_UPDATESESSIONTRIGGER is set to 1.
317
+			dol_syslog(
318
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
319
+			);
320
+		} elseif ($action == 'USER_CREATE') {
321
+			dol_syslog(
322
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
323
+			);
324
+		} elseif ($action == 'USER_CREATE_FROM_CONTACT') {
325
+			dol_syslog(
326
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
327
+			);
328
+		} elseif ($action == 'USER_MODIFY') {
329
+			dol_syslog(
330
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
331
+			);
332
+		} elseif ($action == 'USER_NEW_PASSWORD') {
333
+			dol_syslog(
334
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
335
+			);
336
+		} elseif ($action == 'USER_ENABLEDISABLE') {
337
+			dol_syslog(
338
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
339
+			);
340
+		} elseif ($action == 'USER_DELETE') {
341
+			dol_syslog(
342
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
343
+			);
344
+		} elseif ($action == 'USER_LOGOUT') {
345
+			dol_syslog(
346
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
347
+			);
348
+		} elseif ($action == 'USER_SETINGROUP') {
349
+			dol_syslog(
350
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
351
+			);
352
+		} elseif ($action == 'USER_REMOVEFROMGROUP') {
353
+			dol_syslog(
354
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
355
+			);
356
+		}
357
+
358
+		// Groups
359
+		elseif ($action == 'GROUP_CREATE') {
360
+			dol_syslog(
361
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
362
+			);
363
+		} elseif ($action == 'GROUP_MODIFY') {
364
+			dol_syslog(
365
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
366
+			);
367
+		} elseif ($action == 'GROUP_DELETE') {
368
+			dol_syslog(
369
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
370
+			);
371
+		}
372
+
373
+		// Companies
374
+		elseif ($action == 'COMPANY_CREATE') {
375
+			dol_syslog(
376
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
377
+			);
378
+		} elseif ($action == 'COMPANY_MODIFY') {
379
+			dol_syslog(
380
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
381
+			);
382
+		} elseif ($action == 'COMPANY_DELETE') {
383
+			dol_syslog(
384
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
385
+			);
386
+		}
387
+
388
+		// Contacts
389
+		elseif ($action == 'CONTACT_CREATE') {
390
+			dol_syslog(
391
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
392
+			);
393
+		} elseif ($action == 'CONTACT_MODIFY') {
394
+			dol_syslog(
395
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
396
+			);
397
+		} elseif ($action == 'CONTACT_DELETE') {
398
+			dol_syslog(
399
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
400
+			);
401
+		}
402
+
403
+		// Products
404
+		elseif ($action == 'PRODUCT_CREATE') {
405
+			dol_syslog(
406
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
407
+			);
408
+		} elseif ($action == 'PRODUCT_MODIFY') {
409
+			dol_syslog(
410
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
411
+			);
412
+		} elseif ($action == 'PRODUCT_DELETE') {
413
+			dol_syslog(
414
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
415
+			);
416
+		}
417
+
418
+		// Customer orders
419
+		elseif ($action == 'ORDER_CREATE') {
420
+			dol_syslog(
421
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
422
+			);
423
+		} elseif ($action == 'ORDER_VALIDATE') {
424
+			dol_syslog(
425
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
426
+			);
427
+		} elseif ($action == 'ORDER_DELETE') {
428
+			dol_syslog(
429
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
430
+			);
431
+		} elseif ($action == 'ORDER_BUILDDOC') {
432
+			dol_syslog(
433
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
434
+			);
435
+		} elseif ($action == 'ORDER_SENTBYMAIL') {
436
+			dol_syslog(
437
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
438
+			);
439
+		} elseif ($action == 'LINEORDER_INSERT') {
440
+			dol_syslog(
441
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
442
+			);
443
+		} elseif ($action == 'LINEORDER_DELETE') {
444
+			dol_syslog(
445
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
446
+			);
447
+		}
448
+
449
+		// Supplier orders
450
+		elseif ($action == 'ORDER_SUPPLIER_CREATE') {
451
+			dol_syslog(
452
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
453
+			);
454
+		} elseif ($action == 'ORDER_SUPPLIER_VALIDATE') {
455
+			dol_syslog(
456
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
457
+			);
458
+		} elseif ($action == 'ORDER_SUPPLIER_SENTBYMAIL') {
459
+			dol_syslog(
460
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
461
+			);
462
+		} elseif ($action == 'SUPPLIER_ORDER_BUILDDOC') {
463
+			dol_syslog(
464
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
465
+			);
466
+		}
467
+
468
+		// Proposals
469
+		elseif ($action == 'PROPAL_CREATE') {
470
+			dol_syslog(
471
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
472
+			);
473
+		} elseif (in_array($action, array('PROPAL_CLONE', 'ORDER_CLONE', 'BILL_CLONE'))) {
474
+			dol_syslog(
475
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
476
+			);
477 477
 			
478 478
 			$doli_action = GETPOST('action');
479 479
 
@@ -506,277 +506,277 @@  discard block
 block discarded – undo
506 506
 				if (!empty($line)) $object->update_price(1);
507 507
 			}
508 508
 			
509
-        } elseif ($action == 'PROPAL_MODIFY') {
510
-            dol_syslog(
511
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
512
-            );
513
-        } elseif ($action == 'PROPAL_VALIDATE') {
514
-            dol_syslog(
515
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
516
-            );
517
-        } elseif ($action == 'PROPAL_BUILDDOC') {
518
-            dol_syslog(
519
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
520
-            );
521
-        } elseif ($action == 'PROPAL_SENTBYMAIL') {
522
-            dol_syslog(
523
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
524
-            );
525
-        } elseif ($action == 'PROPAL_CLOSE_SIGNED') {
526
-            dol_syslog(
527
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
528
-            );
529
-        } elseif ($action == 'PROPAL_CLOSE_REFUSED') {
530
-            dol_syslog(
531
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
532
-            );
533
-        } elseif ($action == 'PROPAL_DELETE') {
534
-            dol_syslog(
535
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
536
-            );
537
-        } elseif ($action == 'LINEPROPAL_INSERT') {
538
-            dol_syslog(
539
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
540
-            );
541
-        } elseif ($action == 'LINEPROPAL_MODIFY') {
542
-            dol_syslog(
543
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
544
-            );
545
-        } elseif ($action == 'LINEPROPAL_DELETE') {
546
-            dol_syslog(
547
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
548
-            );
549
-        }
550
-
551
-        // Contracts
552
-        elseif ($action == 'CONTRACT_CREATE') {
553
-            dol_syslog(
554
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
555
-            );
556
-        } elseif ($action == 'CONTRACT_MODIFY') {
557
-            dol_syslog(
558
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
559
-            );
560
-        } elseif ($action == 'CONTRACT_ACTIVATE') {
561
-            dol_syslog(
562
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
563
-            );
564
-        } elseif ($action == 'CONTRACT_CANCEL') {
565
-            dol_syslog(
566
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
567
-            );
568
-        } elseif ($action == 'CONTRACT_CLOSE') {
569
-            dol_syslog(
570
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
571
-            );
572
-        } elseif ($action == 'CONTRACT_DELETE') {
573
-            dol_syslog(
574
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
575
-            );
576
-        }
509
+		} elseif ($action == 'PROPAL_MODIFY') {
510
+			dol_syslog(
511
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
512
+			);
513
+		} elseif ($action == 'PROPAL_VALIDATE') {
514
+			dol_syslog(
515
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
516
+			);
517
+		} elseif ($action == 'PROPAL_BUILDDOC') {
518
+			dol_syslog(
519
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
520
+			);
521
+		} elseif ($action == 'PROPAL_SENTBYMAIL') {
522
+			dol_syslog(
523
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
524
+			);
525
+		} elseif ($action == 'PROPAL_CLOSE_SIGNED') {
526
+			dol_syslog(
527
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
528
+			);
529
+		} elseif ($action == 'PROPAL_CLOSE_REFUSED') {
530
+			dol_syslog(
531
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
532
+			);
533
+		} elseif ($action == 'PROPAL_DELETE') {
534
+			dol_syslog(
535
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
536
+			);
537
+		} elseif ($action == 'LINEPROPAL_INSERT') {
538
+			dol_syslog(
539
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
540
+			);
541
+		} elseif ($action == 'LINEPROPAL_MODIFY') {
542
+			dol_syslog(
543
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
544
+			);
545
+		} elseif ($action == 'LINEPROPAL_DELETE') {
546
+			dol_syslog(
547
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
548
+			);
549
+		}
550
+
551
+		// Contracts
552
+		elseif ($action == 'CONTRACT_CREATE') {
553
+			dol_syslog(
554
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
555
+			);
556
+		} elseif ($action == 'CONTRACT_MODIFY') {
557
+			dol_syslog(
558
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
559
+			);
560
+		} elseif ($action == 'CONTRACT_ACTIVATE') {
561
+			dol_syslog(
562
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
563
+			);
564
+		} elseif ($action == 'CONTRACT_CANCEL') {
565
+			dol_syslog(
566
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
567
+			);
568
+		} elseif ($action == 'CONTRACT_CLOSE') {
569
+			dol_syslog(
570
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
571
+			);
572
+		} elseif ($action == 'CONTRACT_DELETE') {
573
+			dol_syslog(
574
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
575
+			);
576
+		}
577 577
 
578 578
 		elseif ($action == 'BILL_MODIFY') {
579
-            dol_syslog(
580
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
581
-            );
582
-        } elseif ($action == 'BILL_VALIDATE') {
583
-            dol_syslog(
584
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
585
-            );
586
-        } elseif ($action == 'BILL_BUILDDOC') {
587
-            dol_syslog(
588
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
589
-            );
590
-        } elseif ($action == 'BILL_SENTBYMAIL') {
591
-            dol_syslog(
592
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
593
-            );
594
-        } elseif ($action == 'BILL_CANCEL') {
595
-            dol_syslog(
596
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
597
-            );
598
-        } elseif ($action == 'BILL_DELETE') {
599
-            dol_syslog(
600
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
601
-            );
602
-        } elseif ($action == 'LINEBILL_INSERT') {
579
+			dol_syslog(
580
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
581
+			);
582
+		} elseif ($action == 'BILL_VALIDATE') {
583
+			dol_syslog(
584
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
585
+			);
586
+		} elseif ($action == 'BILL_BUILDDOC') {
587
+			dol_syslog(
588
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
589
+			);
590
+		} elseif ($action == 'BILL_SENTBYMAIL') {
591
+			dol_syslog(
592
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
593
+			);
594
+		} elseif ($action == 'BILL_CANCEL') {
595
+			dol_syslog(
596
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
597
+			);
598
+		} elseif ($action == 'BILL_DELETE') {
599
+			dol_syslog(
600
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
601
+			);
602
+		} elseif ($action == 'LINEBILL_INSERT') {
603 603
 				
604
-        	dol_syslog(
605
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
606
-            );
607
-        } elseif ($action == 'LINEBILL_DELETE') {
608
-            dol_syslog(
609
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
610
-            );
611
-        }
612
-
613
-        // Payments
614
-        elseif ($action == 'PAYMENT_CUSTOMER_CREATE') {
615
-            dol_syslog(
616
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
617
-            );
618
-        } elseif ($action == 'PAYMENT_SUPPLIER_CREATE') {
619
-            dol_syslog(
620
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
621
-            );
622
-        } elseif ($action == 'PAYMENT_ADD_TO_BANK') {
623
-            dol_syslog(
624
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
625
-            );
626
-        } elseif ($action == 'PAYMENT_DELETE') {
627
-            dol_syslog(
628
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
629
-            );
630
-        }
631
-
632
-        // Interventions
633
-        elseif ($action == 'FICHEINTER_CREATE') {
634
-            dol_syslog(
635
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
636
-            );
637
-        } elseif ($action == 'FICHEINTER_MODIFY') {
638
-            dol_syslog(
639
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
640
-            );
641
-        } elseif ($action == 'FICHEINTER_VALIDATE') {
642
-            dol_syslog(
643
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
644
-            );
645
-        } elseif ($action == 'FICHEINTER_DELETE') {
646
-            dol_syslog(
647
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
648
-            );
649
-        }
650
-
651
-        // Members
652
-        elseif ($action == 'MEMBER_CREATE') {
653
-            dol_syslog(
654
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
655
-            );
656
-        } elseif ($action == 'MEMBER_VALIDATE') {
657
-            dol_syslog(
658
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
659
-            );
660
-        } elseif ($action == 'MEMBER_SUBSCRIPTION') {
661
-            dol_syslog(
662
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
663
-            );
664
-        } elseif ($action == 'MEMBER_MODIFY') {
665
-            dol_syslog(
666
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
667
-            );
668
-        } elseif ($action == 'MEMBER_NEW_PASSWORD') {
669
-            dol_syslog(
670
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
671
-            );
672
-        } elseif ($action == 'MEMBER_RESILIATE') {
673
-            dol_syslog(
674
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
675
-            );
676
-        } elseif ($action == 'MEMBER_DELETE') {
677
-            dol_syslog(
678
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
679
-            );
680
-        }
681
-
682
-        // Categories
683
-        elseif ($action == 'CATEGORY_CREATE') {
684
-            dol_syslog(
685
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
686
-            );
687
-        } elseif ($action == 'CATEGORY_MODIFY') {
688
-            dol_syslog(
689
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
690
-            );
691
-        } elseif ($action == 'CATEGORY_DELETE') {
692
-            dol_syslog(
693
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
694
-            );
695
-        }
696
-
697
-        // Projects
698
-        elseif ($action == 'PROJECT_CREATE') {
699
-            dol_syslog(
700
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
701
-            );
702
-        } elseif ($action == 'PROJECT_MODIFY') {
703
-            dol_syslog(
704
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
705
-            );
706
-        } elseif ($action == 'PROJECT_DELETE') {
707
-            dol_syslog(
708
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
709
-            );
710
-        }
711
-
712
-        // Project tasks
713
-        elseif ($action == 'TASK_CREATE') {
714
-            dol_syslog(
715
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
716
-            );
717
-        } elseif ($action == 'TASK_MODIFY') {
718
-            dol_syslog(
719
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
720
-            );
721
-        } elseif ($action == 'TASK_DELETE') {
722
-            dol_syslog(
723
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
724
-            );
725
-        }
726
-
727
-        // Task time spent
728
-        elseif ($action == 'TASK_TIMESPENT_CREATE') {
729
-            dol_syslog(
730
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
731
-            );
732
-        } elseif ($action == 'TASK_TIMESPENT_MODIFY') {
733
-            dol_syslog(
734
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
735
-            );
736
-        } elseif ($action == 'TASK_TIMESPENT_DELETE') {
737
-            dol_syslog(
738
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
739
-            );
740
-        }
741
-
742
-        // Shipping
743
-        elseif ($action == 'SHIPPING_CREATE') {
744
-            dol_syslog(
745
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
746
-            );
747
-        } elseif ($action == 'SHIPPING_MODIFY') {
748
-            dol_syslog(
749
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
750
-            );
751
-        } elseif ($action == 'SHIPPING_VALIDATE') {
752
-            dol_syslog(
753
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
754
-            );
755
-        } elseif ($action == 'SHIPPING_SENTBYMAIL') {
756
-            dol_syslog(
757
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
758
-            );
759
-        } elseif ($action == 'SHIPPING_DELETE') {
760
-            dol_syslog(
761
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
762
-            );
763
-        } elseif ($action == 'SHIPPING_BUILDDOC') {
764
-            dol_syslog(
765
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
766
-            );
767
-        }
768
-
769
-        // File
770
-        elseif ($action == 'FILE_UPLOAD') {
771
-            dol_syslog(
772
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
773
-            );
774
-        } elseif ($action == 'FILE_DELETE') {
775
-            dol_syslog(
776
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
777
-            );
778
-        }
779
-
780
-        return 0;
781
-    }
604
+			dol_syslog(
605
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
606
+			);
607
+		} elseif ($action == 'LINEBILL_DELETE') {
608
+			dol_syslog(
609
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
610
+			);
611
+		}
612
+
613
+		// Payments
614
+		elseif ($action == 'PAYMENT_CUSTOMER_CREATE') {
615
+			dol_syslog(
616
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
617
+			);
618
+		} elseif ($action == 'PAYMENT_SUPPLIER_CREATE') {
619
+			dol_syslog(
620
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
621
+			);
622
+		} elseif ($action == 'PAYMENT_ADD_TO_BANK') {
623
+			dol_syslog(
624
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
625
+			);
626
+		} elseif ($action == 'PAYMENT_DELETE') {
627
+			dol_syslog(
628
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
629
+			);
630
+		}
631
+
632
+		// Interventions
633
+		elseif ($action == 'FICHEINTER_CREATE') {
634
+			dol_syslog(
635
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
636
+			);
637
+		} elseif ($action == 'FICHEINTER_MODIFY') {
638
+			dol_syslog(
639
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
640
+			);
641
+		} elseif ($action == 'FICHEINTER_VALIDATE') {
642
+			dol_syslog(
643
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
644
+			);
645
+		} elseif ($action == 'FICHEINTER_DELETE') {
646
+			dol_syslog(
647
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
648
+			);
649
+		}
650
+
651
+		// Members
652
+		elseif ($action == 'MEMBER_CREATE') {
653
+			dol_syslog(
654
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
655
+			);
656
+		} elseif ($action == 'MEMBER_VALIDATE') {
657
+			dol_syslog(
658
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
659
+			);
660
+		} elseif ($action == 'MEMBER_SUBSCRIPTION') {
661
+			dol_syslog(
662
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
663
+			);
664
+		} elseif ($action == 'MEMBER_MODIFY') {
665
+			dol_syslog(
666
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
667
+			);
668
+		} elseif ($action == 'MEMBER_NEW_PASSWORD') {
669
+			dol_syslog(
670
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
671
+			);
672
+		} elseif ($action == 'MEMBER_RESILIATE') {
673
+			dol_syslog(
674
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
675
+			);
676
+		} elseif ($action == 'MEMBER_DELETE') {
677
+			dol_syslog(
678
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
679
+			);
680
+		}
681
+
682
+		// Categories
683
+		elseif ($action == 'CATEGORY_CREATE') {
684
+			dol_syslog(
685
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
686
+			);
687
+		} elseif ($action == 'CATEGORY_MODIFY') {
688
+			dol_syslog(
689
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
690
+			);
691
+		} elseif ($action == 'CATEGORY_DELETE') {
692
+			dol_syslog(
693
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
694
+			);
695
+		}
696
+
697
+		// Projects
698
+		elseif ($action == 'PROJECT_CREATE') {
699
+			dol_syslog(
700
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
701
+			);
702
+		} elseif ($action == 'PROJECT_MODIFY') {
703
+			dol_syslog(
704
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
705
+			);
706
+		} elseif ($action == 'PROJECT_DELETE') {
707
+			dol_syslog(
708
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
709
+			);
710
+		}
711
+
712
+		// Project tasks
713
+		elseif ($action == 'TASK_CREATE') {
714
+			dol_syslog(
715
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
716
+			);
717
+		} elseif ($action == 'TASK_MODIFY') {
718
+			dol_syslog(
719
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
720
+			);
721
+		} elseif ($action == 'TASK_DELETE') {
722
+			dol_syslog(
723
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
724
+			);
725
+		}
726
+
727
+		// Task time spent
728
+		elseif ($action == 'TASK_TIMESPENT_CREATE') {
729
+			dol_syslog(
730
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
731
+			);
732
+		} elseif ($action == 'TASK_TIMESPENT_MODIFY') {
733
+			dol_syslog(
734
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
735
+			);
736
+		} elseif ($action == 'TASK_TIMESPENT_DELETE') {
737
+			dol_syslog(
738
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
739
+			);
740
+		}
741
+
742
+		// Shipping
743
+		elseif ($action == 'SHIPPING_CREATE') {
744
+			dol_syslog(
745
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
746
+			);
747
+		} elseif ($action == 'SHIPPING_MODIFY') {
748
+			dol_syslog(
749
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
750
+			);
751
+		} elseif ($action == 'SHIPPING_VALIDATE') {
752
+			dol_syslog(
753
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
754
+			);
755
+		} elseif ($action == 'SHIPPING_SENTBYMAIL') {
756
+			dol_syslog(
757
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
758
+			);
759
+		} elseif ($action == 'SHIPPING_DELETE') {
760
+			dol_syslog(
761
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
762
+			);
763
+		} elseif ($action == 'SHIPPING_BUILDDOC') {
764
+			dol_syslog(
765
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
766
+			);
767
+		}
768
+
769
+		// File
770
+		elseif ($action == 'FILE_UPLOAD') {
771
+			dol_syslog(
772
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
773
+			);
774
+		} elseif ($action == 'FILE_DELETE') {
775
+			dol_syslog(
776
+				"Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
777
+			);
778
+		}
779
+
780
+		return 0;
781
+	}
782 782
 }
783 783
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -107,13 +107,13 @@  discard block
 block discarded – undo
107 107
 			if ($object->id != $line->id && $line->rang > $rang)
108 108
 			{
109 109
 				// Update du rang de toutes les lignes suivant mon titre
110
-				$parent->updateRangOfLine($line->id, $line->rang+1);
110
+				$parent->updateRangOfLine($line->id, $line->rang + 1);
111 111
 			}
112 112
 		}
113 113
 		
114 114
 		// Update du rang de la ligne fraichement ajouté pour la déplacer sous mon titre
115
-		$parent->updateRangOfLine($object->id, $rang+1);
116
-		$object->rang = $rang+1;
115
+		$parent->updateRangOfLine($object->id, $rang + 1);
116
+		$object->rang = $rang + 1;
117 117
 	}
118 118
 	
119 119
 	public function addToEnd(&$parent, &$object, $rang)
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 			
137 137
 			if ($subtotal_line_found)
138 138
 			{
139
-				$parent->updateRangOfLine($line->id, $line->rang+1);
139
+				$parent->updateRangOfLine($line->id, $line->rang + 1);
140 140
 			}
141 141
 		}
142 142
 		
@@ -257,10 +257,10 @@  discard block
 block discarded – undo
257 257
 		{
258 258
 			$doli_action = GETPOST('action');
259 259
 			$set = GETPOST('set');
260
-			if ( (in_array($doli_action, array('updateligne', 'updateline', 'addline', 'add')) || $set == 'defaultTVA') && !TSubtotal::isTitle($object) && !TSubtotal::isSubtotal($object) && in_array($object->element, array('propaldet', 'commandedet', 'facturedet')))
260
+			if ((in_array($doli_action, array('updateligne', 'updateline', 'addline', 'add')) || $set == 'defaultTVA') && !TSubtotal::isTitle($object) && !TSubtotal::isSubtotal($object) && in_array($object->element, array('propaldet', 'commandedet', 'facturedet')))
261 261
 			{
262 262
 				 dol_syslog(
263
-					"[SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS] Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". object=".$object->element." id=" . $object->id
263
+					"[SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS] Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". object=".$object->element." id=".$object->id
264 264
 				);
265 265
 				 
266 266
 				$TTitle = TSubtotal::getAllTitleFromLine($object);
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 				}
281 281
 
282 282
 				// $object correspond à la ligne ajoutée
283
-				if(! empty($object->array_options['options_subtotal_nc'])) {
283
+				if (!empty($object->array_options['options_subtotal_nc'])) {
284 284
 					$object->total_ht = $object->total_tva = $object->total_ttc = $object->total_localtax1 = $object->total_localtax2 = 
285 285
 							$object->multicurrency_total_ht = $object->multicurrency_total_tva = $object->multicurrency_total_ttc = 0;
286 286
 
@@ -294,12 +294,12 @@  discard block
 block discarded – undo
294 294
 		
295 295
 		// Les lignes libres (y compris les sous-totaux) créées à partir d'une facture modèle n'ont pas la TVA de la ligne du modèle mais la TVA par défaut
296 296
 		if ($action == 'BILL_CREATE' && $object->fac_rec > 0) {
297
-			dol_syslog("Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id);
297
+			dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id);
298 298
 
299 299
 			$object->fetch_lines(); // Lignes pas rajoutées à $object->lines par les appels à addline();
300 300
 
301
-			foreach($object->lines as &$line) {
302
-				if(TSubtotal::isSubtotal($line) && ! empty($line->tva_tx)) {
301
+			foreach ($object->lines as &$line) {
302
+				if (TSubtotal::isSubtotal($line) && !empty($line->tva_tx)) {
303 303
 					$line->tva_tx = 0;
304 304
 					$line->update();
305 305
 				}
@@ -309,170 +309,170 @@  discard block
 block discarded – undo
309 309
         
310 310
         if ($action == 'USER_LOGIN') {
311 311
             dol_syslog(
312
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
312
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
313 313
             );
314 314
         } elseif ($action == 'USER_UPDATE_SESSION') {
315 315
             // Warning: To increase performances, this action is triggered only if
316 316
             // constant MAIN_ACTIVATE_UPDATESESSIONTRIGGER is set to 1.
317 317
             dol_syslog(
318
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
318
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
319 319
             );
320 320
         } elseif ($action == 'USER_CREATE') {
321 321
             dol_syslog(
322
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
322
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
323 323
             );
324 324
         } elseif ($action == 'USER_CREATE_FROM_CONTACT') {
325 325
             dol_syslog(
326
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
326
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
327 327
             );
328 328
         } elseif ($action == 'USER_MODIFY') {
329 329
             dol_syslog(
330
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
330
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
331 331
             );
332 332
         } elseif ($action == 'USER_NEW_PASSWORD') {
333 333
             dol_syslog(
334
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
334
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
335 335
             );
336 336
         } elseif ($action == 'USER_ENABLEDISABLE') {
337 337
             dol_syslog(
338
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
338
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
339 339
             );
340 340
         } elseif ($action == 'USER_DELETE') {
341 341
             dol_syslog(
342
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
342
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
343 343
             );
344 344
         } elseif ($action == 'USER_LOGOUT') {
345 345
             dol_syslog(
346
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
346
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
347 347
             );
348 348
         } elseif ($action == 'USER_SETINGROUP') {
349 349
             dol_syslog(
350
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
350
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
351 351
             );
352 352
         } elseif ($action == 'USER_REMOVEFROMGROUP') {
353 353
             dol_syslog(
354
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
354
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
355 355
             );
356 356
         }
357 357
 
358 358
         // Groups
359 359
         elseif ($action == 'GROUP_CREATE') {
360 360
             dol_syslog(
361
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
361
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
362 362
             );
363 363
         } elseif ($action == 'GROUP_MODIFY') {
364 364
             dol_syslog(
365
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
365
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
366 366
             );
367 367
         } elseif ($action == 'GROUP_DELETE') {
368 368
             dol_syslog(
369
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
369
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
370 370
             );
371 371
         }
372 372
 
373 373
         // Companies
374 374
         elseif ($action == 'COMPANY_CREATE') {
375 375
             dol_syslog(
376
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
376
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
377 377
             );
378 378
         } elseif ($action == 'COMPANY_MODIFY') {
379 379
             dol_syslog(
380
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
380
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
381 381
             );
382 382
         } elseif ($action == 'COMPANY_DELETE') {
383 383
             dol_syslog(
384
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
384
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
385 385
             );
386 386
         }
387 387
 
388 388
         // Contacts
389 389
         elseif ($action == 'CONTACT_CREATE') {
390 390
             dol_syslog(
391
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
391
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
392 392
             );
393 393
         } elseif ($action == 'CONTACT_MODIFY') {
394 394
             dol_syslog(
395
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
395
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
396 396
             );
397 397
         } elseif ($action == 'CONTACT_DELETE') {
398 398
             dol_syslog(
399
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
399
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
400 400
             );
401 401
         }
402 402
 
403 403
         // Products
404 404
         elseif ($action == 'PRODUCT_CREATE') {
405 405
             dol_syslog(
406
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
406
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
407 407
             );
408 408
         } elseif ($action == 'PRODUCT_MODIFY') {
409 409
             dol_syslog(
410
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
410
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
411 411
             );
412 412
         } elseif ($action == 'PRODUCT_DELETE') {
413 413
             dol_syslog(
414
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
414
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
415 415
             );
416 416
         }
417 417
 
418 418
         // Customer orders
419 419
         elseif ($action == 'ORDER_CREATE') {
420 420
             dol_syslog(
421
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
421
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
422 422
             );
423 423
         } elseif ($action == 'ORDER_VALIDATE') {
424 424
             dol_syslog(
425
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
425
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
426 426
             );
427 427
         } elseif ($action == 'ORDER_DELETE') {
428 428
             dol_syslog(
429
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
429
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
430 430
             );
431 431
         } elseif ($action == 'ORDER_BUILDDOC') {
432 432
             dol_syslog(
433
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
433
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
434 434
             );
435 435
         } elseif ($action == 'ORDER_SENTBYMAIL') {
436 436
             dol_syslog(
437
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
437
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
438 438
             );
439 439
         } elseif ($action == 'LINEORDER_INSERT') {
440 440
             dol_syslog(
441
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
441
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
442 442
             );
443 443
         } elseif ($action == 'LINEORDER_DELETE') {
444 444
             dol_syslog(
445
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
445
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
446 446
             );
447 447
         }
448 448
 
449 449
         // Supplier orders
450 450
         elseif ($action == 'ORDER_SUPPLIER_CREATE') {
451 451
             dol_syslog(
452
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
452
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
453 453
             );
454 454
         } elseif ($action == 'ORDER_SUPPLIER_VALIDATE') {
455 455
             dol_syslog(
456
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
456
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
457 457
             );
458 458
         } elseif ($action == 'ORDER_SUPPLIER_SENTBYMAIL') {
459 459
             dol_syslog(
460
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
460
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
461 461
             );
462 462
         } elseif ($action == 'SUPPLIER_ORDER_BUILDDOC') {
463 463
             dol_syslog(
464
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
464
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
465 465
             );
466 466
         }
467 467
 
468 468
         // Proposals
469 469
         elseif ($action == 'PROPAL_CREATE') {
470 470
             dol_syslog(
471
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
471
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
472 472
             );
473 473
         } elseif (in_array($action, array('PROPAL_CLONE', 'ORDER_CLONE', 'BILL_CLONE'))) {
474 474
             dol_syslog(
475
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
475
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
476 476
             );
477 477
 			
478 478
 			$doli_action = GETPOST('action');
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
 			if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && in_array($doli_action, array('confirm_clone')))
481 481
 			{
482 482
 				dol_syslog(
483
-					"[SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS] Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". object=".$object->element." id=" . $object->id
483
+					"[SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS] Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". object=".$object->element." id=".$object->id
484 484
 				);
485 485
 				
486 486
 				// En fonction de l'objet et de la version, les lignes conservent l'id de l'objet d'origine
@@ -508,272 +508,272 @@  discard block
 block discarded – undo
508 508
 			
509 509
         } elseif ($action == 'PROPAL_MODIFY') {
510 510
             dol_syslog(
511
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
511
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
512 512
             );
513 513
         } elseif ($action == 'PROPAL_VALIDATE') {
514 514
             dol_syslog(
515
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
515
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
516 516
             );
517 517
         } elseif ($action == 'PROPAL_BUILDDOC') {
518 518
             dol_syslog(
519
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
519
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
520 520
             );
521 521
         } elseif ($action == 'PROPAL_SENTBYMAIL') {
522 522
             dol_syslog(
523
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
523
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
524 524
             );
525 525
         } elseif ($action == 'PROPAL_CLOSE_SIGNED') {
526 526
             dol_syslog(
527
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
527
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
528 528
             );
529 529
         } elseif ($action == 'PROPAL_CLOSE_REFUSED') {
530 530
             dol_syslog(
531
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
531
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
532 532
             );
533 533
         } elseif ($action == 'PROPAL_DELETE') {
534 534
             dol_syslog(
535
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
535
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
536 536
             );
537 537
         } elseif ($action == 'LINEPROPAL_INSERT') {
538 538
             dol_syslog(
539
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
539
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
540 540
             );
541 541
         } elseif ($action == 'LINEPROPAL_MODIFY') {
542 542
             dol_syslog(
543
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
543
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
544 544
             );
545 545
         } elseif ($action == 'LINEPROPAL_DELETE') {
546 546
             dol_syslog(
547
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
547
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
548 548
             );
549 549
         }
550 550
 
551 551
         // Contracts
552 552
         elseif ($action == 'CONTRACT_CREATE') {
553 553
             dol_syslog(
554
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
554
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
555 555
             );
556 556
         } elseif ($action == 'CONTRACT_MODIFY') {
557 557
             dol_syslog(
558
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
558
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
559 559
             );
560 560
         } elseif ($action == 'CONTRACT_ACTIVATE') {
561 561
             dol_syslog(
562
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
562
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
563 563
             );
564 564
         } elseif ($action == 'CONTRACT_CANCEL') {
565 565
             dol_syslog(
566
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
566
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
567 567
             );
568 568
         } elseif ($action == 'CONTRACT_CLOSE') {
569 569
             dol_syslog(
570
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
570
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
571 571
             );
572 572
         } elseif ($action == 'CONTRACT_DELETE') {
573 573
             dol_syslog(
574
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
574
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
575 575
             );
576 576
         }
577 577
 
578 578
 		elseif ($action == 'BILL_MODIFY') {
579 579
             dol_syslog(
580
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
580
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
581 581
             );
582 582
         } elseif ($action == 'BILL_VALIDATE') {
583 583
             dol_syslog(
584
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
584
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
585 585
             );
586 586
         } elseif ($action == 'BILL_BUILDDOC') {
587 587
             dol_syslog(
588
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
588
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
589 589
             );
590 590
         } elseif ($action == 'BILL_SENTBYMAIL') {
591 591
             dol_syslog(
592
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
592
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
593 593
             );
594 594
         } elseif ($action == 'BILL_CANCEL') {
595 595
             dol_syslog(
596
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
596
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
597 597
             );
598 598
         } elseif ($action == 'BILL_DELETE') {
599 599
             dol_syslog(
600
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
600
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
601 601
             );
602 602
         } elseif ($action == 'LINEBILL_INSERT') {
603 603
 				
604 604
         	dol_syslog(
605
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
605
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
606 606
             );
607 607
         } elseif ($action == 'LINEBILL_DELETE') {
608 608
             dol_syslog(
609
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
609
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
610 610
             );
611 611
         }
612 612
 
613 613
         // Payments
614 614
         elseif ($action == 'PAYMENT_CUSTOMER_CREATE') {
615 615
             dol_syslog(
616
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
616
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
617 617
             );
618 618
         } elseif ($action == 'PAYMENT_SUPPLIER_CREATE') {
619 619
             dol_syslog(
620
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
620
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
621 621
             );
622 622
         } elseif ($action == 'PAYMENT_ADD_TO_BANK') {
623 623
             dol_syslog(
624
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
624
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
625 625
             );
626 626
         } elseif ($action == 'PAYMENT_DELETE') {
627 627
             dol_syslog(
628
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
628
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
629 629
             );
630 630
         }
631 631
 
632 632
         // Interventions
633 633
         elseif ($action == 'FICHEINTER_CREATE') {
634 634
             dol_syslog(
635
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
635
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
636 636
             );
637 637
         } elseif ($action == 'FICHEINTER_MODIFY') {
638 638
             dol_syslog(
639
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
639
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
640 640
             );
641 641
         } elseif ($action == 'FICHEINTER_VALIDATE') {
642 642
             dol_syslog(
643
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
643
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
644 644
             );
645 645
         } elseif ($action == 'FICHEINTER_DELETE') {
646 646
             dol_syslog(
647
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
647
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
648 648
             );
649 649
         }
650 650
 
651 651
         // Members
652 652
         elseif ($action == 'MEMBER_CREATE') {
653 653
             dol_syslog(
654
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
654
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
655 655
             );
656 656
         } elseif ($action == 'MEMBER_VALIDATE') {
657 657
             dol_syslog(
658
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
658
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
659 659
             );
660 660
         } elseif ($action == 'MEMBER_SUBSCRIPTION') {
661 661
             dol_syslog(
662
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
662
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
663 663
             );
664 664
         } elseif ($action == 'MEMBER_MODIFY') {
665 665
             dol_syslog(
666
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
666
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
667 667
             );
668 668
         } elseif ($action == 'MEMBER_NEW_PASSWORD') {
669 669
             dol_syslog(
670
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
670
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
671 671
             );
672 672
         } elseif ($action == 'MEMBER_RESILIATE') {
673 673
             dol_syslog(
674
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
674
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
675 675
             );
676 676
         } elseif ($action == 'MEMBER_DELETE') {
677 677
             dol_syslog(
678
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
678
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
679 679
             );
680 680
         }
681 681
 
682 682
         // Categories
683 683
         elseif ($action == 'CATEGORY_CREATE') {
684 684
             dol_syslog(
685
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
685
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
686 686
             );
687 687
         } elseif ($action == 'CATEGORY_MODIFY') {
688 688
             dol_syslog(
689
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
689
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
690 690
             );
691 691
         } elseif ($action == 'CATEGORY_DELETE') {
692 692
             dol_syslog(
693
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
693
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
694 694
             );
695 695
         }
696 696
 
697 697
         // Projects
698 698
         elseif ($action == 'PROJECT_CREATE') {
699 699
             dol_syslog(
700
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
700
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
701 701
             );
702 702
         } elseif ($action == 'PROJECT_MODIFY') {
703 703
             dol_syslog(
704
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
704
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
705 705
             );
706 706
         } elseif ($action == 'PROJECT_DELETE') {
707 707
             dol_syslog(
708
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
708
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
709 709
             );
710 710
         }
711 711
 
712 712
         // Project tasks
713 713
         elseif ($action == 'TASK_CREATE') {
714 714
             dol_syslog(
715
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
715
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
716 716
             );
717 717
         } elseif ($action == 'TASK_MODIFY') {
718 718
             dol_syslog(
719
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
719
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
720 720
             );
721 721
         } elseif ($action == 'TASK_DELETE') {
722 722
             dol_syslog(
723
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
723
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
724 724
             );
725 725
         }
726 726
 
727 727
         // Task time spent
728 728
         elseif ($action == 'TASK_TIMESPENT_CREATE') {
729 729
             dol_syslog(
730
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
730
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
731 731
             );
732 732
         } elseif ($action == 'TASK_TIMESPENT_MODIFY') {
733 733
             dol_syslog(
734
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
734
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
735 735
             );
736 736
         } elseif ($action == 'TASK_TIMESPENT_DELETE') {
737 737
             dol_syslog(
738
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
738
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
739 739
             );
740 740
         }
741 741
 
742 742
         // Shipping
743 743
         elseif ($action == 'SHIPPING_CREATE') {
744 744
             dol_syslog(
745
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
745
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
746 746
             );
747 747
         } elseif ($action == 'SHIPPING_MODIFY') {
748 748
             dol_syslog(
749
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
749
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
750 750
             );
751 751
         } elseif ($action == 'SHIPPING_VALIDATE') {
752 752
             dol_syslog(
753
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
753
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
754 754
             );
755 755
         } elseif ($action == 'SHIPPING_SENTBYMAIL') {
756 756
             dol_syslog(
757
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
757
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
758 758
             );
759 759
         } elseif ($action == 'SHIPPING_DELETE') {
760 760
             dol_syslog(
761
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
761
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
762 762
             );
763 763
         } elseif ($action == 'SHIPPING_BUILDDOC') {
764 764
             dol_syslog(
765
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
765
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
766 766
             );
767 767
         }
768 768
 
769 769
         // File
770 770
         elseif ($action == 'FILE_UPLOAD') {
771 771
             dol_syslog(
772
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
772
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
773 773
             );
774 774
         } elseif ($action == 'FILE_DELETE') {
775 775
             dol_syslog(
776
-                "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
776
+                "Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id
777 777
             );
778 778
         }
779 779
 
Please login to merge, or discard this patch.
Braces   +58 added lines, -27 removed lines patch added patch discarded remove patch
@@ -89,12 +89,14 @@  discard block
 block discarded – undo
89 89
 
90 90
         if ($this->version == 'development') {
91 91
             return $langs->trans("Development");
92
-        } elseif ($this->version == 'experimental')
93
-
92
+        } elseif ($this->version == 'experimental') {
93
+        
94 94
                 return $langs->trans("Experimental");
95
-        elseif ($this->version == 'dolibarr') return DOL_VERSION;
96
-        elseif ($this->version) return $this->version;
97
-        else {
95
+        } elseif ($this->version == 'dolibarr') {
96
+        	return DOL_VERSION;
97
+        } elseif ($this->version) {
98
+        	return $this->version;
99
+        } else {
98 100
             return $langs->trans("Unknown");
99 101
         }
100 102
     }
@@ -122,14 +124,18 @@  discard block
 block discarded – undo
122 124
 		$subtotal_line_found = false;
123 125
 		foreach ($parent->lines as $k => &$line)
124 126
 		{
125
-			if ($line->rang < $rang) continue;
126
-			elseif ($line->rang == $rang) // Je suis sur la ligne de titre où je souhaite ajouter ma nouvelle ligne en fin de bloc
127
+			if ($line->rang < $rang) {
128
+				continue;
129
+			} elseif ($line->rang == $rang) {
130
+				// Je suis sur la ligne de titre où je souhaite ajouter ma nouvelle ligne en fin de bloc
127 131
 			{
128 132
 				$title_level = $line->qty;
129 133
 			}
130
-			elseif (!$subtotal_line_found && $title_level > -1 && ($line->qty == 100 - $title_level)) // Le level de mon titre a été trouvé avant, donc maintenant je vais m'arrêter jusqu'à trouver un sous-total
134
+			} elseif (!$subtotal_line_found && $title_level > -1 && ($line->qty == 100 - $title_level)) {
135
+				// Le level de mon titre a été trouvé avant, donc maintenant je vais m'arrêter jusqu'à trouver un sous-total
131 136
 			{
132 137
 				$subtotal_line_found = true;
138
+			}
133 139
 				$rang = $line->rang;
134 140
 			}
135 141
 			
@@ -191,8 +197,11 @@  discard block
 block discarded – undo
191 197
 						break;
192 198
 				}
193 199
 				
194
-				if (!empty($conf->global->SUBTOTAL_ADD_LINE_UNDER_TITLE_AT_END_BLOCK)) $this->addToEnd($parent, $object, $rang);
195
-				else $this->addToBegin($parent, $object, $rang);
200
+				if (!empty($conf->global->SUBTOTAL_ADD_LINE_UNDER_TITLE_AT_END_BLOCK)) {
201
+					$this->addToEnd($parent, $object, $rang);
202
+				} else {
203
+					$this->addToBegin($parent, $object, $rang);
204
+				}
196 205
 				
197 206
 			}
198 207
 			
@@ -220,7 +229,9 @@  discard block
 block discarded – undo
220 229
 						$commande->fetch($current_fk_commande);
221 230
 						
222 231
 						$label = $conf->global->SUBTOTAL_TEXT_FOR_TITLE_ORDETSTOINVOICE;
223
-						if (empty($label)) $label = 'Commande [__REFORDER__] - Référence client : [__REFCUSTOMER__]';
232
+						if (empty($label)) {
233
+							$label = 'Commande [__REFORDER__] - Référence client : [__REFCUSTOMER__]';
234
+						}
224 235
 						$label = str_replace(array('__REFORDER__', '__REFCUSTOMER__'), array($commande->ref, $commande->ref_client), $label);
225 236
 						
226 237
 						TSubtotal::addTitle($facture, $label, 1, $rang);
@@ -271,10 +282,15 @@  discard block
 block discarded – undo
271 282
 						$object->total_ht = $object->total_tva = $object->total_ttc = $object->total_localtax1 = $object->total_localtax2 = 
272 283
 							$object->multicurrency_total_ht = $object->multicurrency_total_tva = $object->multicurrency_total_ttc = 0;
273 284
 
274
-						if ($object->element == 'propal') $res = $object->update(1);
275
-						else $res = $object->update($user, 1);
285
+						if ($object->element == 'propal') {
286
+							$res = $object->update(1);
287
+						} else {
288
+							$res = $object->update($user, 1);
289
+						}
276 290
 						
277
-						if ($res > 0) setEventMessage($langs->trans('subtotal_update_nc_success'));
291
+						if ($res > 0) {
292
+							setEventMessage($langs->trans('subtotal_update_nc_success'));
293
+						}
278 294
 						break;
279 295
 					}
280 296
 				}
@@ -284,10 +300,15 @@  discard block
 block discarded – undo
284 300
 					$object->total_ht = $object->total_tva = $object->total_ttc = $object->total_localtax1 = $object->total_localtax2 = 
285 301
 							$object->multicurrency_total_ht = $object->multicurrency_total_tva = $object->multicurrency_total_ttc = 0;
286 302
 
287
-					if ($object->element == 'propaldet') $res = $object->update(1);
288
-					else $res = $object->update($user, 1);
303
+					if ($object->element == 'propaldet') {
304
+						$res = $object->update(1);
305
+					} else {
306
+						$res = $object->update($user, 1);
307
+					}
289 308
 
290
-					if ($res > 0) setEventMessage($langs->trans('subtotal_update_nc_success'));
309
+					if ($res > 0) {
310
+						setEventMessage($langs->trans('subtotal_update_nc_success'));
311
+					}
291 312
 				}
292 313
 			}
293 314
 		}
@@ -484,26 +505,38 @@  discard block
 block discarded – undo
484 505
 				);
485 506
 				
486 507
 				// En fonction de l'objet et de la version, les lignes conservent l'id de l'objet d'origine
487
-				if (method_exists($object, 'fetch_lines')) $object->fetch_lines();
488
-				else $object->fetch($object->id);
508
+				if (method_exists($object, 'fetch_lines')) {
509
+					$object->fetch_lines();
510
+				} else {
511
+					$object->fetch($object->id);
512
+				}
489 513
 			
490 514
 				foreach ($object->lines as &$line)
491 515
 				{
492
-					if (empty($line->array_options)) $line->fetch_optionals();
516
+					if (empty($line->array_options)) {
517
+						$line->fetch_optionals();
518
+					}
493 519
 					
494 520
 					if (!TSubtotal::isModSubtotalLine($line) && !empty($line->array_options['options_subtotal_nc']))
495 521
 					{
496 522
 						$line->total_ht = $line->total_tva = $line->total_ttc = $line->total_localtax1 = $line->total_localtax2 = 
497 523
 							$line->multicurrency_total_ht = $line->multicurrency_total_tva = $line->multicurrency_total_ttc = 0;
498 524
 
499
-						if ($line->element == 'propaldet') $res = $line->update(1);
500
-						else $res = $line->update($user, 1);
525
+						if ($line->element == 'propaldet') {
526
+							$res = $line->update(1);
527
+						} else {
528
+							$res = $line->update($user, 1);
529
+						}
501 530
 						
502
-						if ($res > 0) setEventMessage($langs->trans('subtotal_update_nc_success'));
531
+						if ($res > 0) {
532
+							setEventMessage($langs->trans('subtotal_update_nc_success'));
533
+						}
503 534
 					}
504 535
 				}
505 536
 				
506
-				if (!empty($line)) $object->update_price(1);
537
+				if (!empty($line)) {
538
+					$object->update_price(1);
539
+				}
507 540
 			}
508 541
 			
509 542
         } elseif ($action == 'PROPAL_MODIFY') {
@@ -573,9 +606,7 @@  discard block
 block discarded – undo
573 606
             dol_syslog(
574 607
                 "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
575 608
             );
576
-        }
577
-
578
-		elseif ($action == 'BILL_MODIFY') {
609
+        } elseif ($action == 'BILL_MODIFY') {
579 610
             dol_syslog(
580 611
                 "Trigger '" . $this->name . "' for action '$action' launched by " . __FILE__ . ". id=" . $object->id
581 612
             );
Please login to merge, or discard this patch.
class/actions_subtotal.class.php 3 patches
Braces   +347 added lines, -211 removed lines patch added patch discarded remove patch
@@ -75,8 +75,11 @@  discard block
 block discarded – undo
75 75
 			if ($object->statut == 0  && $createRight) {
76 76
 			
77 77
 
78
-				if($object->element=='facture')$idvar = 'facid';
79
-				else $idvar='id';
78
+				if($object->element=='facture') {
79
+					$idvar = 'facid';
80
+				} else {
81
+					$idvar='id';
82
+				}
80 83
 				
81 84
 				if(in_array($action, array('add_title_line', 'add_total_line', 'add_subtitle_line', 'add_subtotal_line', 'add_free_text')) )
82 85
 				{
@@ -84,10 +87,11 @@  discard block
 block discarded – undo
84 87
 					
85 88
 					if($action=='add_title_line') {
86 89
 						$title = GETPOST('title');
87
-						if(empty($title)) $title = $langs->trans('title');
90
+						if(empty($title)) {
91
+							$title = $langs->trans('title');
92
+						}
88 93
 						$qty = $level<1 ? 1 : $level ;
89
-					}
90
-					else if($action=='add_free_text') {
94
+					} else if($action=='add_free_text') {
91 95
 						$title = GETPOST('title');
92 96
 
93 97
 						if (empty($title)) {
@@ -99,29 +103,31 @@  discard block
 block discarded – undo
99 103
 								}
100 104
 							}
101 105
 						}
102
-						if(empty($title)) $title = $langs->trans('subtotalAddLineDescription');
106
+						if(empty($title)) {
107
+							$title = $langs->trans('subtotalAddLineDescription');
108
+						}
103 109
 						$qty = 50;
104
-					}
105
-					else if($action=='add_subtitle_line') {
110
+					} else if($action=='add_subtitle_line') {
106 111
 						$title = GETPOST('title');
107
-						if(empty($title)) $title = $langs->trans('subtitle');
112
+						if(empty($title)) {
113
+							$title = $langs->trans('subtitle');
114
+						}
108 115
 						$qty = 2;
109
-					}
110
-					else if($action=='add_subtotal_line') {
116
+					} else if($action=='add_subtotal_line') {
111 117
 						$title = $langs->trans('SubSubTotal');
112 118
 						$qty = 98;
113
-					}
114
-					else {
119
+					} else {
115 120
 						$title = GETPOST('title') ? GETPOST('title') : $langs->trans('SubTotal');
116 121
 						$qty = $level ? 100-$level : 99;
117 122
 					}
118 123
 					dol_include_once('/subtotal/class/subtotal.class.php');
119 124
 					
120
-					if (!empty($conf->global->SUBTOTAL_AUTO_ADD_SUBTOTAL_ON_ADDING_NEW_TITLE) && $qty < 10) TSubtotal::addSubtotalMissing($object, $qty);
125
+					if (!empty($conf->global->SUBTOTAL_AUTO_ADD_SUBTOTAL_ON_ADDING_NEW_TITLE) && $qty < 10) {
126
+						TSubtotal::addSubtotalMissing($object, $qty);
127
+					}
121 128
 					
122 129
 	    			TSubtotal::addSubTotalLine($object, $title, $qty);
123
-				}
124
-				else if($action==='ask_deleteallline') {
130
+				} else if($action==='ask_deleteallline') {
125 131
 						$form=new Form($db);
126 132
 						
127 133
 						$lineid = GETPOST('lineid','integer');
@@ -144,8 +150,7 @@  discard block
 block discarded – undo
144 150
 					$this->printNewFormat($object, $conf, $langs, $idvar);
145 151
 				}
146 152
 			}
147
-		}
148
-		elseif ((!empty($parameters['currentcontext']) && $parameters['currentcontext'] == 'orderstoinvoice') || in_array('orderstoinvoice',$contexts))
153
+		} elseif ((!empty($parameters['currentcontext']) && $parameters['currentcontext'] == 'orderstoinvoice') || in_array('orderstoinvoice',$contexts))
149 154
 		{
150 155
 			?>
151 156
 			<script type="text/javascript">
@@ -163,8 +168,13 @@  discard block
 block discarded – undo
163 168
      
164 169
 	function printNewFormat(&$object, &$conf, &$langs, $idvar)
165 170
 	{
166
-		if (empty($conf->global->SUBTOTAL_ALLOW_ADD_BLOCK)) return false;
167
-		if (!empty($object->situation_cycle_ref) && $object->situation_counter > 1) return false; // Si facture de situation
171
+		if (empty($conf->global->SUBTOTAL_ALLOW_ADD_BLOCK)) {
172
+			return false;
173
+		}
174
+		if (!empty($object->situation_cycle_ref) && $object->situation_counter > 1) {
175
+			return false;
176
+		}
177
+		// Si facture de situation
168 178
 		?>
169 179
 		 	<script type="text/javascript">
170 180
 				$(document).ready(function() {
@@ -449,8 +459,7 @@  discard block
 block discarded – undo
449 459
 				}
450 460
 				
451 461
 				
452
-			}	
453
-			else{
462
+			} else{
454 463
 				$substitutionarray['line_not_modsubtotal'] = true;
455 464
 				$substitutionarray['line_modsubtotal'] = 0;
456 465
 			}
@@ -508,8 +517,11 @@  discard block
 block discarded – undo
508 517
 		
509 518
 		$showBlockExtrafields = GETPOST('showBlockExtrafields');
510 519
 		
511
-		if($object->element=='facture') $idvar = 'facid';
512
-		else $idvar = 'id';
520
+		if($object->element=='facture') {
521
+			$idvar = 'facid';
522
+		} else {
523
+			$idvar = 'id';
524
+		}
513 525
 			
514 526
 		if ($action == 'updateligne' || $action == 'updateline')
515 527
 		{
@@ -539,8 +551,7 @@  discard block
 block discarded – undo
539 551
 				header('Location: '.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id);
540 552
 				exit; // Surtout ne pas laisser Dolibarr faire du traitement sur le updateligne sinon ça plante les données de la ligne
541 553
 			}
542
-		}
543
-		else if($action === 'builddoc') {
554
+		} else if($action === 'builddoc') {
544 555
 			
545 556
 			if (
546 557
 				in_array('invoicecard',explode(':',$parameters['context']))
@@ -555,33 +566,27 @@  discard block
 block discarded – undo
555 566
 					$sessname = 'subtotal_hideInnerLines_facture';	
556 567
 					$sessname2 = 'subtotal_hidedetails_facture';
557 568
 					$sessname3 = 'subtotal_hideprices_facture';
558
-				}
559
-				elseif(in_array('invoicesuppliercard',explode(':',$parameters['context']))) {
569
+				} elseif(in_array('invoicesuppliercard',explode(':',$parameters['context']))) {
560 570
 				    $sessname = 'subtotal_hideInnerLines_facture_fournisseur';
561 571
 				    $sessname2 = 'subtotal_hidedetails_facture_fournisseur';
562 572
 				    $sessname3 = 'subtotal_hideprices_facture_fournisseur';
563
-				}
564
-				elseif(in_array('propalcard',explode(':',$parameters['context']))) {
573
+				} elseif(in_array('propalcard',explode(':',$parameters['context']))) {
565 574
 					$sessname = 'subtotal_hideInnerLines_propal';
566 575
 					$sessname2 = 'subtotal_hidedetails_propal';	
567 576
 					$sessname3 = 'subtotal_hideprices_propal';
568
-				}
569
-				elseif(in_array('supplier_proposalcard',explode(':',$parameters['context']))) {
577
+				} elseif(in_array('supplier_proposalcard',explode(':',$parameters['context']))) {
570 578
 				    $sessname = 'subtotal_hideInnerLines_supplier_proposal';
571 579
 				    $sessname2 = 'subtotal_hidedetails_supplier_proposal';
572 580
 				    $sessname3 = 'subtotal_hideprices_supplier_proposal';
573
-				}
574
-				elseif(in_array('ordercard',explode(':',$parameters['context']))) {
581
+				} elseif(in_array('ordercard',explode(':',$parameters['context']))) {
575 582
 					$sessname = 'subtotal_hideInnerLines_commande';
576 583
 					$sessname2 = 'subtotal_hidedetails_commande';	
577 584
 					$sessname3 = 'subtotal_hideprices_commande';
578
-				}
579
-				elseif(in_array('ordersuppliercard',explode(':',$parameters['context']))) {
585
+				} elseif(in_array('ordersuppliercard',explode(':',$parameters['context']))) {
580 586
 				    $sessname = 'subtotal_hideInnerLines_commande_fournisseur';
581 587
 				    $sessname2 = 'subtotal_hidedetails_commande_fournisseur';
582 588
 				    $sessname3 = 'subtotal_hideprices_commande_fournisseur';
583
-				}
584
-				else {
589
+				} else {
585 590
 					$sessname = 'subtotal_hideInnerLines_unknown';
586 591
 					$sessname2 = 'subtotal_hidedetails_unknown';
587 592
 					$sessname3 = 'subtotal_hideprices_unknown';
@@ -603,8 +608,7 @@  discard block
 block discarded – undo
603 608
 					    
604 609
                         if($line->qty>=90) {
605 610
                             $line->modsubtotal_total = 1;
606
-                        }
607
-                        else{
611
+                        } else{
608 612
                             $line->modsubtotal_title = 1;
609 613
                         }
610 614
                         
@@ -613,8 +617,7 @@  discard block
 block discarded – undo
613 617
 	        	}
614 618
 	        }
615 619
 			
616
-		}
617
-		else if($action === 'confirm_delete_all_lines' && GETPOST('confirm')=='yes') {
620
+		} else if($action === 'confirm_delete_all_lines' && GETPOST('confirm')=='yes') {
618 621
 			
619 622
 			$Tab = $this->getArrayOfLineForAGroup($object, GETPOST('lineid'));
620 623
 			
@@ -622,7 +625,9 @@  discard block
 block discarded – undo
622 625
 				/**
623 626
 				 * @var $object Facture
624 627
 				 */
625
-				if($object->element=='facture') $object->deleteline($idLine);
628
+				if($object->element=='facture') {
629
+					$object->deleteline($idLine);
630
+				}
626 631
 				/**
627 632
 				 * @var $object Facture fournisseur
628 633
 				 */
@@ -633,18 +638,25 @@  discard block
 block discarded – undo
633 638
 				/**
634 639
 				 * @var $object Propal
635 640
 				 */
636
-				else if($object->element=='propal') $object->deleteline($idLine);
641
+				else if($object->element=='propal') {
642
+					$object->deleteline($idLine);
643
+				}
637 644
 				/**
638 645
 				 * @var $object Propal Fournisseur
639 646
 				 */
640
-				else if($object->element=='supplier_proposal') $object->deleteline($idLine);
647
+				else if($object->element=='supplier_proposal') {
648
+					$object->deleteline($idLine);
649
+				}
641 650
 				/**
642 651
 				 * @var $object Commande
643 652
 				 */
644 653
 				else if($object->element=='commande') 
645 654
 				{
646
-					if ((float) DOL_VERSION >= 5.0) $object->deleteline($user, $idLine);
647
-					else $object->deleteline($idLine);
655
+					if ((float) DOL_VERSION >= 5.0) {
656
+						$object->deleteline($user, $idLine);
657
+					} else {
658
+						$object->deleteline($idLine);
659
+					}
648 660
 				}
649 661
 				/**
650 662
 				 * @var $object Commande fournisseur
@@ -656,21 +668,26 @@  discard block
 block discarded – undo
656 668
 				/**
657 669
 				 * @var $object Facturerec
658 670
 				 */
659
-				else if($object->element=='facturerec') $object->deleteline($idLine);
671
+				else if($object->element=='facturerec') {
672
+					$object->deleteline($idLine);
673
+				}
660 674
 			}
661 675
 			
662 676
 			header('location:?id='.$object->id);
663 677
 			exit;
664 678
 			
665
-		}
666
-		else if ($action == 'duplicate')
679
+		} else if ($action == 'duplicate')
667 680
 		{
668 681
 			$lineid = GETPOST('lineid', 'int');
669 682
 			$nbDuplicate = TSubtotal::duplicateLines($object, $lineid, true);
670 683
 			
671
-			if ($nbDuplicate > 0) setEventMessage($langs->trans('subtotal_duplicate_success', $nbDuplicate));
672
-			elseif ($nbDuplicate == 0) setEventMessage($langs->trans('subtotal_duplicate_lineid_not_found'), 'warnings');
673
-			else setEventMessage($langs->trans('subtotal_duplicate_error'), 'errors');
684
+			if ($nbDuplicate > 0) {
685
+				setEventMessage($langs->trans('subtotal_duplicate_success', $nbDuplicate));
686
+			} elseif ($nbDuplicate == 0) {
687
+				setEventMessage($langs->trans('subtotal_duplicate_lineid_not_found'), 'warnings');
688
+			} else {
689
+				setEventMessage($langs->trans('subtotal_duplicate_error'), 'errors');
690
+			}
674 691
 			
675 692
 			header('Location: ?id='.$object->id);
676 693
 			exit;
@@ -750,17 +767,18 @@  discard block
 block discarded – undo
750 767
 			//print $l->rang.'>='.$rang.' '.$total.'<br/>';
751 768
 			if($l->rang>=$rang) {
752 769
 				//echo 'return!<br>';
753
-				if (!$return_all) return $total;
754
-				else return array($total, $total_tva, $total_ttc, $TTotal_tva);
755
-			}
756
-			else if(TSubtotal::isTitle($l, 100 - $qty_line)) 
770
+				if (!$return_all) {
771
+					return $total;
772
+				} else {
773
+					return array($total, $total_tva, $total_ttc, $TTotal_tva);
774
+				}
775
+			} else if(TSubtotal::isTitle($l, 100 - $qty_line)) 
757 776
 		  	{
758 777
 				$total = 0;
759 778
 				$total_tva = 0;
760 779
 				$total_ttc = 0;
761 780
 				$TTotal_tva = array();
762
-			}
763
-			elseif(!TSubtotal::isTitle($l) && !TSubtotal::isSubtotal($l)) {
781
+			} elseif(!TSubtotal::isTitle($l) && !TSubtotal::isSubtotal($l)) {
764 782
 				$total += $l->total_ht;
765 783
 				$total_tva += $l->total_tva;
766 784
 				$TTotal_tva[$l->tva_tx] += $l->total_tva;
@@ -768,8 +786,11 @@  discard block
 block discarded – undo
768 786
 			}
769 787
 			
770 788
 		}
771
-		if (!$return_all) return $total;
772
-		else return array($total, $total_tva, $total_ttc, $TTotal_tva);
789
+		if (!$return_all) {
790
+			return $total;
791
+		} else {
792
+			return array($total, $total_tva, $total_ttc, $TTotal_tva);
793
+		}
773 794
 	}
774 795
 
775 796
 	/*
@@ -837,15 +858,18 @@  discard block
 block discarded – undo
837 858
 		}
838 859
 		
839 860
 			
840
-		if($line->qty==99)
841
-			$pdf->SetFillColor(220,220,220);
842
-		elseif ($line->qty==98)
843
-			$pdf->SetFillColor(230,230,230);
844
-		else
845
-			$pdf->SetFillColor(240,240,240);
861
+		if($line->qty==99) {
862
+					$pdf->SetFillColor(220,220,220);
863
+		} elseif ($line->qty==98) {
864
+					$pdf->SetFillColor(230,230,230);
865
+		} else {
866
+					$pdf->SetFillColor(240,240,240);
867
+		}
846 868
 		
847 869
 		$style = 'B';
848
-		if (!empty($conf->global->SUBTOTAL_SUBTOTAL_STYLE)) $style = $conf->global->SUBTOTAL_SUBTOTAL_STYLE;
870
+		if (!empty($conf->global->SUBTOTAL_SUBTOTAL_STYLE)) {
871
+			$style = $conf->global->SUBTOTAL_SUBTOTAL_STYLE;
872
+		}
849 873
 		
850 874
 		$pdf->SetFont('', $style, 9);
851 875
 		
@@ -884,8 +908,7 @@  discard block
 block discarded – undo
884 908
 //					$line->total_tva
885 909
 //					$line->total
886 910
 //					$line->total_ttc
887
-				}
888
-				else
911
+				} else
889 912
 				{
890 913
 					list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1);
891 914
                                         if(get_class($object) == 'Facture' && $object->type==Facture::TYPE_SITUATION){//Facture de situation
@@ -902,11 +925,14 @@  discard block
 block discarded – undo
902 925
 			}
903 926
 
904 927
 			$pdf->SetXY($pdf->postotalht, $posy);
905
-			if($set_pagebreak_margin) $pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin);
928
+			if($set_pagebreak_margin) {
929
+				$pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin);
930
+			}
906 931
 			$pdf->MultiCell($pdf->page_largeur-$pdf->marge_droite-$pdf->postotalht, 3, $total_to_print, 0, 'R', 0);
907
-		}
908
-		else{
909
-			if($set_pagebreak_margin) $pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin);
932
+		} else{
933
+			if($set_pagebreak_margin) {
934
+				$pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin);
935
+			}
910 936
 		}
911 937
 		
912 938
 		$posy = $posy + $cell_height;
@@ -938,25 +964,40 @@  discard block
 block discarded – undo
938 964
 		
939 965
  
940 966
 		$style = ($line->qty==1) ? 'BU' : 'BUI';
941
-		if (!empty($conf->global->SUBTOTAL_TITLE_STYLE)) $style = $conf->global->SUBTOTAL_TITLE_STYLE;
967
+		if (!empty($conf->global->SUBTOTAL_TITLE_STYLE)) {
968
+			$style = $conf->global->SUBTOTAL_TITLE_STYLE;
969
+		}
942 970
 		
943 971
 		if($hideInnerLines) {
944
-			if($line->qty==1)$pdf->SetFont('', $style, 9);
945
-			else 
972
+			if($line->qty==1) {
973
+				$pdf->SetFont('', $style, 9);
974
+			} else 
946 975
 			{
947
-				if (!empty($conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES)) $style = $conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES;
976
+				if (!empty($conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES)) {
977
+					$style = $conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES;
978
+				}
948 979
 				$pdf->SetFont('', $style, 9);
949 980
 			}
950
-		}
951
-		else {
981
+		} else {
952 982
 
953
-			if($line->qty==1)$pdf->SetFont('', $style, 9); //TODO if super utile
954
-			else $pdf->SetFont('', $style, 9);
983
+			if($line->qty==1) {
984
+				$pdf->SetFont('', $style, 9);
985
+			}
986
+			//TODO if super utile
987
+			else {
988
+				$pdf->SetFont('', $style, 9);
989
+			}
955 990
 			
956 991
 		}
957 992
 		
958
-		if ($label === strip_tags($label) && $label === dol_html_entity_decode($label, ENT_QUOTES)) $pdf->MultiCell($w, $h, $label, 0, 'L'); // Pas de HTML dans la chaine
959
-		else $pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'J',true); // et maintenant avec du HTML
993
+		if ($label === strip_tags($label) && $label === dol_html_entity_decode($label, ENT_QUOTES)) {
994
+			$pdf->MultiCell($w, $h, $label, 0, 'L');
995
+		}
996
+		// Pas de HTML dans la chaine
997
+		else {
998
+			$pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'J',true);
999
+		}
1000
+		// et maintenant avec du HTML
960 1001
 		
961 1002
 		if($description && !$hidedesc) {
962 1003
 			$posy = $pdf->GetY();
@@ -980,8 +1021,7 @@  discard block
 block discarded – undo
980 1021
 		
981 1022
 		if(is_array($parameters)) {
982 1023
 			$i = & $parameters['i'];	
983
-		}
984
-		else {
1024
+		} else {
985 1025
 			$i = (int)$parameters;
986 1026
 		}
987 1027
 		
@@ -1003,17 +1043,14 @@  discard block
 block discarded – undo
1003 1043
 			
1004 1044
 			if((float)DOL_VERSION<=3.6) {
1005 1045
 				return '';
1006
-			}
1007
-			else if((float)DOL_VERSION>=3.8) {
1046
+			} else if((float)DOL_VERSION>=3.8) {
1008 1047
 				return 1;
1009 1048
 			}
1010 1049
 			
1011
-		}
1012
-		elseif(!empty($hideprices)) {
1050
+		} elseif(!empty($hideprices)) {
1013 1051
 			$this->resprints = $object->lines[$parameters['i']]->qty;
1014 1052
 			return 1;
1015
-		}
1016
-		elseif (!empty($conf->global->SUBTOTAL_IF_HIDE_PRICES_SHOW_QTY))
1053
+		} elseif (!empty($conf->global->SUBTOTAL_IF_HIDE_PRICES_SHOW_QTY))
1017 1054
 		{
1018 1055
 			$hideInnerLines = (int)GETPOST('hideInnerLines');
1019 1056
 			$hidedetails = (int)GETPOST('hidedetails');
@@ -1023,12 +1060,20 @@  discard block
 block discarded – undo
1023 1060
 			}
1024 1061
 		}
1025 1062
 		
1026
-		if(is_array($parameters)) $i = & $parameters['i'];
1027
-		else $i = (int)$parameters;
1063
+		if(is_array($parameters)) {
1064
+			$i = & $parameters['i'];
1065
+		} else {
1066
+			$i = (int)$parameters;
1067
+		}
1028 1068
 
1029
-		if (empty($object->lines[$i])) return 0; // hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0)
1069
+		if (empty($object->lines[$i])) {
1070
+			return 0;
1071
+		}
1072
+		// hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0)
1030 1073
 		
1031
-		if(empty($object->lines[$i]->array_options)) $object->lines[$i]->fetch_optionals();
1074
+		if(empty($object->lines[$i]->array_options)) {
1075
+			$object->lines[$i]->fetch_optionals();
1076
+		}
1032 1077
 
1033 1078
 		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1034 1079
 		{
@@ -1051,16 +1096,17 @@  discard block
 block discarded – undo
1051 1096
 			
1052 1097
 			if((float)DOL_VERSION<=3.6) {
1053 1098
 				return '';
1054
-			}
1055
-			else if((float)DOL_VERSION>=3.8) {
1099
+			} else if((float)DOL_VERSION>=3.8) {
1056 1100
 				return 1;
1057 1101
 			}
1058 1102
 			
1059
-		}
1060
-		elseif (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS))
1103
+		} elseif (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS))
1061 1104
 		{
1062
-			if(is_array($parameters)) $i = & $parameters['i'];
1063
-			else $i = (int)$parameters;
1105
+			if(is_array($parameters)) {
1106
+				$i = & $parameters['i'];
1107
+			} else {
1108
+				$i = (int)$parameters;
1109
+			}
1064 1110
 			
1065 1111
 			if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1066 1112
 			{
@@ -1082,8 +1128,11 @@  discard block
 block discarded – undo
1082 1128
 			}
1083 1129
 		}
1084 1130
 		if ((int)GETPOST('hideInnerLines') && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES)){
1085
-		    if(is_array($parameters)) $i = & $parameters['i'];
1086
-		    else $i = (int)$parameters;
1131
+		    if(is_array($parameters)) {
1132
+		    	$i = & $parameters['i'];
1133
+		    } else {
1134
+		    	$i = (int)$parameters;
1135
+		    }
1087 1136
 		    $this->resprints = price($object->lines[$i]->total_ht);
1088 1137
 		}
1089 1138
 		if (!empty($hideprices)
@@ -1109,14 +1158,16 @@  discard block
 block discarded – undo
1109 1158
 		
1110 1159
 			if((float)DOL_VERSION<=3.6) {
1111 1160
 				return '';
1112
-			}
1113
-			else if((float)DOL_VERSION>=3.8) {
1161
+			} else if((float)DOL_VERSION>=3.8) {
1114 1162
 				return 1;
1115 1163
 			}
1116 1164
 		}
1117 1165
 		
1118
-		if(is_array($parameters)) $i = & $parameters['i'];
1119
-		else $i = (int)$parameters;
1166
+		if(is_array($parameters)) {
1167
+			$i = & $parameters['i'];
1168
+		} else {
1169
+			$i = (int)$parameters;
1170
+		}
1120 1171
 		
1121 1172
 		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) 
1122 1173
 		{
@@ -1138,14 +1189,16 @@  discard block
 block discarded – undo
1138 1189
 		
1139 1190
 			if((float)DOL_VERSION<=3.6) {
1140 1191
 				return '';
1141
-			}
1142
-			else if((float)DOL_VERSION>=3.8) {
1192
+			} else if((float)DOL_VERSION>=3.8) {
1143 1193
 				return 1;
1144 1194
 			}
1145 1195
 		}
1146 1196
 		
1147
-		if(is_array($parameters)) $i = & $parameters['i'];
1148
-		else $i = (int)$parameters;
1197
+		if(is_array($parameters)) {
1198
+			$i = & $parameters['i'];
1199
+		} else {
1200
+			$i = (int)$parameters;
1201
+		}
1149 1202
 			
1150 1203
 		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1151 1204
 		{
@@ -1167,13 +1220,15 @@  discard block
 block discarded – undo
1167 1220
 		
1168 1221
 			if((float)DOL_VERSION<=3.6) {
1169 1222
 				return '';
1170
-			}
1171
-			else if((float)DOL_VERSION>=3.8) {
1223
+			} else if((float)DOL_VERSION>=3.8) {
1172 1224
 				return 1;
1173 1225
 			}
1174 1226
 		}
1175
-		if(is_array($parameters)) $i = & $parameters['i'];
1176
-		else $i = (int)$parameters;
1227
+		if(is_array($parameters)) {
1228
+			$i = & $parameters['i'];
1229
+		} else {
1230
+			$i = (int)$parameters;
1231
+		}
1177 1232
 		
1178 1233
 		if (!empty($hideprices) 
1179 1234
 				|| (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
@@ -1196,14 +1251,16 @@  discard block
 block discarded – undo
1196 1251
 			$this->resprints = ' ';
1197 1252
 			if((float)DOL_VERSION<=3.6) {
1198 1253
 				return '';
1199
-			}
1200
-			else if((float)DOL_VERSION>=3.8) {
1254
+			} else if((float)DOL_VERSION>=3.8) {
1201 1255
 				return 1;
1202 1256
 			}
1203 1257
 		}
1204 1258
 		
1205
-		if(is_array($parameters)) $i = & $parameters['i'];
1206
-		else $i = (int)$parameters;
1259
+		if(is_array($parameters)) {
1260
+			$i = & $parameters['i'];
1261
+		} else {
1262
+			$i = (int)$parameters;
1263
+		}
1207 1264
 			
1208 1265
 		if (!empty($hideprices)
1209 1266
 				|| (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
@@ -1227,16 +1284,21 @@  discard block
 block discarded – undo
1227 1284
 			
1228 1285
 			if((float)DOL_VERSION<=3.6) {
1229 1286
 				return '';
1230
-			}
1231
-			else if((float)DOL_VERSION>=3.8) {
1287
+			} else if((float)DOL_VERSION>=3.8) {
1232 1288
 				return 1;
1233 1289
 			}
1234 1290
 		}
1235 1291
 		
1236
-		if(is_array($parameters)) $i = & $parameters['i'];
1237
-		else $i = (int)$parameters;
1292
+		if(is_array($parameters)) {
1293
+			$i = & $parameters['i'];
1294
+		} else {
1295
+			$i = (int)$parameters;
1296
+		}
1238 1297
 		
1239
-		if (empty($object->lines[$i])) return 0; // hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0)
1298
+		if (empty($object->lines[$i])) {
1299
+			return 0;
1300
+		}
1301
+		// hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0)
1240 1302
 
1241 1303
 		$object->lines[$i]->fetch_optionals();
1242 1304
 		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
@@ -1258,14 +1320,16 @@  discard block
 block discarded – undo
1258 1320
 			$this->resprints = ' ';
1259 1321
 			if((float)DOL_VERSION<=3.6) {
1260 1322
 				return '';
1261
-			}
1262
-			else if((float)DOL_VERSION>=3.8) {
1323
+			} else if((float)DOL_VERSION>=3.8) {
1263 1324
 				return 1;
1264 1325
 			}
1265 1326
 		}
1266 1327
 		
1267
-		if(is_array($parameters)) $i = & $parameters['i'];
1268
-		else $i = (int)$parameters;
1328
+		if(is_array($parameters)) {
1329
+			$i = & $parameters['i'];
1330
+		} else {
1331
+			$i = (int)$parameters;
1332
+		}
1269 1333
 			
1270 1334
 		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1271 1335
 		{
@@ -1295,7 +1359,9 @@  discard block
 block discarded – undo
1295 1359
 				}
1296 1360
 			}
1297 1361
 			
1298
-			if (!empty($TLineTitle)) $TTitleNumeroted = $this->formatNumerotation($TLineTitle);
1362
+			if (!empty($TLineTitle)) {
1363
+				$TTitleNumeroted = $this->formatNumerotation($TLineTitle);
1364
+			}
1299 1365
 		}
1300 1366
 		
1301 1367
 	}
@@ -1309,8 +1375,12 @@  discard block
 block discarded – undo
1309 1375
 		$j=0;
1310 1376
 		foreach ($TLineTitle as $k => &$line)
1311 1377
 		{
1312
-			if (!empty($line_reference) && $line->rang <= $line_reference->rang) continue;
1313
-			if (!empty($line_reference) && $line->qty <= $line_reference->qty) break;
1378
+			if (!empty($line_reference) && $line->rang <= $line_reference->rang) {
1379
+				continue;
1380
+			}
1381
+			if (!empty($line_reference) && $line->qty <= $line_reference->qty) {
1382
+				break;
1383
+			}
1314 1384
 			
1315 1385
 			if ($line->qty == $level)
1316 1386
 			{
@@ -1344,7 +1414,9 @@  discard block
 block discarded – undo
1344 1414
 		
1345 1415
 		$hidedetails = (int)GETPOST('hidedetails');
1346 1416
 		
1347
-		if(empty($hidedetails)) return false;
1417
+		if(empty($hidedetails)) {
1418
+			return false;
1419
+		}
1348 1420
 		
1349 1421
 		// TODO can't add VAT to document without lines... :-/
1350 1422
 		
@@ -1397,7 +1469,9 @@  discard block
 block discarded – undo
1397 1469
 						*/
1398 1470
 						list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1);
1399 1471
 						
1400
-						if (TSubtotal::getNiveau($line) == 1) $line->TTotal_tva = $TTotal_tva;
1472
+						if (TSubtotal::getNiveau($line) == 1) {
1473
+							$line->TTotal_tva = $TTotal_tva;
1474
+						}
1401 1475
 						$line->total_ht = $total;
1402 1476
 						$line->total_tva = $total_tva;
1403 1477
 						$line->total = $line->total_ht;
@@ -1452,8 +1526,7 @@  discard block
 block discarded – undo
1452 1526
 				    }
1453 1527
 				    
1454 1528
 					
1455
-				}
1456
-				elseif ($hidedetails)
1529
+				} elseif ($hidedetails)
1457 1530
 				{
1458 1531
 					$TLines[] = $line; //Cas où je cache uniquement les prix des produits	
1459 1532
 				}
@@ -1524,7 +1597,9 @@  discard block
 block discarded – undo
1524 1597
 				
1525 1598
 				if(!empty($hideprices)) {
1526 1599
 					foreach($object->lines as &$line) {
1527
-						if($line->fk_product_type!=9) $line->fk_parent_line = -1;	
1600
+						if($line->fk_product_type!=9) {
1601
+							$line->fk_parent_line = -1;
1602
+						}
1528 1603
 					}
1529 1604
 				}
1530 1605
 			
@@ -1545,7 +1620,9 @@  discard block
 block discarded – undo
1545 1620
 				
1546 1621
 				if($line->qty>90) {
1547 1622
 					
1548
-					if ($conf->global->SUBTOTAL_USE_NEW_FORMAT)	$label .= ' '.$this->getTitle($object, $line);
1623
+					if ($conf->global->SUBTOTAL_USE_NEW_FORMAT) {
1624
+						$label .= ' '.$this->getTitle($object, $line);
1625
+					}
1549 1626
 					
1550 1627
 					$pageBefore = $pdf->getPage();
1551 1628
 					$this->pdf_add_total($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h);
@@ -1563,8 +1640,7 @@  discard block
 block discarded – undo
1563 1640
 				
1564 1641
 					$posy = $pdf->GetY();
1565 1642
 					return 1;
1566
-				}	
1567
-				else if ($line->qty < 10) {
1643
+				} else if ($line->qty < 10) {
1568 1644
 					$pageBefore = $pdf->getPage();
1569 1645
 
1570 1646
 					$this->pdf_add_title($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h); 
@@ -1588,8 +1664,7 @@  discard block
 block discarded – undo
1588 1664
 //	if($line->rowid==47) exit;
1589 1665
 			
1590 1666
 			return 0;
1591
-		}
1592
-		elseif (empty($object->lines[$parameters['i']]))
1667
+		} elseif (empty($object->lines[$parameters['i']]))
1593 1668
 		{
1594 1669
 			$this->resprints = -1;
1595 1670
 		}
@@ -1622,7 +1697,9 @@  discard block
 block discarded – undo
1622 1697
 		
1623 1698
 		foreach ($object->lines as $line)
1624 1699
 		{
1625
-			if ($line->id == $currentLine->id) break;
1700
+			if ($line->id == $currentLine->id) {
1701
+				break;
1702
+			}
1626 1703
 			
1627 1704
 			$qty_search = 100 - $currentLine->qty;
1628 1705
 			
@@ -1659,23 +1736,23 @@  discard block
 block discarded – undo
1659 1736
 		{
1660 1737
 			$object->statut = 0; // hack for facture rec
1661 1738
 			$createRight = $user->rights->facture->creer;
1662
-		}
1663
-		elseif($object->element == 'order_supplier' )
1739
+		} elseif($object->element == 'order_supplier' )
1664 1740
 		{
1665 1741
 		    $createRight = $user->rights->fournisseur->commande->creer;
1666
-		}
1667
-		elseif($object->element == 'invoice_supplier' )
1742
+		} elseif($object->element == 'invoice_supplier' )
1668 1743
 		{
1669 1744
 		    $createRight = $user->rights->fournisseur->facture->creer;
1670 1745
 		}
1671 1746
 		
1672 1747
 		if($line->special_code!=$this->module_number || $line->product_type!=9) {
1673 1748
 			null;
1674
-		}	
1675
-		else if (in_array('invoicecard',$contexts) || in_array('invoicesuppliercard',$contexts) || in_array('propalcard',$contexts) || in_array('supplier_proposalcard',$contexts) || in_array('ordercard',$contexts) || in_array('ordersuppliercard',$contexts) || in_array('invoicereccard',$contexts)) 
1749
+		} else if (in_array('invoicecard',$contexts) || in_array('invoicesuppliercard',$contexts) || in_array('propalcard',$contexts) || in_array('supplier_proposalcard',$contexts) || in_array('ordercard',$contexts) || in_array('ordersuppliercard',$contexts) || in_array('invoicereccard',$contexts)) 
1676 1750
         {
1677
-			if($object->element=='facture')$idvar = 'facid';
1678
-			else $idvar='id';
1751
+			if($object->element=='facture') {
1752
+				$idvar = 'facid';
1753
+			} else {
1754
+				$idvar='id';
1755
+			}
1679 1756
 			
1680 1757
 			if((float)DOL_VERSION <= 3.4)
1681 1758
 			{
@@ -1701,20 +1778,44 @@  discard block
 block discarded – undo
1701 1778
 				<?php
1702 1779
 			}
1703 1780
 			
1704
-			if(empty($line->description)) $line->description = $line->desc;
1781
+			if(empty($line->description)) {
1782
+				$line->description = $line->desc;
1783
+			}
1705 1784
 			
1706 1785
 			$colspan = 5;
1707
-			if($object->element == 'facturerec' ) $colspan = 3;
1708
-			if($object->element == 'order_supplier') $colspan = 3;
1709
-			if($object->element == 'invoice_supplier') $colspan = 4;
1710
-			if($object->element == 'supplier_proposal') $colspan = 4;
1711
-			if(!empty($conf->multicurrency->enabled)) $colspan+=2;
1712
-			if($object->element == 'commande' && $object->statut < 3 && !empty($conf->shippableorder->enabled)) $colspan++;
1713
-			if(!empty($conf->margin->enabled)) $colspan++;
1714
-			if(!empty($conf->global->DISPLAY_MARGIN_RATES)) $colspan++;
1715
-			if(!empty($conf->global->DISPLAY_MARK_RATES)) $colspan++;
1716
-			if($object->element == 'facture' && !empty($conf->global->INVOICE_USE_SITUATION) && $object->type == Facture::TYPE_SITUATION) $colspan++;
1717
-			if(!empty($conf->global->PRODUCT_USE_UNITS)) $colspan++;
1786
+			if($object->element == 'facturerec' ) {
1787
+				$colspan = 3;
1788
+			}
1789
+			if($object->element == 'order_supplier') {
1790
+				$colspan = 3;
1791
+			}
1792
+			if($object->element == 'invoice_supplier') {
1793
+				$colspan = 4;
1794
+			}
1795
+			if($object->element == 'supplier_proposal') {
1796
+				$colspan = 4;
1797
+			}
1798
+			if(!empty($conf->multicurrency->enabled)) {
1799
+				$colspan+=2;
1800
+			}
1801
+			if($object->element == 'commande' && $object->statut < 3 && !empty($conf->shippableorder->enabled)) {
1802
+				$colspan++;
1803
+			}
1804
+			if(!empty($conf->margin->enabled)) {
1805
+				$colspan++;
1806
+			}
1807
+			if(!empty($conf->global->DISPLAY_MARGIN_RATES)) {
1808
+				$colspan++;
1809
+			}
1810
+			if(!empty($conf->global->DISPLAY_MARK_RATES)) {
1811
+				$colspan++;
1812
+			}
1813
+			if($object->element == 'facture' && !empty($conf->global->INVOICE_USE_SITUATION) && $object->type == Facture::TYPE_SITUATION) {
1814
+				$colspan++;
1815
+			}
1816
+			if(!empty($conf->global->PRODUCT_USE_UNITS)) {
1817
+				$colspan++;
1818
+			}
1718 1819
 					
1719 1820
 			/* Titre */
1720 1821
 			//var_dump($line);
@@ -1727,23 +1828,36 @@  discard block
 block discarded – undo
1727 1828
 			<tr <?php echo $bc[$var]; $var=!$var; echo $data; ?> rel="subtotal" id="row-<?php echo $line->id ?>" style="<?php
1728 1829
 					if (!empty($conf->global->SUBTOTAL_USE_NEW_FORMAT))
1729 1830
 					{
1730
-						if($line->qty==99) print 'background:#adadcf';
1731
-						else if($line->qty==98) print 'background:#ddddff;';
1732
-						else if($line->qty<=97 && $line->qty>=91) print 'background:#eeeeff;';
1733
-						else if($line->qty==1) print 'background:#adadcf;';
1734
-						else if($line->qty==2) print 'background:#ddddff;';
1735
-						else if($line->qty==50) print '';
1736
-						else print 'background:#eeeeff;';
1831
+						if($line->qty==99) {
1832
+							print 'background:#adadcf';
1833
+						} else if($line->qty==98) {
1834
+							print 'background:#ddddff;';
1835
+						} else if($line->qty<=97 && $line->qty>=91) {
1836
+							print 'background:#eeeeff;';
1837
+						} else if($line->qty==1) {
1838
+							print 'background:#adadcf;';
1839
+						} else if($line->qty==2) {
1840
+							print 'background:#ddddff;';
1841
+						} else if($line->qty==50) {
1842
+							print '';
1843
+						} else {
1844
+							print 'background:#eeeeff;';
1845
+						}
1737 1846
 
1738 1847
 						//A compléter si on veux plus de nuances de couleurs avec les niveau 4,5,6,7,8 et 9
1739
-					}
1740
-					else 
1848
+					} else 
1741 1849
 					{
1742
-						if($line->qty==99) print 'background:#ddffdd';
1743
-						else if($line->qty==98) print 'background:#ddddff;';
1744
-						else if($line->qty==2) print 'background:#eeeeff; ';
1745
-						else if($line->qty==50) print '';
1746
-						else print 'background:#eeffee;' ;
1850
+						if($line->qty==99) {
1851
+							print 'background:#ddffdd';
1852
+						} else if($line->qty==98) {
1853
+							print 'background:#ddddff;';
1854
+						} else if($line->qty==2) {
1855
+							print 'background:#eeeeff; ';
1856
+						} else if($line->qty==50) {
1857
+							print '';
1858
+						} else {
1859
+							print 'background:#eeffee;' ;
1860
+						}
1747 1861
 					}
1748 1862
 
1749 1863
 			?>;">
@@ -1766,13 +1880,11 @@  discard block
 block discarded – undo
1766 1880
 							$qty_displayed = $line->qty;
1767 1881
 							print img_picto('', 'subsubtotal@subtotal').'<span style="font-size:9px;margin-left:-3px;color:#0075DE;">'.$qty_displayed.'</span>&nbsp;&nbsp;';
1768 1882
 							
1769
-						}
1770
-						else if (TSubtotal::isSubtotal($line))
1883
+						} else if (TSubtotal::isSubtotal($line))
1771 1884
 						{
1772 1885
 							$qty_displayed = 100 - $line->qty;
1773 1886
 							print img_picto('', 'subsubtotal2@subtotal').'<span style="font-size:9px;margin-left:-1px;color:#0075DE;">'.$qty_displayed.'</span>&nbsp;&nbsp;';
1774
-						}
1775
-						else
1887
+						} else
1776 1888
 						{
1777 1889
 							$isFreeText = true;
1778 1890
 						}
@@ -1793,9 +1905,13 @@  discard block
 block discarded – undo
1793 1905
 						}
1794 1906
 
1795 1907
 						$readonlyForSituation = '';
1796
-						if (!empty($object->situation_cycle_ref) && $object->situation_counter > 1) $readonlyForSituation = 'readonly';
1908
+						if (!empty($object->situation_cycle_ref) && $object->situation_counter > 1) {
1909
+							$readonlyForSituation = 'readonly';
1910
+						}
1797 1911
 						
1798
-						if (!$isFreeText) echo '<input type="text" name="line-title" id-line="'.$line->id.'" value="'.$newlabel.'" size="80" '.$readonlyForSituation.'/>&nbsp;';
1912
+						if (!$isFreeText) {
1913
+							echo '<input type="text" name="line-title" id-line="'.$line->id.'" value="'.$newlabel.'" size="80" '.$readonlyForSituation.'/>&nbsp;';
1914
+						}
1799 1915
 						
1800 1916
 						if (!empty($conf->global->SUBTOTAL_USE_NEW_FORMAT) && (TSubtotal::isTitle($line) || TSubtotal::isSubtotal($line)) )
1801 1917
 						{
@@ -1803,8 +1919,12 @@  discard block
 block discarded – undo
1803 1919
 							for ($j=1; $j<10; $j++)
1804 1920
 							{
1805 1921
 								if (!empty($readonlyForSituation)) {
1806
-									if ($qty_displayed == $j) $select .= '<option selected="selected" value="'.$j.'">'.$langs->trans('Level').' '.$j.'</option>';
1807
-								} else $select .= '<option '.($qty_displayed == $j ? 'selected="selected"' : '').' value="'.$j.'">'.$langs->trans('Level').' '.$j.'</option>';
1922
+									if ($qty_displayed == $j) {
1923
+										$select .= '<option selected="selected" value="'.$j.'">'.$langs->trans('Level').' '.$j.'</option>';
1924
+									}
1925
+								} else {
1926
+									$select .= '<option '.($qty_displayed == $j ? 'selected="selected"' : '').' value="'.$j.'">'.$langs->trans('Level').' '.$j.'</option>';
1927
+								}
1808 1928
 							}
1809 1929
 							$select .= '</select>&nbsp;';
1810 1930
 
@@ -1820,15 +1940,18 @@  discard block
 block discarded – undo
1820 1940
 								$form = new Form($db);
1821 1941
 								echo '<label for="subtotal_tva_tx">'.$form->textwithpicto($langs->trans('subtotal_apply_default_tva'), $langs->trans('subtotal_apply_default_tva_help')).'</label>';
1822 1942
 								echo '<select id="subtotal_tva_tx" name="subtotal_tva_tx" class="flat"><option selected="selected" value="">-</option>';
1823
-								if (empty($readonlyForSituation)) echo str_replace('selected', '', $form->load_tva('subtotal_tva_tx', '', $parameters['seller'], $parameters['buyer'], 0, 0, '', true));
1943
+								if (empty($readonlyForSituation)) {
1944
+									echo str_replace('selected', '', $form->load_tva('subtotal_tva_tx', '', $parameters['seller'], $parameters['buyer'], 0, 0, '', true));
1945
+								}
1824 1946
 								echo '</select>&nbsp;&nbsp;';
1825 1947
 								
1826 1948
 								if (!empty($conf->global->INVOICE_USE_SITUATION) && $object->element == 'facture' && $object->type == Facture::TYPE_SITUATION)
1827 1949
 								{
1828 1950
 									echo '<label for="subtotal_progress">'.$langs->trans('subtotal_apply_progress').'</label> <input id="subtotal_progress" name="subtotal_progress" value="" size="1" />%';
1829 1951
 								}
1952
+							} else if ($isFreeText) {
1953
+								echo TSubtotal::getFreeTextHtml($line, (bool) $readonlyForSituation);
1830 1954
 							}
1831
-							else if ($isFreeText) echo TSubtotal::getFreeTextHtml($line, (bool) $readonlyForSituation);
1832 1955
 						echo '</div>';
1833 1956
 
1834 1957
 						if($line->qty<10) {
@@ -1848,8 +1971,7 @@  discard block
 block discarded – undo
1848 1971
 							$doleditor->Create();
1849 1972
 						}
1850 1973
 						
1851
-					}
1852
-					else {
1974
+					} else {
1853 1975
 
1854 1976
 						 if ($conf->global->SUBTOTAL_USE_NEW_FORMAT)
1855 1977
 						 {
@@ -1857,14 +1979,19 @@  discard block
 block discarded – undo
1857 1979
 							{
1858 1980
 								echo str_repeat('&nbsp;&nbsp;&nbsp;', $line->qty-1);
1859 1981
 								
1860
-								if (TSubtotal::isTitle($line)) print img_picto('', 'subtotal@subtotal').'<span style="font-size:9px;margin-left:-3px;">'.$line->qty.'</span>&nbsp;&nbsp;';
1861
-								else print img_picto('', 'subtotal2@subtotal').'<span style="font-size:9px;margin-left:-1px;">'.(100-$line->qty).'</span>&nbsp;&nbsp;';
1982
+								if (TSubtotal::isTitle($line)) {
1983
+									print img_picto('', 'subtotal@subtotal').'<span style="font-size:9px;margin-left:-3px;">'.$line->qty.'</span>&nbsp;&nbsp;';
1984
+								} else {
1985
+									print img_picto('', 'subtotal2@subtotal').'<span style="font-size:9px;margin-left:-1px;">'.(100-$line->qty).'</span>&nbsp;&nbsp;';
1986
+								}
1862 1987
 							}
1863
-						 }
1864
-						 else 
1988
+						 } else 
1865 1989
 						 {
1866
-							if($line->qty<=1) print img_picto('', 'subtotal@subtotal');
1867
-							else if($line->qty==2) print img_picto('', 'subsubtotal@subtotal').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'; 
1990
+							if($line->qty<=1) {
1991
+								print img_picto('', 'subtotal@subtotal');
1992
+							} else if($line->qty==2) {
1993
+								print img_picto('', 'subsubtotal@subtotal').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
1994
+							}
1868 1995
 						 }
1869 1996
 						 
1870 1997
 						 
@@ -1874,21 +2001,26 @@  discard block
 block discarded – undo
1874 2001
 						 $titleStyleUnderline =  strpos($conf->global->SUBTOTAL_TITLE_STYLE, 'U') === false ? '' : ' text-decoration: underline;';
1875 2002
 						 
1876 2003
 						 if (empty($line->label)) {
1877
-							if ($line->qty >= 91 && $line->qty <= 99 && $conf->global->SUBTOTAL_USE_NEW_FORMAT) print  $line->description.' '.$this->getTitle($object, $line);
1878
-							else print  $line->description;
1879
-						 } 
1880
-						 else {
2004
+							if ($line->qty >= 91 && $line->qty <= 99 && $conf->global->SUBTOTAL_USE_NEW_FORMAT) {
2005
+								print  $line->description.' '.$this->getTitle($object, $line);
2006
+							} else {
2007
+								print  $line->description;
2008
+							}
2009
+						 } else {
1881 2010
 
1882 2011
 							if (! empty($conf->global->PRODUIT_DESC_IN_FORM) && !empty($line->description)) {
1883 2012
 								print '<span class="subtotal_label" style="'.$titleStyleItalic.$titleStyleBold.$titleStyleUnderline.'" >'.$line->label.'</span><br><div class="subtotal_desc">'.dol_htmlentitiesbr($line->description).'</div>';
1884
-							}
1885
-							else{
2013
+							} else{
1886 2014
 								print '<span class="subtotal_label classfortooltip '.$titleStyleItalic.$titleStyleBold.$titleStyleUnderline.'" title="'.$line->description.'">'.$line->label.'</span>';    
1887 2015
 							}
1888 2016
 
1889 2017
 						 } 
1890
-						if($line->qty>90) print ' : ';
1891
-						if($line->info_bits > 0) echo img_picto($langs->trans('Pagebreak'), 'pagebreak@subtotal');
2018
+						if($line->qty>90) {
2019
+							print ' : ';
2020
+						}
2021
+						if($line->info_bits > 0) {
2022
+							echo img_picto($langs->trans('Pagebreak'), 'pagebreak@subtotal');
2023
+						}
1892 2024
 
1893 2025
 						 
1894 2026
 
@@ -1925,11 +2057,12 @@  discard block
 block discarded – undo
1925 2057
 						</script>
1926 2058
 						<?php
1927 2059
 						
1928
-					}
1929
-					else{
2060
+					} else{
1930 2061
 						if ($object->statut == 0  && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_DUPLICATE_BLOCK) && $object->element !== 'invoice_supplier')
1931 2062
 						{
1932
-							if(TSubtotal::isTitle($line) && ($object->situation_counter == 1 || !$object->situation_cycle_ref) ) echo '<a href="'.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id.'&action=duplicate&lineid='.$line->id.'">'. img_picto($langs->trans('Duplicate'), 'duplicate@subtotal').'</a>';
2063
+							if(TSubtotal::isTitle($line) && ($object->situation_counter == 1 || !$object->situation_cycle_ref) ) {
2064
+								echo '<a href="'.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id.'&action=duplicate&lineid='.$line->id.'">'. img_picto($langs->trans('Duplicate'), 'duplicate@subtotal').'</a>';
2065
+							}
1933 2066
 						}
1934 2067
 
1935 2068
 						if ($object->statut == 0  && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_EDIT_BLOCK)) 
@@ -1998,7 +2131,9 @@  discard block
 block discarded – undo
1998 2131
 				$extralabelsline = $extrafieldsline->fetch_name_optionals_label($object->table_element_line);
1999 2132
 				
2000 2133
 				$colspan+=3; $mode = 'view';
2001
-				if($action === 'editline' && $line->rowid == GETPOST('lineid')) $mode = 'edit';
2134
+				if($action === 'editline' && $line->rowid == GETPOST('lineid')) {
2135
+					$mode = 'edit';
2136
+				}
2002 2137
 				
2003 2138
 				$ex_element = $line->element;
2004 2139
 				$line->element = 'tr_extrafield_title '.$line->element; // Pour pouvoir manipuler ces tr
@@ -2167,10 +2302,9 @@  discard block
 block discarded – undo
2167 2302
 	    
2168 2303
 	    if(TSubtotal::isTitle($line)){
2169 2304
 	        $ThtmlData['data-issubtotal'] = 'title';
2170
-	    }elseif(TSubtotal::isSubtotal($line)){
2305
+	    } elseif(TSubtotal::isSubtotal($line)){
2171 2306
 	        $ThtmlData['data-issubtotal'] = 'subtotal';
2172
-	    }
2173
-	    else{
2307
+	    } else{
2174 2308
 	        $ThtmlData['data-issubtotal'] = 'freetext';
2175 2309
 	    }
2176 2310
 	    
@@ -2180,7 +2314,9 @@  discard block
 block discarded – undo
2180 2314
 	    
2181 2315
 	    // hook 
2182 2316
 	    $reshook = $hookmanager->executeHooks('subtotalLineHtmlData',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
2183
-	    if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
2317
+	    if ($reshook < 0) {
2318
+	    	setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
2319
+	    }
2184 2320
 	    if ($reshook>0)
2185 2321
 	    {
2186 2322
 	        $ThtmlData = $hookmanager->resArray;
Please login to merge, or discard this patch.
Indentation   +196 added lines, -196 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
 	 * @return     void
48 48
 	 */
49 49
     
50
-    var $module_number = 104777;
50
+	var $module_number = 104777;
51 51
     
52
-    function formObjectOptions($parameters, &$object, &$action, $hookmanager) 
53
-    {
54
-      	global $langs,$db,$user, $conf;
52
+	function formObjectOptions($parameters, &$object, &$action, $hookmanager) 
53
+	{
54
+	  	global $langs,$db,$user, $conf;
55 55
 		
56 56
 		$langs->load('subtotal@subtotal');
57 57
 		
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
 				$createRight = $user->rights->facture->creer;
67 67
 			} elseif($object->element == 'order_supplier' )
68 68
 			{
69
-			    $createRight = $user->rights->fournisseur->commande->creer;
69
+				$createRight = $user->rights->fournisseur->commande->creer;
70 70
 			} elseif($object->element == 'invoice_supplier' )
71 71
 			{
72
-			    $createRight = $user->rights->fournisseur->facture->creer;
72
+				$createRight = $user->rights->fournisseur->facture->creer;
73 73
 			}
74 74
 			
75 75
 			if ($object->statut == 0  && $createRight) {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 					
120 120
 					if (!empty($conf->global->SUBTOTAL_AUTO_ADD_SUBTOTAL_ON_ADDING_NEW_TITLE) && $qty < 10) TSubtotal::addSubtotalMissing($object, $qty);
121 121
 					
122
-	    			TSubtotal::addSubTotalLine($object, $title, $qty);
122
+					TSubtotal::addSubTotalLine($object, $title, $qty);
123 123
 				}
124 124
 				else if($action==='ask_deleteallline') {
125 125
 						$form=new Form($db);
@@ -341,35 +341,35 @@  discard block
 block discarded – undo
341 341
 		$TContext = explode(':',$parameters['context']);
342 342
 		if (
343 343
 				in_array('invoicecard',$TContext)
344
-		        || in_array('invoicesuppliercard',$TContext)
344
+				|| in_array('invoicesuppliercard',$TContext)
345 345
 				|| in_array('propalcard',$TContext)
346 346
 				|| in_array('ordercard',$TContext)
347
-		        || in_array('ordersuppliercard',$TContext)
347
+				|| in_array('ordersuppliercard',$TContext)
348 348
 				|| in_array('invoicereccard',$TContext)
349 349
 			)
350
-	        {	
350
+			{	
351 351
 				$hideInnerLines	= isset( $_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']] ) ?  $_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']] : 0;
352 352
 				$hidedetails	= isset( $_SESSION['subtotal_hidedetails_'.$parameters['modulepart']] ) ?  $_SESSION['subtotal_hidedetails_'.$parameters['modulepart']] : 0;
353 353
 				$hideprices= isset( $_SESSION['subtotal_hideprices_'.$parameters['modulepart']] ) ?  $_SESSION['subtotal_hideprices_'.$parameters['modulepart']] : 0;
354 354
 				
355 355
 				$var=false;
356
-		     	$out.= '<tr '.$bc[$var].'>
356
+			 	$out.= '<tr '.$bc[$var].'>
357 357
 		     			<td colspan="4" align="right">
358 358
 		     				<label for="hideInnerLines">'.$langs->trans('HideInnerLines').'</label>
359 359
 		     				<input type="checkbox" onclick="if($(this).is(\':checked\')) { $(\'#hidedetails\').prop(\'checked\', \'checked\')  }" id="hideInnerLines" name="hideInnerLines" value="1" '.(( $hideInnerLines ) ? 'checked="checked"' : '' ).' />
360 360
 		     			</td>
361 361
 		     			</tr>';
362 362
 				
363
-		     	$var=!$var;
364
-		     	$out.= '<tr '.$bc[$var].'>
363
+			 	$var=!$var;
364
+			 	$out.= '<tr '.$bc[$var].'>
365 365
 		     			<td colspan="4" align="right">
366 366
 		     				<label for="hidedetails">'.$langs->trans('SubTotalhidedetails').'</label>
367 367
 		     				<input type="checkbox" id="hidedetails" name="hidedetails" value="1" '.(( $hidedetails ) ? 'checked="checked"' : '' ).' />
368 368
 		     			</td>
369 369
 		     			</tr>';
370 370
 		     	
371
-		     	$var=!$var;
372
-		     	$out.= '<tr '.$bc[$var].'>
371
+			 	$var=!$var;
372
+			 	$out.= '<tr '.$bc[$var].'>
373 373
 		     			<td colspan="4" align="right">
374 374
 		     				<label for="hidedetails">'.$langs->trans('SubTotalhidePrice').'</label>
375 375
 		     				<input type="checkbox" id="hideprices" name="hideprices" value="1" '.(( $hideprices ) ? 'checked="checked"' : '' ).' />
@@ -381,9 +381,9 @@  discard block
 block discarded – undo
381 381
 				if ( 
382 382
 					(in_array('propalcard',$TContext) && !empty($conf->global->SUBTOTAL_PROPAL_ADD_RECAP))
383 383
 					|| (in_array('ordercard',$TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP))
384
-				    || (in_array('ordersuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP))
384
+					|| (in_array('ordersuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP))
385 385
 					|| (in_array('invoicecard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
386
-				    || (in_array('invoicesuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
386
+					|| (in_array('invoicesuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
387 387
 					|| (in_array('invoicereccard',$TContext)  && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP ))
388 388
 				)
389 389
 				{
@@ -402,19 +402,19 @@  discard block
 block discarded – undo
402 402
 			}
403 403
 			
404 404
 		
405
-        return 1;
405
+		return 1;
406 406
 	} 
407 407
 	 
408
-    function formEditProductOptions($parameters, &$object, &$action, $hookmanager) 
409
-    {
408
+	function formEditProductOptions($parameters, &$object, &$action, $hookmanager) 
409
+	{
410 410
 		
411
-    	if (in_array('invoicecard',explode(':',$parameters['context'])))
412
-        {
411
+		if (in_array('invoicecard',explode(':',$parameters['context'])))
412
+		{
413 413
         	
414
-        }
414
+		}
415 415
 		
416
-        return 0;
417
-    }
416
+		return 0;
417
+	}
418 418
 	
419 419
 	function ODTSubstitutionLine(&$parameters, &$object, $action, $hookmanager) {
420 420
 		global $conf;
@@ -463,11 +463,11 @@  discard block
 block discarded – undo
463 463
 	
464 464
 		if (
465 465
 				in_array('invoicecard',explode(':',$parameters['context']))
466
-		        || in_array('invoicesuppliercard',explode(':',$parameters['context']))
466
+				|| in_array('invoicesuppliercard',explode(':',$parameters['context']))
467 467
 				|| in_array('propalcard',explode(':',$parameters['context']))
468
-		        || in_array('supplier_proposalcard',explode(':',$parameters['context']))
468
+				|| in_array('supplier_proposalcard',explode(':',$parameters['context']))
469 469
 				|| in_array('ordercard',explode(':',$parameters['context']))
470
-		        || in_array('ordersuppliercard',explode(':',$parameters['context']))
470
+				|| in_array('ordersuppliercard',explode(':',$parameters['context']))
471 471
 				|| in_array('invoicereccard',explode(':',$parameters['context']))
472 472
 		) {
473 473
 			
@@ -546,20 +546,20 @@  discard block
 block discarded – undo
546 546
 				in_array('invoicecard',explode(':',$parameters['context']))
547 547
 				|| in_array('propalcard',explode(':',$parameters['context']))
548 548
 				|| in_array('ordercard',explode(':',$parameters['context']))
549
-			    || in_array('ordersuppliercard',explode(':',$parameters['context']))
550
-			    || in_array('invoicesuppliercard',explode(':',$parameters['context']))
551
-			    || in_array('supplier_proposalcard',explode(':',$parameters['context']))
549
+				|| in_array('ordersuppliercard',explode(':',$parameters['context']))
550
+				|| in_array('invoicesuppliercard',explode(':',$parameters['context']))
551
+				|| in_array('supplier_proposalcard',explode(':',$parameters['context']))
552 552
 			)
553
-	        {								
553
+			{								
554 554
 				if(in_array('invoicecard',explode(':',$parameters['context']))) {
555 555
 					$sessname = 'subtotal_hideInnerLines_facture';	
556 556
 					$sessname2 = 'subtotal_hidedetails_facture';
557 557
 					$sessname3 = 'subtotal_hideprices_facture';
558 558
 				}
559 559
 				elseif(in_array('invoicesuppliercard',explode(':',$parameters['context']))) {
560
-				    $sessname = 'subtotal_hideInnerLines_facture_fournisseur';
561
-				    $sessname2 = 'subtotal_hidedetails_facture_fournisseur';
562
-				    $sessname3 = 'subtotal_hideprices_facture_fournisseur';
560
+					$sessname = 'subtotal_hideInnerLines_facture_fournisseur';
561
+					$sessname2 = 'subtotal_hidedetails_facture_fournisseur';
562
+					$sessname3 = 'subtotal_hideprices_facture_fournisseur';
563 563
 				}
564 564
 				elseif(in_array('propalcard',explode(':',$parameters['context']))) {
565 565
 					$sessname = 'subtotal_hideInnerLines_propal';
@@ -567,9 +567,9 @@  discard block
 block discarded – undo
567 567
 					$sessname3 = 'subtotal_hideprices_propal';
568 568
 				}
569 569
 				elseif(in_array('supplier_proposalcard',explode(':',$parameters['context']))) {
570
-				    $sessname = 'subtotal_hideInnerLines_supplier_proposal';
571
-				    $sessname2 = 'subtotal_hidedetails_supplier_proposal';
572
-				    $sessname3 = 'subtotal_hideprices_supplier_proposal';
570
+					$sessname = 'subtotal_hideInnerLines_supplier_proposal';
571
+					$sessname2 = 'subtotal_hidedetails_supplier_proposal';
572
+					$sessname3 = 'subtotal_hideprices_supplier_proposal';
573 573
 				}
574 574
 				elseif(in_array('ordercard',explode(':',$parameters['context']))) {
575 575
 					$sessname = 'subtotal_hideInnerLines_commande';
@@ -577,9 +577,9 @@  discard block
 block discarded – undo
577 577
 					$sessname3 = 'subtotal_hideprices_commande';
578 578
 				}
579 579
 				elseif(in_array('ordersuppliercard',explode(':',$parameters['context']))) {
580
-				    $sessname = 'subtotal_hideInnerLines_commande_fournisseur';
581
-				    $sessname2 = 'subtotal_hidedetails_commande_fournisseur';
582
-				    $sessname3 = 'subtotal_hideprices_commande_fournisseur';
580
+					$sessname = 'subtotal_hideInnerLines_commande_fournisseur';
581
+					$sessname2 = 'subtotal_hidedetails_commande_fournisseur';
582
+					$sessname3 = 'subtotal_hideprices_commande_fournisseur';
583 583
 				}
584 584
 				else {
585 585
 					$sessname = 'subtotal_hideInnerLines_unknown';
@@ -601,17 +601,17 @@  discard block
 block discarded – undo
601 601
 				foreach($object->lines as &$line) {
602 602
 					if ($line->product_type == 9 && $line->special_code == $this->module_number) {
603 603
 					    
604
-                        if($line->qty>=90) {
605
-                            $line->modsubtotal_total = 1;
606
-                        }
607
-                        else{
608
-                            $line->modsubtotal_title = 1;
609
-                        }
604
+						if($line->qty>=90) {
605
+							$line->modsubtotal_total = 1;
606
+						}
607
+						else{
608
+							$line->modsubtotal_title = 1;
609
+						}
610 610
                         
611 611
 						$line->total_ht = $this->getTotalLineFromObject($object, $line, '');
612 612
 					}
613
-	        	}
614
-	        }
613
+				}
614
+			}
615 615
 			
616 616
 		}
617 617
 		else if($action === 'confirm_delete_all_lines' && GETPOST('confirm')=='yes') {
@@ -628,7 +628,7 @@  discard block
 block discarded – undo
628 628
 				 */
629 629
 				else if($object->element=='invoice_supplier')
630 630
 				{
631
-				    $object->deleteline($idLine);
631
+					$object->deleteline($idLine);
632 632
 				}
633 633
 				/**
634 634
 				 * @var $object Propal
@@ -651,7 +651,7 @@  discard block
 block discarded – undo
651 651
 				 */
652 652
 				else if($object->element=='order_supplier')
653 653
 				{
654
-				    $object->deleteline($idLine);
654
+					$object->deleteline($idLine);
655 655
 				}
656 656
 				/**
657 657
 				 * @var $object Facturerec
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
 		
696 696
 		foreach($object->lines as $l) {
697 697
 		
698
-		    $lid = (!empty($l->rowid) ? $l->rowid : $l->id);
698
+			$lid = (!empty($l->rowid) ? $l->rowid : $l->id);
699 699
 			if($lid == $lineid) {
700 700
 
701 701
 				$found = true;
@@ -704,7 +704,7 @@  discard block
 block discarded – undo
704 704
 			
705 705
 			if($found) {
706 706
 				
707
-			    $Tab[] = (!empty($l->rowid) ? $l->rowid : $l->id);
707
+				$Tab[] = (!empty($l->rowid) ? $l->rowid : $l->id);
708 708
 				
709 709
 				if($l->special_code==$this->module_number && (($l->qty==99 && $qty_line==1) || ($l->qty==98 && $qty_line==2))   ) {
710 710
 					break; // end of story
@@ -783,17 +783,17 @@  discard block
 block discarded – undo
783 783
 			if($l->rang>=$rang) {
784 784
 				return price($total);
785 785
 			}
786
-                        if (TSubtotal::isSubtotal($l)){
787
-                            $total = 0;
788
-                        } else  if ($l->situation_percent > 0 ){
786
+						if (TSubtotal::isSubtotal($l)){
787
+							$total = 0;
788
+						} else  if ($l->situation_percent > 0 ){
789 789
                            
790 790
         	
791 791
 		 	$prev_progress = $l->get_prev_progress($object->id);
792 792
 		 	$progress = ($l->situation_percent - $prev_progress) /100;
793
-                        $total += ($l->total_ht/($l->situation_percent/100)) * $progress;
793
+						$total += ($l->total_ht/($l->situation_percent/100)) * $progress;
794 794
                         
795
-                    }
796
-                }
795
+					}
796
+				}
797 797
                 
798 798
 		return price($total);
799 799
 	}
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
 		if(method_exists('Closure','bind')) {
826 826
 			$pageBreakOriginalValue = $pdf->AcceptPageBreak();
827 827
 			$sweetsThief = function ($pdf) {
828
-		    		return $pdf->bMargin ;
828
+					return $pdf->bMargin ;
829 829
 			};
830 830
 			$sweetsThief = Closure::bind($sweetsThief, null, $pdf);
831 831
 	
@@ -888,11 +888,11 @@  discard block
 block discarded – undo
888 888
 				else
889 889
 				{
890 890
 					list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1);
891
-                                        if(get_class($object) == 'Facture' && $object->type==Facture::TYPE_SITUATION){//Facture de situation
892
-                                                $total_to_print = $this->getTotalToPrintSituation($object, $line);
893
-                                        } else {
894
-                                            	$total_to_print = price($total);
895
-                                        }
891
+										if(get_class($object) == 'Facture' && $object->type==Facture::TYPE_SITUATION){//Facture de situation
892
+												$total_to_print = $this->getTotalToPrintSituation($object, $line);
893
+										} else {
894
+												$total_to_print = price($total);
895
+										}
896 896
                                             
897 897
 					$line->total_ht = $total;
898 898
 					$line->total = $total;
@@ -1082,19 +1082,19 @@  discard block
 block discarded – undo
1082 1082
 			}
1083 1083
 		}
1084 1084
 		if ((int)GETPOST('hideInnerLines') && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES)){
1085
-		    if(is_array($parameters)) $i = & $parameters['i'];
1086
-		    else $i = (int)$parameters;
1087
-		    $this->resprints = price($object->lines[$i]->total_ht);
1085
+			if(is_array($parameters)) $i = & $parameters['i'];
1086
+			else $i = (int)$parameters;
1087
+			$this->resprints = price($object->lines[$i]->total_ht);
1088 1088
 		}
1089 1089
 		if (!empty($hideprices)
1090
-		    || (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1091
-		    )
1090
+			|| (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1091
+			)
1092 1092
 		{
1093
-		    if (!empty($hideprices) || !in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1094
-		    {
1095
-		        $this->resprints = ' ';
1096
-		        return 1;
1097
-		    }
1093
+			if (!empty($hideprices) || !in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1094
+			{
1095
+				$this->resprints = ' ';
1096
+				return 1;
1097
+			}
1098 1098
 		}
1099 1099
         
1100 1100
 		return 0;
@@ -1374,11 +1374,11 @@  discard block
 block discarded – undo
1374 1374
 		$hidedetails = (int)GETPOST('hidedetails');
1375 1375
 		
1376 1376
 		if ($hideInnerLines) { // si c une ligne de titre
1377
-	    	$fk_parent_line=0;
1377
+			$fk_parent_line=0;
1378 1378
 			$TLines =array();
1379 1379
 		
1380 1380
 			$original_count=count($object->lines);
1381
-		    $TTvas = array(); // tableau de tva
1381
+			$TTvas = array(); // tableau de tva
1382 1382
 		    
1383 1383
 			foreach($object->lines as $k=>&$line) 
1384 1384
 			{
@@ -1408,48 +1408,48 @@  discard block
 block discarded – undo
1408 1408
 			
1409 1409
 				if ($hideInnerLines)
1410 1410
 				{
1411
-				    if(!empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES))
1412
-				    {
1413
-				        if($line->tva_tx != '0.000' && $line->product_type!=9){
1411
+					if(!empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES))
1412
+					{
1413
+						if($line->tva_tx != '0.000' && $line->product_type!=9){
1414 1414
 				            
1415
-    				        // on remplit le tableau de tva pour substituer les lignes cachées
1416
-    				        $TTvas[$line->tva_tx]['total_tva'] += $line->total_tva;
1417
-    				        $TTvas[$line->tva_tx]['total_ht'] += $line->total_ht;
1418
-    				        $TTvas[$line->tva_tx]['total_ttc'] += $line->total_ttc; 
1419
-    				    }
1420
-    					if($line->product_type==9 && $line->rowid>0)
1421
-    					{
1422
-    					    //Cas où je doit cacher les produits et afficher uniquement les sous-totaux avec les titres
1423
-    					    // génère des lignes d'affichage des montants HT soumis à tva
1424
-    					    $nbtva = count($TTvas);
1425
-    					    if(!empty($nbtva)){
1426
-    					        foreach ($TTvas as $tx =>$val){
1427
-    					            $l = clone $line;
1428
-    					            $l->product_type = 1;
1429
-    					            $l->special_code = '';
1430
-    					            $l->qty = 1;
1431
-    					            $l->desc = $langs->trans('AmountBeforeTaxesSubjectToVATX%', $langs->transnoentitiesnoconv('VAT'), price($tx));
1432
-    					            $l->tva_tx = $tx;
1433
-    					            $l->total_ht = $val['total_ht'];
1434
-    					            $l->total_tva = $val['total_tva'];
1435
-    					            $l->total = $line->total_ht;
1436
-    					            $l->total_ttc = $val['total_ttc'];
1437
-    					            $TLines[] = $l;
1438
-    					            array_shift($TTvas);
1439
-    					       }
1440
-    					    }
1415
+							// on remplit le tableau de tva pour substituer les lignes cachées
1416
+							$TTvas[$line->tva_tx]['total_tva'] += $line->total_tva;
1417
+							$TTvas[$line->tva_tx]['total_ht'] += $line->total_ht;
1418
+							$TTvas[$line->tva_tx]['total_ttc'] += $line->total_ttc; 
1419
+						}
1420
+						if($line->product_type==9 && $line->rowid>0)
1421
+						{
1422
+							//Cas où je doit cacher les produits et afficher uniquement les sous-totaux avec les titres
1423
+							// génère des lignes d'affichage des montants HT soumis à tva
1424
+							$nbtva = count($TTvas);
1425
+							if(!empty($nbtva)){
1426
+								foreach ($TTvas as $tx =>$val){
1427
+									$l = clone $line;
1428
+									$l->product_type = 1;
1429
+									$l->special_code = '';
1430
+									$l->qty = 1;
1431
+									$l->desc = $langs->trans('AmountBeforeTaxesSubjectToVATX%', $langs->transnoentitiesnoconv('VAT'), price($tx));
1432
+									$l->tva_tx = $tx;
1433
+									$l->total_ht = $val['total_ht'];
1434
+									$l->total_tva = $val['total_tva'];
1435
+									$l->total = $line->total_ht;
1436
+									$l->total_ttc = $val['total_ttc'];
1437
+									$TLines[] = $l;
1438
+									array_shift($TTvas);
1439
+							   }
1440
+							}
1441 1441
     					    
1442
-    					    // ajoute la ligne de sous-total
1443
-    					    $TLines[] = $line; 
1444
-    					}
1445
-				    } else {
1442
+							// ajoute la ligne de sous-total
1443
+							$TLines[] = $line; 
1444
+						}
1445
+					} else {
1446 1446
 				        
1447
-				        if($line->product_type==9 && $line->rowid>0)
1448
-				        {
1449
-				            // ajoute la ligne de sous-total
1450
-				            $TLines[] = $line; 
1451
-				        }
1452
-				    }
1447
+						if($line->product_type==9 && $line->rowid>0)
1448
+						{
1449
+							// ajoute la ligne de sous-total
1450
+							$TLines[] = $line; 
1451
+						}
1452
+					}
1453 1453
 				    
1454 1454
 					
1455 1455
 				}
@@ -1474,20 +1474,20 @@  discard block
 block discarded – undo
1474 1474
 			$nbtva = count($TTvas);
1475 1475
 			if(!empty($nbtva) && $hideInnerLines && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES))
1476 1476
 			{
1477
-			    foreach ($TTvas as $tx =>$val){
1478
-			        $l = clone $line;
1479
-			        $l->product_type = 1;
1480
-			        $l->special_code = '';
1481
-			        $l->qty = 1;
1482
-			        $l->desc = $langs->trans('AmountBeforeTaxesSubjectToVATX%', $langs->transnoentitiesnoconv('VAT'), price($tx));
1483
-			        $l->tva_tx = $tx;
1484
-			        $l->total_ht = $val['total_ht'];
1485
-			        $l->total_tva = $val['total_tva'];
1486
-			        $l->total = $line->total_ht;
1487
-			        $l->total_ttc = $val['total_ttc'];
1488
-			        $TLines[] = $l;
1489
-			        array_shift($TTvas);
1490
-			    }
1477
+				foreach ($TTvas as $tx =>$val){
1478
+					$l = clone $line;
1479
+					$l->product_type = 1;
1480
+					$l->special_code = '';
1481
+					$l->qty = 1;
1482
+					$l->desc = $langs->trans('AmountBeforeTaxesSubjectToVATX%', $langs->transnoentitiesnoconv('VAT'), price($tx));
1483
+					$l->tva_tx = $tx;
1484
+					$l->total_ht = $val['total_ht'];
1485
+					$l->total_tva = $val['total_tva'];
1486
+					$l->total = $line->total_ht;
1487
+					$l->total_ttc = $val['total_ttc'];
1488
+					$TLines[] = $l;
1489
+					array_shift($TTvas);
1490
+				}
1491 1491
 			}
1492 1492
 			
1493 1493
 			global $nblignes;
@@ -1499,7 +1499,7 @@  discard block
 block discarded – undo
1499 1499
 				$this->resprints = '';
1500 1500
 				return 0;
1501 1501
 			}
1502
-	    }
1502
+		}
1503 1503
 		
1504 1504
 		return 0;
1505 1505
 	}
@@ -1662,18 +1662,18 @@  discard block
 block discarded – undo
1662 1662
 		}
1663 1663
 		elseif($object->element == 'order_supplier' )
1664 1664
 		{
1665
-		    $createRight = $user->rights->fournisseur->commande->creer;
1665
+			$createRight = $user->rights->fournisseur->commande->creer;
1666 1666
 		}
1667 1667
 		elseif($object->element == 'invoice_supplier' )
1668 1668
 		{
1669
-		    $createRight = $user->rights->fournisseur->facture->creer;
1669
+			$createRight = $user->rights->fournisseur->facture->creer;
1670 1670
 		}
1671 1671
 		
1672 1672
 		if($line->special_code!=$this->module_number || $line->product_type!=9) {
1673 1673
 			null;
1674 1674
 		}	
1675 1675
 		else if (in_array('invoicecard',$contexts) || in_array('invoicesuppliercard',$contexts) || in_array('propalcard',$contexts) || in_array('supplier_proposalcard',$contexts) || in_array('ordercard',$contexts) || in_array('ordersuppliercard',$contexts) || in_array('invoicereccard',$contexts)) 
1676
-        {
1676
+		{
1677 1677
 			if($object->element=='facture')$idvar = 'facid';
1678 1678
 			else $idvar='id';
1679 1679
 			
@@ -1720,7 +1720,7 @@  discard block
 block discarded – undo
1720 1720
 			//var_dump($line);
1721 1721
             
1722 1722
 			// HTML 5 data for js
1723
-            $data = $this->_getHtmlData($parameters, $object, $action, $hookmanager);
1723
+			$data = $this->_getHtmlData($parameters, $object, $action, $hookmanager);
1724 1724
             
1725 1725
 			
1726 1726
 			?>
@@ -1778,8 +1778,8 @@  discard block
 block discarded – undo
1778 1778
 						}
1779 1779
 						
1780 1780
 						if ($object->element == 'order_supplier' || $object->element == 'invoice_supplier') {
1781
-						    $line->label = !empty($line->description) ? $line->description : $line->desc;
1782
-						    $line->description = '';
1781
+							$line->label = !empty($line->description) ? $line->description : $line->desc;
1782
+							$line->description = '';
1783 1783
 						}
1784 1784
 						$newlabel = $line->label;
1785 1785
 						if($line->label=='' && !$isFreeText) {
@@ -2070,17 +2070,17 @@  discard block
 block discarded – undo
2070 2070
 		if ($object->statut == 0 && !empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && $action != 'editline')
2071 2071
 		{
2072 2072
 		    
2073
-		    if($object->element == 'invoice_supplier' || $object->element == 'order_supplier')
2074
-		    {
2075
-		        foreach ($object->lines as $line)
2076
-		        {
2077
-		            // fetch optionals attributes and labels
2078
-		            require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
2079
-		            $extrafields=new ExtraFields($this->db);
2080
-		            $extralabels=$extrafields->fetch_name_optionals_label($object->table_element_line,true);
2081
-		            $line->fetch_optionals($line->id,$extralabels);
2082
-		        }
2083
-		    }
2073
+			if($object->element == 'invoice_supplier' || $object->element == 'order_supplier')
2074
+			{
2075
+				foreach ($object->lines as $line)
2076
+				{
2077
+					// fetch optionals attributes and labels
2078
+					require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
2079
+					$extrafields=new ExtraFields($this->db);
2080
+					$extralabels=$extrafields->fetch_name_optionals_label($object->table_element_line,true);
2081
+					$line->fetch_optionals($line->id,$extralabels);
2082
+				}
2083
+			}
2084 2084
 		    
2085 2085
 			$TSubNc = array();
2086 2086
 			foreach ($object->lines as &$l)
@@ -2171,80 +2171,80 @@  discard block
 block discarded – undo
2171 2171
 	{
2172 2172
 		dol_include_once('/subtotal/class/subtotal.class.php');
2173 2173
 
2174
-	    $line = &$parameters['line'];
2174
+		$line = &$parameters['line'];
2175 2175
 	    
2176
-	    $ThtmlData['data-id']           = $line->id;
2177
-	    $ThtmlData['data-product_type'] = $line->product_type;
2178
-	    $ThtmlData['data-qty']          = 0; //$line->qty;
2179
-	    $ThtmlData['data-level']        = TSubtotal::getNiveau($line);
2176
+		$ThtmlData['data-id']           = $line->id;
2177
+		$ThtmlData['data-product_type'] = $line->product_type;
2178
+		$ThtmlData['data-qty']          = 0; //$line->qty;
2179
+		$ThtmlData['data-level']        = TSubtotal::getNiveau($line);
2180 2180
 	    
2181
-	    if(TSubtotal::isTitle($line)){
2182
-	        $ThtmlData['data-issubtotal'] = 'title';
2183
-	    }elseif(TSubtotal::isSubtotal($line)){
2184
-	        $ThtmlData['data-issubtotal'] = 'subtotal';
2185
-	    }
2186
-	    else{
2187
-	        $ThtmlData['data-issubtotal'] = 'freetext';
2188
-	    }
2181
+		if(TSubtotal::isTitle($line)){
2182
+			$ThtmlData['data-issubtotal'] = 'title';
2183
+		}elseif(TSubtotal::isSubtotal($line)){
2184
+			$ThtmlData['data-issubtotal'] = 'subtotal';
2185
+		}
2186
+		else{
2187
+			$ThtmlData['data-issubtotal'] = 'freetext';
2188
+		}
2189 2189
 	    
2190 2190
 	    
2191
-	    // Change or add data  from hooks
2192
-	    $parameters = array_replace($parameters , array(  'ThtmlData' => $ThtmlData )  );
2191
+		// Change or add data  from hooks
2192
+		$parameters = array_replace($parameters , array(  'ThtmlData' => $ThtmlData )  );
2193 2193
 	    
2194
-	    // hook 
2195
-	    $reshook = $hookmanager->executeHooks('subtotalLineHtmlData',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
2196
-	    if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
2197
-	    if ($reshook>0)
2198
-	    {
2199
-	        $ThtmlData = $hookmanager->resArray;
2200
-	    }
2201
-
2202
-	    return $this->implodeHtmlData($ThtmlData);
2194
+		// hook 
2195
+		$reshook = $hookmanager->executeHooks('subtotalLineHtmlData',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
2196
+		if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
2197
+		if ($reshook>0)
2198
+		{
2199
+			$ThtmlData = $hookmanager->resArray;
2200
+		}
2201
+
2202
+		return $this->implodeHtmlData($ThtmlData);
2203 2203
 	
2204 2204
 	}
2205 2205
 	
2206 2206
 	
2207 2207
 	function implodeHtmlData($ThtmlData = array())
2208 2208
 	{
2209
-	    $data = '';
2210
-	    foreach($ThtmlData as $k => $h )
2211
-	    {
2212
-	        if(is_array($h))
2213
-	        {
2214
-	            $h = json_encode($h);
2215
-	        }
2209
+		$data = '';
2210
+		foreach($ThtmlData as $k => $h )
2211
+		{
2212
+			if(is_array($h))
2213
+			{
2214
+				$h = json_encode($h);
2215
+			}
2216 2216
 	        
2217
-	        $data .= $k . '="'.dol_htmlentities($h, ENT_QUOTES).'" ';
2218
-	    }
2217
+			$data .= $k . '="'.dol_htmlentities($h, ENT_QUOTES).'" ';
2218
+		}
2219 2219
 	    
2220
-	    return $data;
2220
+		return $data;
2221 2221
 	}
2222 2222
 	
2223 2223
 	function _ajax_block_order_js($object)
2224 2224
 	{
2225
-	    global $conf,$tagidfortablednd,$filepath,$langs;
2225
+		global $conf,$tagidfortablednd,$filepath,$langs;
2226 2226
 	    
2227
-	    /*
2227
+		/*
2228 2228
 	     * this part of js is base on dolibarr htdocs/core/tpl/ajaxrow.tpl.php 
2229 2229
 	     * for compatibility reasons we don't use tableDnD but jquery sortable
2230 2230
 	     */
2231 2231
 	    
2232
-	    $id=$object->id;
2233
-	    $nboflines=(isset($object->lines)?count($object->lines):0);
2234
-	    $forcereloadpage=empty($conf->global->MAIN_FORCE_RELOAD_PAGE)?0:1;
2232
+		$id=$object->id;
2233
+		$nboflines=(isset($object->lines)?count($object->lines):0);
2234
+		$forcereloadpage=empty($conf->global->MAIN_FORCE_RELOAD_PAGE)?0:1;
2235 2235
 	    
2236
-	    $id=$object->id;
2237
-	    $fk_element=$object->fk_element;
2238
-	    $table_element_line=$object->table_element_line;
2239
-	    $nboflines=(isset($object->lines)?count($object->lines):(empty($nboflines)?0:$nboflines));
2240
-	    $tagidfortablednd=(empty($tagidfortablednd)?'tablelines':$tagidfortablednd);
2241
-	    $filepath=(empty($filepath)?'':$filepath);
2236
+		$id=$object->id;
2237
+		$fk_element=$object->fk_element;
2238
+		$table_element_line=$object->table_element_line;
2239
+		$nboflines=(isset($object->lines)?count($object->lines):(empty($nboflines)?0:$nboflines));
2240
+		$tagidfortablednd=(empty($tagidfortablednd)?'tablelines':$tagidfortablednd);
2241
+		$filepath=(empty($filepath)?'':$filepath);
2242 2242
 	    
2243 2243
 	    
2244
-	    if (GETPOST('action','aZ09') != 'editline' && $nboflines > 1)
2245
-	    {
2244
+		if (GETPOST('action','aZ09') != 'editline' && $nboflines > 1)
2245
+		{
2246 2246
 	        
2247
-	        ?>
2247
+			?>
2248 2248
 		
2249 2249
 		
2250 2250
 			<script type="text/javascript">
Please login to merge, or discard this patch.
Spacing   +380 added lines, -380 removed lines patch added patch discarded remove patch
@@ -51,43 +51,43 @@  discard block
 block discarded – undo
51 51
     
52 52
     function formObjectOptions($parameters, &$object, &$action, $hookmanager) 
53 53
     {
54
-      	global $langs,$db,$user, $conf;
54
+      	global $langs, $db, $user, $conf;
55 55
 		
56 56
 		$langs->load('subtotal@subtotal');
57 57
 		
58
-		$contexts = explode(':',$parameters['context']);
58
+		$contexts = explode(':', $parameters['context']);
59 59
 		
60
-		if(in_array('ordercard',$contexts) || in_array('ordersuppliercard',$contexts) || in_array('propalcard',$contexts) || in_array('supplier_proposalcard',$contexts) || in_array('invoicecard',$contexts) || in_array('invoicesuppliercard',$contexts) || in_array('invoicereccard',$contexts)) {
60
+		if (in_array('ordercard', $contexts) || in_array('ordersuppliercard', $contexts) || in_array('propalcard', $contexts) || in_array('supplier_proposalcard', $contexts) || in_array('invoicecard', $contexts) || in_array('invoicesuppliercard', $contexts) || in_array('invoicereccard', $contexts)) {
61 61
 			
62 62
 			$createRight = $user->rights->{$object->element}->creer;
63
-			if($object->element == 'facturerec' )
63
+			if ($object->element == 'facturerec')
64 64
 			{
65 65
 				$object->statut = 0; // hack for facture rec
66 66
 				$createRight = $user->rights->facture->creer;
67
-			} elseif($object->element == 'order_supplier' )
67
+			} elseif ($object->element == 'order_supplier')
68 68
 			{
69 69
 			    $createRight = $user->rights->fournisseur->commande->creer;
70
-			} elseif($object->element == 'invoice_supplier' )
70
+			} elseif ($object->element == 'invoice_supplier')
71 71
 			{
72 72
 			    $createRight = $user->rights->fournisseur->facture->creer;
73 73
 			}
74 74
 			
75
-			if ($object->statut == 0  && $createRight) {
75
+			if ($object->statut == 0 && $createRight) {
76 76
 			
77 77
 
78
-				if($object->element=='facture')$idvar = 'facid';
79
-				else $idvar='id';
78
+				if ($object->element == 'facture')$idvar = 'facid';
79
+				else $idvar = 'id';
80 80
 				
81
-				if(in_array($action, array('add_title_line', 'add_total_line', 'add_subtitle_line', 'add_subtotal_line', 'add_free_text')) )
81
+				if (in_array($action, array('add_title_line', 'add_total_line', 'add_subtitle_line', 'add_subtotal_line', 'add_free_text')))
82 82
 				{
83 83
 					$level = GETPOST('level', 'int'); //New avec SUBTOTAL_USE_NEW_FORMAT
84 84
 					
85
-					if($action=='add_title_line') {
85
+					if ($action == 'add_title_line') {
86 86
 						$title = GETPOST('title');
87
-						if(empty($title)) $title = $langs->trans('title');
88
-						$qty = $level<1 ? 1 : $level ;
87
+						if (empty($title)) $title = $langs->trans('title');
88
+						$qty = $level < 1 ? 1 : $level;
89 89
 					}
90
-					else if($action=='add_free_text') {
90
+					else if ($action == 'add_free_text') {
91 91
 						$title = GETPOST('title');
92 92
 
93 93
 						if (empty($title)) {
@@ -99,21 +99,21 @@  discard block
 block discarded – undo
99 99
 								}
100 100
 							}
101 101
 						}
102
-						if(empty($title)) $title = $langs->trans('subtotalAddLineDescription');
102
+						if (empty($title)) $title = $langs->trans('subtotalAddLineDescription');
103 103
 						$qty = 50;
104 104
 					}
105
-					else if($action=='add_subtitle_line') {
105
+					else if ($action == 'add_subtitle_line') {
106 106
 						$title = GETPOST('title');
107
-						if(empty($title)) $title = $langs->trans('subtitle');
107
+						if (empty($title)) $title = $langs->trans('subtitle');
108 108
 						$qty = 2;
109 109
 					}
110
-					else if($action=='add_subtotal_line') {
110
+					else if ($action == 'add_subtotal_line') {
111 111
 						$title = $langs->trans('SubSubTotal');
112 112
 						$qty = 98;
113 113
 					}
114 114
 					else {
115 115
 						$title = GETPOST('title') ? GETPOST('title') : $langs->trans('SubTotal');
116
-						$qty = $level ? 100-$level : 99;
116
+						$qty = $level ? 100 - $level : 99;
117 117
 					}
118 118
 					dol_include_once('/subtotal/class/subtotal.class.php');
119 119
 					
@@ -121,15 +121,15 @@  discard block
 block discarded – undo
121 121
 					
122 122
 	    			TSubtotal::addSubTotalLine($object, $title, $qty);
123 123
 				}
124
-				else if($action==='ask_deleteallline') {
125
-						$form=new Form($db);
124
+				else if ($action === 'ask_deleteallline') {
125
+						$form = new Form($db);
126 126
 						
127
-						$lineid = GETPOST('lineid','integer');
127
+						$lineid = GETPOST('lineid', 'integer');
128 128
 						$TIdForGroup = $this->getArrayOfLineForAGroup($object, $lineid);
129 129
 					
130 130
 						$nbLines = count($TIdForGroup);
131 131
 					
132
-						$formconfirm=$form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id.'&lineid='.$lineid, $langs->trans('deleteWithAllLines'), $langs->trans('ConfirmDeleteAllThisLines',$nbLines), 'confirm_delete_all_lines','',0,1);
132
+						$formconfirm = $form->formconfirm($_SERVER["PHP_SELF"].'?id='.$object->id.'&lineid='.$lineid, $langs->trans('deleteWithAllLines'), $langs->trans('ConfirmDeleteAllThisLines', $nbLines), 'confirm_delete_all_lines', '', 0, 1);
133 133
 						print $formconfirm;
134 134
 				}
135 135
 
@@ -139,13 +139,13 @@  discard block
 block discarded – undo
139 139
 				}
140 140
 
141 141
 				
142
-				if($action!='editline') {
142
+				if ($action != 'editline') {
143 143
 					// New format is for 3.8
144 144
 					$this->printNewFormat($object, $conf, $langs, $idvar);
145 145
 				}
146 146
 			}
147 147
 		}
148
-		elseif ((!empty($parameters['currentcontext']) && $parameters['currentcontext'] == 'orderstoinvoice') || in_array('orderstoinvoice',$contexts))
148
+		elseif ((!empty($parameters['currentcontext']) && $parameters['currentcontext'] == 'orderstoinvoice') || in_array('orderstoinvoice', $contexts))
149 149
 		{
150 150
 			?>
151 151
 			<script type="text/javascript">
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 				$(document).ready(function() {
171 171
 					$('div.fiche div.tabsAction').append('<br />');
172 172
 					
173
-					$('div.fiche div.tabsAction').append('<div class="inline-block divButAction"><a id="add_title_line" rel="add_title_line" href="javascript:;" class="butAction"><?php echo  $langs->trans('AddTitle' )?></a></div>');
173
+					$('div.fiche div.tabsAction').append('<div class="inline-block divButAction"><a id="add_title_line" rel="add_title_line" href="javascript:;" class="butAction"><?php echo  $langs->trans('AddTitle')?></a></div>');
174 174
 					$('div.fiche div.tabsAction').append('<div class="inline-block divButAction"><a id="add_total_line" rel="add_total_line" href="javascript:;" class="butAction"><?php echo  $langs->trans('AddSubTotal')?></a></div>');
175 175
 					$('div.fiche div.tabsAction').append('<div class="inline-block divButAction"><a id="add_free_text" rel="add_free_text" href="javascript:;" class="butAction"><?php echo  $langs->trans('AddFreeText')?></a></div>');
176 176
 
@@ -221,9 +221,9 @@  discard block
 block discarded – undo
221 221
 						$('body').append(dialog_html);
222 222
 
223 223
 						<?php 
224
-						$editorTool = empty($conf->global->FCKEDITOR_EDITORNAME)?'ckeditor':$conf->global->FCKEDITOR_EDITORNAME;
225
-						$editorConf = empty($conf->global->FCKEDITOR_ENABLE_DETAILS)?false:$conf->global->FCKEDITOR_ENABLE_DETAILS;
226
-						if($editorConf && in_array($editorTool,array('textarea','ckeditor'))){ 
224
+						$editorTool = empty($conf->global->FCKEDITOR_EDITORNAME) ? 'ckeditor' : $conf->global->FCKEDITOR_EDITORNAME;
225
+						$editorConf = empty($conf->global->FCKEDITOR_ENABLE_DETAILS) ?false:$conf->global->FCKEDITOR_ENABLE_DETAILS;
226
+						if ($editorConf && in_array($editorTool, array('textarea', 'ckeditor'))) { 
227 227
 						?>
228 228
 						if (action == 'addTitle' || action == 'addFreeTxt')
229 229
 						{
@@ -338,61 +338,61 @@  discard block
 block discarded – undo
338 338
 		global $conf, $langs, $bc;
339 339
 			
340 340
 		$action = GETPOST('action');	
341
-		$TContext = explode(':',$parameters['context']);
341
+		$TContext = explode(':', $parameters['context']);
342 342
 		if (
343
-				in_array('invoicecard',$TContext)
344
-		        || in_array('invoicesuppliercard',$TContext)
345
-				|| in_array('propalcard',$TContext)
346
-				|| in_array('ordercard',$TContext)
347
-		        || in_array('ordersuppliercard',$TContext)
348
-				|| in_array('invoicereccard',$TContext)
343
+				in_array('invoicecard', $TContext)
344
+		        || in_array('invoicesuppliercard', $TContext)
345
+				|| in_array('propalcard', $TContext)
346
+				|| in_array('ordercard', $TContext)
347
+		        || in_array('ordersuppliercard', $TContext)
348
+				|| in_array('invoicereccard', $TContext)
349 349
 			)
350 350
 	        {	
351
-				$hideInnerLines	= isset( $_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']] ) ?  $_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']] : 0;
352
-				$hidedetails	= isset( $_SESSION['subtotal_hidedetails_'.$parameters['modulepart']] ) ?  $_SESSION['subtotal_hidedetails_'.$parameters['modulepart']] : 0;
353
-				$hideprices= isset( $_SESSION['subtotal_hideprices_'.$parameters['modulepart']] ) ?  $_SESSION['subtotal_hideprices_'.$parameters['modulepart']] : 0;
351
+				$hideInnerLines = isset($_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']]) ? $_SESSION['subtotal_hideInnerLines_'.$parameters['modulepart']] : 0;
352
+				$hidedetails = isset($_SESSION['subtotal_hidedetails_'.$parameters['modulepart']]) ? $_SESSION['subtotal_hidedetails_'.$parameters['modulepart']] : 0;
353
+				$hideprices = isset($_SESSION['subtotal_hideprices_'.$parameters['modulepart']]) ? $_SESSION['subtotal_hideprices_'.$parameters['modulepart']] : 0;
354 354
 				
355
-				$var=false;
356
-		     	$out.= '<tr '.$bc[$var].'>
355
+				$var = false;
356
+		     	$out .= '<tr '.$bc[$var].'>
357 357
 		     			<td colspan="4" align="right">
358 358
 		     				<label for="hideInnerLines">'.$langs->trans('HideInnerLines').'</label>
359
-		     				<input type="checkbox" onclick="if($(this).is(\':checked\')) { $(\'#hidedetails\').prop(\'checked\', \'checked\')  }" id="hideInnerLines" name="hideInnerLines" value="1" '.(( $hideInnerLines ) ? 'checked="checked"' : '' ).' />
359
+		     				<input type="checkbox" onclick="if($(this).is(\':checked\')) { $(\'#hidedetails\').prop(\'checked\', \'checked\')  }" id="hideInnerLines" name="hideInnerLines" value="1" '.(($hideInnerLines) ? 'checked="checked"' : '').' />
360 360
 		     			</td>
361 361
 		     			</tr>';
362 362
 				
363
-		     	$var=!$var;
364
-		     	$out.= '<tr '.$bc[$var].'>
363
+		     	$var = !$var;
364
+		     	$out .= '<tr '.$bc[$var].'>
365 365
 		     			<td colspan="4" align="right">
366 366
 		     				<label for="hidedetails">'.$langs->trans('SubTotalhidedetails').'</label>
367
-		     				<input type="checkbox" id="hidedetails" name="hidedetails" value="1" '.(( $hidedetails ) ? 'checked="checked"' : '' ).' />
367
+		     				<input type="checkbox" id="hidedetails" name="hidedetails" value="1" '.(($hidedetails) ? 'checked="checked"' : '').' />
368 368
 		     			</td>
369 369
 		     			</tr>';
370 370
 		     	
371
-		     	$var=!$var;
372
-		     	$out.= '<tr '.$bc[$var].'>
371
+		     	$var = !$var;
372
+		     	$out .= '<tr '.$bc[$var].'>
373 373
 		     			<td colspan="4" align="right">
374 374
 		     				<label for="hidedetails">'.$langs->trans('SubTotalhidePrice').'</label>
375
-		     				<input type="checkbox" id="hideprices" name="hideprices" value="1" '.(( $hideprices ) ? 'checked="checked"' : '' ).' />
375
+		     				<input type="checkbox" id="hideprices" name="hideprices" value="1" '.(($hideprices) ? 'checked="checked"' : '').' />
376 376
 		     			</td>
377 377
 		     			</tr>';
378 378
 		     	
379 379
 		     	
380 380
 				 
381 381
 				if ( 
382
-					(in_array('propalcard',$TContext) && !empty($conf->global->SUBTOTAL_PROPAL_ADD_RECAP))
383
-					|| (in_array('ordercard',$TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP))
384
-				    || (in_array('ordersuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP))
385
-					|| (in_array('invoicecard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
386
-				    || (in_array('invoicesuppliercard',$TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
387
-					|| (in_array('invoicereccard',$TContext)  && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP ))
382
+					(in_array('propalcard', $TContext) && !empty($conf->global->SUBTOTAL_PROPAL_ADD_RECAP))
383
+					|| (in_array('ordercard', $TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP))
384
+				    || (in_array('ordersuppliercard', $TContext) && !empty($conf->global->SUBTOTAL_COMMANDE_ADD_RECAP))
385
+					|| (in_array('invoicecard', $TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
386
+				    || (in_array('invoicesuppliercard', $TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
387
+					|| (in_array('invoicereccard', $TContext) && !empty($conf->global->SUBTOTAL_INVOICE_ADD_RECAP))
388 388
 				)
389 389
 				{
390
-					$var=!$var;
391
-					$out.= '
390
+					$var = !$var;
391
+					$out .= '
392 392
 						<tr '.$bc[$var].'>
393 393
 							<td colspan="4" align="right">
394 394
 								<label for="subtotal_add_recap">'.$langs->trans('subtotal_add_recap').'</label>
395
-								<input type="checkbox" id="subtotal_add_recap" name="subtotal_add_recap" value="1" '.( GETPOST('subtotal_add_recap') ? 'checked="checked"' : '' ).' />
395
+								<input type="checkbox" id="subtotal_add_recap" name="subtotal_add_recap" value="1" '.(GETPOST('subtotal_add_recap') ? 'checked="checked"' : '').' />
396 396
 							</td>
397 397
 						</tr>';
398 398
 				}
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
     function formEditProductOptions($parameters, &$object, &$action, $hookmanager) 
409 409
     {
410 410
 		
411
-    	if (in_array('invoicecard',explode(':',$parameters['context'])))
411
+    	if (in_array('invoicecard', explode(':', $parameters['context'])))
412 412
         {
413 413
         	
414 414
         }
@@ -419,13 +419,13 @@  discard block
 block discarded – undo
419 419
 	function ODTSubstitutionLine(&$parameters, &$object, $action, $hookmanager) {
420 420
 		global $conf;
421 421
 		
422
-		if($action === 'builddoc') {
422
+		if ($action === 'builddoc') {
423 423
 			
424 424
 			$line = &$parameters['line'];
425 425
 			$object = &$parameters['object'];
426 426
 			$substitutionarray = &$parameters['substitutionarray'];
427 427
 			
428
-			if($line->product_type == 9 && $line->special_code == $this->module_number) {
428
+			if ($line->product_type == 9 && $line->special_code == $this->module_number) {
429 429
 				$substitutionarray['line_modsubtotal'] = 1;	
430 430
 				
431 431
 				$substitutionarray['line_price_ht']
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
 					 = $substitutionarray['line_up'] 
437 437
 					 = '';
438 438
 				
439
-				if($line->qty>90) {
439
+				if ($line->qty > 90) {
440 440
 					$substitutionarray['line_modsubtotal_total'] = true;
441 441
 					
442 442
 					list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1);
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
 				
451 451
 				
452 452
 			}	
453
-			else{
453
+			else {
454 454
 				$substitutionarray['line_not_modsubtotal'] = true;
455 455
 				$substitutionarray['line_modsubtotal'] = 0;
456 456
 			}
@@ -462,29 +462,29 @@  discard block
 block discarded – undo
462 462
 	function createFrom($parameters, &$object, $action, $hookmanager) {
463 463
 	
464 464
 		if (
465
-				in_array('invoicecard',explode(':',$parameters['context']))
466
-		        || in_array('invoicesuppliercard',explode(':',$parameters['context']))
467
-				|| in_array('propalcard',explode(':',$parameters['context']))
468
-		        || in_array('supplier_proposalcard',explode(':',$parameters['context']))
469
-				|| in_array('ordercard',explode(':',$parameters['context']))
470
-		        || in_array('ordersuppliercard',explode(':',$parameters['context']))
471
-				|| in_array('invoicereccard',explode(':',$parameters['context']))
465
+				in_array('invoicecard', explode(':', $parameters['context']))
466
+		        || in_array('invoicesuppliercard', explode(':', $parameters['context']))
467
+				|| in_array('propalcard', explode(':', $parameters['context']))
468
+		        || in_array('supplier_proposalcard', explode(':', $parameters['context']))
469
+				|| in_array('ordercard', explode(':', $parameters['context']))
470
+		        || in_array('ordersuppliercard', explode(':', $parameters['context']))
471
+				|| in_array('invoicereccard', explode(':', $parameters['context']))
472 472
 		) {
473 473
 			
474 474
 			global $db;
475 475
 			
476 476
 			$objFrom = $parameters['objFrom'];
477 477
 			
478
-			foreach($objFrom->lines as $k=> &$lineOld) {
478
+			foreach ($objFrom->lines as $k=> &$lineOld) {
479 479
 				
480
-					if($lineOld->product_type == 9 && $lineOld->info_bits > 0 ) {
480
+					if ($lineOld->product_type == 9 && $lineOld->info_bits > 0) {
481 481
 							
482 482
 							$line = & $object->lines[$k];
483 483
 				
484 484
 							$idLine = (int) ($line->id ? $line->id : $line->rowid); 
485 485
 				
486 486
 							$db->query("UPDATE ".MAIN_DB_PREFIX.$line->table_element."
487
-							SET info_bits=".(int)$lineOld->info_bits."
487
+							SET info_bits=".(int) $lineOld->info_bits."
488 488
 							WHERE rowid = ".$idLine."
489 489
 							");
490 490
 						
@@ -500,15 +500,15 @@  discard block
 block discarded – undo
500 500
 	
501 501
 	function doActions($parameters, &$object, $action, $hookmanager)
502 502
 	{
503
-		global $db, $conf, $langs,$user;
503
+		global $db, $conf, $langs, $user;
504 504
 		
505 505
 		dol_include_once('/subtotal/class/subtotal.class.php');
506 506
 		dol_include_once('/subtotal/lib/subtotal.lib.php');
507
-		require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php';
507
+		require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
508 508
 		
509 509
 		$showBlockExtrafields = GETPOST('showBlockExtrafields');
510 510
 		
511
-		if($object->element=='facture') $idvar = 'facid';
511
+		if ($object->element == 'facture') $idvar = 'facid';
512 512
 		else $idvar = 'id';
513 513
 			
514 514
 		if ($action == 'updateligne' || $action == 'updateline')
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
 				if ($line->id == $lineid && TSubtotal::isModSubtotalLine($line))
522 522
 				{
523 523
 					$found = true;
524
-					if(TSubtotal::isTitle($line) && !empty($showBlockExtrafields)) {
524
+					if (TSubtotal::isTitle($line) && !empty($showBlockExtrafields)) {
525 525
 						$extrafieldsline = new ExtraFields($db);
526 526
 						$extralabelsline = $extrafieldsline->fetch_name_optionals_label($object->table_element_line);
527 527
 						$extrafieldsline->setOptionalsFromPost($extralabelsline, $line);
@@ -540,43 +540,43 @@  discard block
 block discarded – undo
540 540
 				exit; // Surtout ne pas laisser Dolibarr faire du traitement sur le updateligne sinon ça plante les données de la ligne
541 541
 			}
542 542
 		}
543
-		else if($action === 'builddoc') {
543
+		else if ($action === 'builddoc') {
544 544
 			
545 545
 			if (
546
-				in_array('invoicecard',explode(':',$parameters['context']))
547
-				|| in_array('propalcard',explode(':',$parameters['context']))
548
-				|| in_array('ordercard',explode(':',$parameters['context']))
549
-			    || in_array('ordersuppliercard',explode(':',$parameters['context']))
550
-			    || in_array('invoicesuppliercard',explode(':',$parameters['context']))
551
-			    || in_array('supplier_proposalcard',explode(':',$parameters['context']))
546
+				in_array('invoicecard', explode(':', $parameters['context']))
547
+				|| in_array('propalcard', explode(':', $parameters['context']))
548
+				|| in_array('ordercard', explode(':', $parameters['context']))
549
+			    || in_array('ordersuppliercard', explode(':', $parameters['context']))
550
+			    || in_array('invoicesuppliercard', explode(':', $parameters['context']))
551
+			    || in_array('supplier_proposalcard', explode(':', $parameters['context']))
552 552
 			)
553 553
 	        {								
554
-				if(in_array('invoicecard',explode(':',$parameters['context']))) {
554
+				if (in_array('invoicecard', explode(':', $parameters['context']))) {
555 555
 					$sessname = 'subtotal_hideInnerLines_facture';	
556 556
 					$sessname2 = 'subtotal_hidedetails_facture';
557 557
 					$sessname3 = 'subtotal_hideprices_facture';
558 558
 				}
559
-				elseif(in_array('invoicesuppliercard',explode(':',$parameters['context']))) {
559
+				elseif (in_array('invoicesuppliercard', explode(':', $parameters['context']))) {
560 560
 				    $sessname = 'subtotal_hideInnerLines_facture_fournisseur';
561 561
 				    $sessname2 = 'subtotal_hidedetails_facture_fournisseur';
562 562
 				    $sessname3 = 'subtotal_hideprices_facture_fournisseur';
563 563
 				}
564
-				elseif(in_array('propalcard',explode(':',$parameters['context']))) {
564
+				elseif (in_array('propalcard', explode(':', $parameters['context']))) {
565 565
 					$sessname = 'subtotal_hideInnerLines_propal';
566 566
 					$sessname2 = 'subtotal_hidedetails_propal';	
567 567
 					$sessname3 = 'subtotal_hideprices_propal';
568 568
 				}
569
-				elseif(in_array('supplier_proposalcard',explode(':',$parameters['context']))) {
569
+				elseif (in_array('supplier_proposalcard', explode(':', $parameters['context']))) {
570 570
 				    $sessname = 'subtotal_hideInnerLines_supplier_proposal';
571 571
 				    $sessname2 = 'subtotal_hidedetails_supplier_proposal';
572 572
 				    $sessname3 = 'subtotal_hideprices_supplier_proposal';
573 573
 				}
574
-				elseif(in_array('ordercard',explode(':',$parameters['context']))) {
574
+				elseif (in_array('ordercard', explode(':', $parameters['context']))) {
575 575
 					$sessname = 'subtotal_hideInnerLines_commande';
576 576
 					$sessname2 = 'subtotal_hidedetails_commande';	
577 577
 					$sessname3 = 'subtotal_hideprices_commande';
578 578
 				}
579
-				elseif(in_array('ordersuppliercard',explode(':',$parameters['context']))) {
579
+				elseif (in_array('ordersuppliercard', explode(':', $parameters['context']))) {
580 580
 				    $sessname = 'subtotal_hideInnerLines_commande_fournisseur';
581 581
 				    $sessname2 = 'subtotal_hidedetails_commande_fournisseur';
582 582
 				    $sessname3 = 'subtotal_hideprices_commande_fournisseur';
@@ -589,22 +589,22 @@  discard block
 block discarded – undo
589 589
 					
590 590
 				global $hideprices;
591 591
 				
592
-				$hideInnerLines = (int)GETPOST('hideInnerLines');
592
+				$hideInnerLines = (int) GETPOST('hideInnerLines');
593 593
 				$_SESSION[$sessname] = $hideInnerLines;		
594 594
 				
595
-				$hidedetails= (int)GETPOST('hidedetails');
595
+				$hidedetails = (int) GETPOST('hidedetails');
596 596
 				$_SESSION[$sessname2] = $hidedetails;
597 597
 				
598
-				$hideprices= (int)GETPOST('hideprices');
598
+				$hideprices = (int) GETPOST('hideprices');
599 599
 				$_SESSION[$sessname3] = $hideprices;
600 600
 				
601
-				foreach($object->lines as &$line) {
601
+				foreach ($object->lines as &$line) {
602 602
 					if ($line->product_type == 9 && $line->special_code == $this->module_number) {
603 603
 					    
604
-                        if($line->qty>=90) {
604
+                        if ($line->qty >= 90) {
605 605
                             $line->modsubtotal_total = 1;
606 606
                         }
607
-                        else{
607
+                        else {
608 608
                             $line->modsubtotal_title = 1;
609 609
                         }
610 610
                         
@@ -614,34 +614,34 @@  discard block
 block discarded – undo
614 614
 	        }
615 615
 			
616 616
 		}
617
-		else if($action === 'confirm_delete_all_lines' && GETPOST('confirm')=='yes') {
617
+		else if ($action === 'confirm_delete_all_lines' && GETPOST('confirm') == 'yes') {
618 618
 			
619 619
 			$Tab = $this->getArrayOfLineForAGroup($object, GETPOST('lineid'));
620 620
 			
621
-			foreach($Tab as $idLine) {
621
+			foreach ($Tab as $idLine) {
622 622
 				/**
623 623
 				 * @var $object Facture
624 624
 				 */
625
-				if($object->element=='facture') $object->deleteline($idLine);
625
+				if ($object->element == 'facture') $object->deleteline($idLine);
626 626
 				/**
627 627
 				 * @var $object Facture fournisseur
628 628
 				 */
629
-				else if($object->element=='invoice_supplier')
629
+				else if ($object->element == 'invoice_supplier')
630 630
 				{
631 631
 				    $object->deleteline($idLine);
632 632
 				}
633 633
 				/**
634 634
 				 * @var $object Propal
635 635
 				 */
636
-				else if($object->element=='propal') $object->deleteline($idLine);
636
+				else if ($object->element == 'propal') $object->deleteline($idLine);
637 637
 				/**
638 638
 				 * @var $object Propal Fournisseur
639 639
 				 */
640
-				else if($object->element=='supplier_proposal') $object->deleteline($idLine);
640
+				else if ($object->element == 'supplier_proposal') $object->deleteline($idLine);
641 641
 				/**
642 642
 				 * @var $object Commande
643 643
 				 */
644
-				else if($object->element=='commande') 
644
+				else if ($object->element == 'commande') 
645 645
 				{
646 646
 					if ((float) DOL_VERSION >= 5.0) $object->deleteline($user, $idLine);
647 647
 					else $object->deleteline($idLine);
@@ -649,14 +649,14 @@  discard block
 block discarded – undo
649 649
 				/**
650 650
 				 * @var $object Commande fournisseur
651 651
 				 */
652
-				else if($object->element=='order_supplier')
652
+				else if ($object->element == 'order_supplier')
653 653
 				{
654 654
 				    $object->deleteline($idLine);
655 655
 				}
656 656
 				/**
657 657
 				 * @var $object Facturerec
658 658
 				 */
659
-				else if($object->element=='facturerec') $object->deleteline($idLine);
659
+				else if ($object->element == 'facturerec') $object->deleteline($idLine);
660 660
 			}
661 661
 			
662 662
 			header('location:?id='.$object->id);
@@ -679,7 +679,7 @@  discard block
 block discarded – undo
679 679
 		return 0;
680 680
 	}
681 681
 	
682
-	function formAddObjectLine ($parameters, &$object, &$action, $hookmanager) {
682
+	function formAddObjectLine($parameters, &$object, &$action, $hookmanager) {
683 683
 		return 0;
684 684
 	}
685 685
 
@@ -691,22 +691,22 @@  discard block
 block discarded – undo
691 691
 		
692 692
 		$found = false;
693 693
 
694
-		$Tab= array();
694
+		$Tab = array();
695 695
 		
696
-		foreach($object->lines as $l) {
696
+		foreach ($object->lines as $l) {
697 697
 		
698 698
 		    $lid = (!empty($l->rowid) ? $l->rowid : $l->id);
699
-			if($lid == $lineid) {
699
+			if ($lid == $lineid) {
700 700
 
701 701
 				$found = true;
702 702
 				$qty_line = $l->qty;
703 703
 			}
704 704
 			
705
-			if($found) {
705
+			if ($found) {
706 706
 				
707 707
 			    $Tab[] = (!empty($l->rowid) ? $l->rowid : $l->id);
708 708
 				
709
-				if($l->special_code==$this->module_number && (($l->qty==99 && $qty_line==1) || ($l->qty==98 && $qty_line==2))   ) {
709
+				if ($l->special_code == $this->module_number && (($l->qty == 99 && $qty_line == 1) || ($l->qty == 98 && $qty_line == 2))) {
710 710
 					break; // end of story
711 711
 				}
712 712
 			}
@@ -735,7 +735,7 @@  discard block
 block discarded – undo
735 735
 	 * 
736 736
 	 * @param	$use_level		isn't used anymore
737 737
 	 */
738
-	function getTotalLineFromObject(&$object, &$line, $use_level=false, $return_all=0) {
738
+	function getTotalLineFromObject(&$object, &$line, $use_level = false, $return_all = 0) {
739 739
 		
740 740
 		$rang = $line->rang;
741 741
 		$qty_line = $line->qty;
@@ -746,21 +746,21 @@  discard block
 block discarded – undo
746 746
 		$TTotal_tva = array();
747 747
 		
748 748
 		dol_include_once('/subtotal/class/subtotal.class.php');
749
-		foreach($object->lines as $l) {
749
+		foreach ($object->lines as $l) {
750 750
 			//print $l->rang.'>='.$rang.' '.$total.'<br/>';
751
-			if($l->rang>=$rang) {
751
+			if ($l->rang >= $rang) {
752 752
 				//echo 'return!<br>';
753 753
 				if (!$return_all) return $total;
754 754
 				else return array($total, $total_tva, $total_ttc, $TTotal_tva);
755 755
 			}
756
-			else if(TSubtotal::isTitle($l, 100 - $qty_line)) 
756
+			else if (TSubtotal::isTitle($l, 100 - $qty_line)) 
757 757
 		  	{
758 758
 				$total = 0;
759 759
 				$total_tva = 0;
760 760
 				$total_ttc = 0;
761 761
 				$TTotal_tva = array();
762 762
 			}
763
-			elseif(!TSubtotal::isTitle($l) && !TSubtotal::isSubtotal($l)) {
763
+			elseif (!TSubtotal::isTitle($l) && !TSubtotal::isSubtotal($l)) {
764 764
 				$total += $l->total_ht;
765 765
 				$total_tva += $l->total_tva;
766 766
 				$TTotal_tva[$l->tva_tx] += $l->total_tva;
@@ -779,18 +779,18 @@  discard block
 block discarded – undo
779 779
 		
780 780
 		$rang = $line->rang;
781 781
 		$total = 0;
782
-		foreach($object->lines as $l) {
783
-			if($l->rang>=$rang) {
782
+		foreach ($object->lines as $l) {
783
+			if ($l->rang >= $rang) {
784 784
 				return price($total);
785 785
 			}
786
-                        if (TSubtotal::isSubtotal($l)){
786
+                        if (TSubtotal::isSubtotal($l)) {
787 787
                             $total = 0;
788
-                        } else  if ($l->situation_percent > 0 ){
788
+                        } else  if ($l->situation_percent > 0) {
789 789
                            
790 790
         	
791 791
 		 	$prev_progress = $l->get_prev_progress($object->id);
792
-		 	$progress = ($l->situation_percent - $prev_progress) /100;
793
-                        $total += ($l->total_ht/($l->situation_percent/100)) * $progress;
792
+		 	$progress = ($l->situation_percent - $prev_progress) / 100;
793
+                        $total += ($l->total_ht / ($l->situation_percent / 100)) * $progress;
794 794
                         
795 795
                     }
796 796
                 }
@@ -809,10 +809,10 @@  discard block
 block discarded – undo
809 809
 	 * @param $w            float               width
810 810
 	 * @param $h            float               height
811 811
 	 */
812
-	function pdf_add_total(&$pdf,&$object, &$line, $label, $description,$posx, $posy, $w, $h) {
813
-		global $conf,$subtotal_last_title_posy;
812
+	function pdf_add_total(&$pdf, &$object, &$line, $label, $description, $posx, $posy, $w, $h) {
813
+		global $conf, $subtotal_last_title_posy;
814 814
 		
815
-		$hideInnerLines = (int)GETPOST('hideInnerLines');
815
+		$hideInnerLines = (int) GETPOST('hideInnerLines');
816 816
 		if (!empty($conf->global->SUBTOTAL_ONE_LINE_IF_HIDE_INNERLINES) && $hideInnerLines && !empty($subtotal_last_title_posy))
817 817
 		{
818 818
 			$posy = $subtotal_last_title_posy;
@@ -822,34 +822,34 @@  discard block
 block discarded – undo
822 822
 		$hidePriceOnSubtotalLines = (int) GETPOST('hide_price_on_subtotal_lines');
823 823
 		
824 824
 		$set_pagebreak_margin = false;
825
-		if(method_exists('Closure','bind')) {
825
+		if (method_exists('Closure', 'bind')) {
826 826
 			$pageBreakOriginalValue = $pdf->AcceptPageBreak();
827
-			$sweetsThief = function ($pdf) {
828
-		    		return $pdf->bMargin ;
827
+			$sweetsThief = function($pdf) {
828
+		    		return $pdf->bMargin;
829 829
 			};
830 830
 			$sweetsThief = Closure::bind($sweetsThief, null, $pdf);
831 831
 	
832
-			$bMargin  = $sweetsThief($pdf);
832
+			$bMargin = $sweetsThief($pdf);
833 833
 	
834
-			$pdf->SetAutoPageBreak( false );
834
+			$pdf->SetAutoPageBreak(false);
835 835
 
836 836
 			$set_pagebreak_margin = true;			
837 837
 		}
838 838
 		
839 839
 			
840
-		if($line->qty==99)
841
-			$pdf->SetFillColor(220,220,220);
842
-		elseif ($line->qty==98)
843
-			$pdf->SetFillColor(230,230,230);
840
+		if ($line->qty == 99)
841
+			$pdf->SetFillColor(220, 220, 220);
842
+		elseif ($line->qty == 98)
843
+			$pdf->SetFillColor(230, 230, 230);
844 844
 		else
845
-			$pdf->SetFillColor(240,240,240);
845
+			$pdf->SetFillColor(240, 240, 240);
846 846
 		
847 847
 		$style = 'B';
848 848
 		if (!empty($conf->global->SUBTOTAL_SUBTOTAL_STYLE)) $style = $conf->global->SUBTOTAL_SUBTOTAL_STYLE;
849 849
 		
850 850
 		$pdf->SetFont('', $style, 9);
851 851
 		
852
-		$pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'R',true);
852
+		$pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'R', true);
853 853
 //		var_dump($bMargin);
854 854
 		$pageAfter = $pdf->getPage();
855 855
 		
@@ -874,7 +874,7 @@  discard block
 block discarded – undo
874 874
 				}
875 875
 			}
876 876
 			
877
-			if($total_to_print) {
877
+			if ($total_to_print) {
878 878
 				
879 879
 				if (GETPOST('hideInnerLines'))
880 880
 				{
@@ -888,7 +888,7 @@  discard block
 block discarded – undo
888 888
 				else
889 889
 				{
890 890
 					list($total, $total_tva, $total_ttc, $TTotal_tva) = $this->getTotalLineFromObject($object, $line, '', 1);
891
-                                        if(get_class($object) == 'Facture' && $object->type==Facture::TYPE_SITUATION){//Facture de situation
891
+                                        if (get_class($object) == 'Facture' && $object->type == Facture::TYPE_SITUATION) {//Facture de situation
892 892
                                                 $total_to_print = $this->getTotalToPrintSituation($object, $line);
893 893
                                         } else {
894 894
                                             	$total_to_print = price($total);
@@ -902,11 +902,11 @@  discard block
 block discarded – undo
902 902
 			}
903 903
 
904 904
 			$pdf->SetXY($pdf->postotalht, $posy);
905
-			if($set_pagebreak_margin) $pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin);
906
-			$pdf->MultiCell($pdf->page_largeur-$pdf->marge_droite-$pdf->postotalht, 3, $total_to_print, 0, 'R', 0);
905
+			if ($set_pagebreak_margin) $pdf->SetAutoPageBreak($pageBreakOriginalValue, $bMargin);
906
+			$pdf->MultiCell($pdf->page_largeur - $pdf->marge_droite - $pdf->postotalht, 3, $total_to_print, 0, 'R', 0);
907 907
 		}
908
-		else{
909
-			if($set_pagebreak_margin) $pdf->SetAutoPageBreak( $pageBreakOriginalValue , $bMargin);
908
+		else {
909
+			if ($set_pagebreak_margin) $pdf->SetAutoPageBreak($pageBreakOriginalValue, $bMargin);
910 910
 		}
911 911
 		
912 912
 		$posy = $posy + $cell_height;
@@ -926,22 +926,22 @@  discard block
 block discarded – undo
926 926
 	 * @param $w            float               width
927 927
 	 * @param $h            float               height
928 928
 	 */
929
-	function pdf_add_title(&$pdf,&$object, &$line, $label, $description,$posx, $posy, $w, $h) {
929
+	function pdf_add_title(&$pdf, &$object, &$line, $label, $description, $posx, $posy, $w, $h) {
930 930
 		
931
-		global $db,$conf,$subtotal_last_title_posy;
931
+		global $db, $conf, $subtotal_last_title_posy;
932 932
 		
933 933
 		$subtotal_last_title_posy = $posy;
934
-		$pdf->SetXY ($posx, $posy);
934
+		$pdf->SetXY($posx, $posy);
935 935
 		
936
-		$hideInnerLines = (int)GETPOST('hideInnerLines');
936
+		$hideInnerLines = (int) GETPOST('hideInnerLines');
937 937
 		
938 938
 		
939 939
  
940
-		$style = ($line->qty==1) ? 'BU' : 'BUI';
940
+		$style = ($line->qty == 1) ? 'BU' : 'BUI';
941 941
 		if (!empty($conf->global->SUBTOTAL_TITLE_STYLE)) $style = $conf->global->SUBTOTAL_TITLE_STYLE;
942 942
 		
943
-		if($hideInnerLines) {
944
-			if($line->qty==1)$pdf->SetFont('', $style, 9);
943
+		if ($hideInnerLines) {
944
+			if ($line->qty == 1)$pdf->SetFont('', $style, 9);
945 945
 			else 
946 946
 			{
947 947
 				if (!empty($conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES)) $style = $conf->global->SUBTOTAL_STYLE_TITRES_SI_LIGNES_CACHEES;
@@ -950,43 +950,43 @@  discard block
 block discarded – undo
950 950
 		}
951 951
 		else {
952 952
 
953
-			if($line->qty==1)$pdf->SetFont('', $style, 9); //TODO if super utile
953
+			if ($line->qty == 1)$pdf->SetFont('', $style, 9); //TODO if super utile
954 954
 			else $pdf->SetFont('', $style, 9);
955 955
 			
956 956
 		}
957 957
 		
958 958
 		if ($label === strip_tags($label) && $label === dol_html_entity_decode($label, ENT_QUOTES)) $pdf->MultiCell($w, $h, $label, 0, 'L'); // Pas de HTML dans la chaine
959
-		else $pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'J',true); // et maintenant avec du HTML
959
+		else $pdf->writeHTMLCell($w, $h, $posx, $posy, $label, 0, 1, false, true, 'J', true); // et maintenant avec du HTML
960 960
 		
961
-		if($description && !$hidedesc) {
961
+		if ($description && !$hidedesc) {
962 962
 			$posy = $pdf->GetY();
963 963
 			
964 964
 			$pdf->SetFont('', '', 8);
965 965
 			
966
-			$pdf->writeHTMLCell($w, $h, $posx, $posy, $description, 0, 1, false, true, 'J',true);
966
+			$pdf->writeHTMLCell($w, $h, $posx, $posy, $description, 0, 1, false, true, 'J', true);
967 967
 
968 968
 		}
969 969
 		
970 970
 	}
971 971
 
972
-	function pdf_writelinedesc_ref($parameters=array(), &$object, &$action='') {
972
+	function pdf_writelinedesc_ref($parameters = array(), &$object, &$action = '') {
973 973
 	// ultimate PDF hook O_o
974 974
 		
975
-		return $this->pdf_writelinedesc($parameters,$object,$action);
975
+		return $this->pdf_writelinedesc($parameters, $object, $action);
976 976
 		
977 977
 	}
978 978
 
979 979
 	function isModSubtotalLine(&$parameters, &$object) {
980 980
 		
981
-		if(is_array($parameters)) {
981
+		if (is_array($parameters)) {
982 982
 			$i = & $parameters['i'];	
983 983
 		}
984 984
 		else {
985
-			$i = (int)$parameters;
985
+			$i = (int) $parameters;
986 986
 		}
987 987
 		
988 988
 		
989
-		if($object->lines[$i]->special_code == $this->module_number && $object->lines[$i]->product_type == 9) {
989
+		if ($object->lines[$i]->special_code == $this->module_number && $object->lines[$i]->product_type == 9) {
990 990
 			return true;
991 991
 		}
992 992
 		
@@ -994,43 +994,43 @@  discard block
 block discarded – undo
994 994
 		
995 995
 	}
996 996
 
997
-	function pdf_getlineqty($parameters=array(), &$object, &$action='') {
998
-		global $conf,$hideprices;
997
+	function pdf_getlineqty($parameters = array(), &$object, &$action = '') {
998
+		global $conf, $hideprices;
999 999
 		
1000
-		if($this->isModSubtotalLine($parameters,$object) ){
1000
+		if ($this->isModSubtotalLine($parameters, $object)) {
1001 1001
 			
1002 1002
 			$this->resprints = ' ';
1003 1003
 			
1004
-			if((float)DOL_VERSION<=3.6) {
1004
+			if ((float) DOL_VERSION <= 3.6) {
1005 1005
 				return '';
1006 1006
 			}
1007
-			else if((float)DOL_VERSION>=3.8) {
1007
+			else if ((float) DOL_VERSION >= 3.8) {
1008 1008
 				return 1;
1009 1009
 			}
1010 1010
 			
1011 1011
 		}
1012
-		elseif(!empty($hideprices)) {
1012
+		elseif (!empty($hideprices)) {
1013 1013
 			$this->resprints = $object->lines[$parameters['i']]->qty;
1014 1014
 			return 1;
1015 1015
 		}
1016 1016
 		elseif (!empty($conf->global->SUBTOTAL_IF_HIDE_PRICES_SHOW_QTY))
1017 1017
 		{
1018
-			$hideInnerLines = (int)GETPOST('hideInnerLines');
1019
-			$hidedetails = (int)GETPOST('hidedetails');
1018
+			$hideInnerLines = (int) GETPOST('hideInnerLines');
1019
+			$hidedetails = (int) GETPOST('hidedetails');
1020 1020
 			if (empty($hideInnerLines) && !empty($hidedetails))
1021 1021
 			{
1022 1022
 				$this->resprints = $object->lines[$parameters['i']]->qty;
1023 1023
 			}
1024 1024
 		}
1025 1025
 		
1026
-		if(is_array($parameters)) $i = & $parameters['i'];
1027
-		else $i = (int)$parameters;
1026
+		if (is_array($parameters)) $i = & $parameters['i'];
1027
+		else $i = (int) $parameters;
1028 1028
 
1029 1029
 		if (empty($object->lines[$i])) return 0; // hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0)
1030 1030
 		
1031
-		if(empty($object->lines[$i]->array_options)) $object->lines[$i]->fetch_optionals();
1031
+		if (empty($object->lines[$i]->array_options)) $object->lines[$i]->fetch_optionals();
1032 1032
 
1033
-		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1033
+		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])))
1034 1034
 		{
1035 1035
 			if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1036 1036
 			{
@@ -1042,25 +1042,25 @@  discard block
 block discarded – undo
1042 1042
 		return 0;
1043 1043
 	}
1044 1044
 	
1045
-	function pdf_getlinetotalexcltax($parameters=array(), &$object, &$action='') {
1045
+	function pdf_getlinetotalexcltax($parameters = array(), &$object, &$action = '') {
1046 1046
 		global $conf, $hideprices;
1047 1047
 		
1048
-		if($this->isModSubtotalLine($parameters,$object) ){
1048
+		if ($this->isModSubtotalLine($parameters, $object)) {
1049 1049
 			
1050 1050
 			$this->resprints = ' ';
1051 1051
 			
1052
-			if((float)DOL_VERSION<=3.6) {
1052
+			if ((float) DOL_VERSION <= 3.6) {
1053 1053
 				return '';
1054 1054
 			}
1055
-			else if((float)DOL_VERSION>=3.8) {
1055
+			else if ((float) DOL_VERSION >= 3.8) {
1056 1056
 				return 1;
1057 1057
 			}
1058 1058
 			
1059 1059
 		}
1060 1060
 		elseif (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS))
1061 1061
 		{
1062
-			if(is_array($parameters)) $i = & $parameters['i'];
1063
-			else $i = (int)$parameters;
1062
+			if (is_array($parameters)) $i = & $parameters['i'];
1063
+			else $i = (int) $parameters;
1064 1064
 			
1065 1065
 			if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1066 1066
 			{
@@ -1081,13 +1081,13 @@  discard block
 block discarded – undo
1081 1081
 				}
1082 1082
 			}
1083 1083
 		}
1084
-		if ((int)GETPOST('hideInnerLines') && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES)){
1085
-		    if(is_array($parameters)) $i = & $parameters['i'];
1086
-		    else $i = (int)$parameters;
1084
+		if ((int) GETPOST('hideInnerLines') && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES)) {
1085
+		    if (is_array($parameters)) $i = & $parameters['i'];
1086
+		    else $i = (int) $parameters;
1087 1087
 		    $this->resprints = price($object->lines[$i]->total_ht);
1088 1088
 		}
1089 1089
 		if (!empty($hideprices)
1090
-		    || (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1090
+		    || (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])))
1091 1091
 		    )
1092 1092
 		{
1093 1093
 		    if (!empty($hideprices) || !in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
@@ -1100,25 +1100,25 @@  discard block
 block discarded – undo
1100 1100
 		return 0;
1101 1101
 	}
1102 1102
 	
1103
-	function pdf_getlinetotalwithtax($parameters=array(), &$object, &$action='') {
1103
+	function pdf_getlinetotalwithtax($parameters = array(), &$object, &$action = '') {
1104 1104
 		global $conf;
1105 1105
 		
1106
-		if($this->isModSubtotalLine($parameters,$object) ){
1106
+		if ($this->isModSubtotalLine($parameters, $object)) {
1107 1107
 			
1108 1108
 			$this->resprints = ' ';
1109 1109
 		
1110
-			if((float)DOL_VERSION<=3.6) {
1110
+			if ((float) DOL_VERSION <= 3.6) {
1111 1111
 				return '';
1112 1112
 			}
1113
-			else if((float)DOL_VERSION>=3.8) {
1113
+			else if ((float) DOL_VERSION >= 3.8) {
1114 1114
 				return 1;
1115 1115
 			}
1116 1116
 		}
1117 1117
 		
1118
-		if(is_array($parameters)) $i = & $parameters['i'];
1119
-		else $i = (int)$parameters;
1118
+		if (is_array($parameters)) $i = & $parameters['i'];
1119
+		else $i = (int) $parameters;
1120 1120
 		
1121
-		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) ) 
1121
+		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i]))) 
1122 1122
 		{
1123 1123
 			if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1124 1124
 			{
@@ -1130,24 +1130,24 @@  discard block
 block discarded – undo
1130 1130
 		return 0;
1131 1131
 	}
1132 1132
 	
1133
-	function pdf_getlineunit($parameters=array(), &$object, &$action='') {
1133
+	function pdf_getlineunit($parameters = array(), &$object, &$action = '') {
1134 1134
 		global $conf;
1135 1135
 		
1136
-		if($this->isModSubtotalLine($parameters,$object) ){
1136
+		if ($this->isModSubtotalLine($parameters, $object)) {
1137 1137
 			$this->resprints = ' ';
1138 1138
 		
1139
-			if((float)DOL_VERSION<=3.6) {
1139
+			if ((float) DOL_VERSION <= 3.6) {
1140 1140
 				return '';
1141 1141
 			}
1142
-			else if((float)DOL_VERSION>=3.8) {
1142
+			else if ((float) DOL_VERSION >= 3.8) {
1143 1143
 				return 1;
1144 1144
 			}
1145 1145
 		}
1146 1146
 		
1147
-		if(is_array($parameters)) $i = & $parameters['i'];
1148
-		else $i = (int)$parameters;
1147
+		if (is_array($parameters)) $i = & $parameters['i'];
1148
+		else $i = (int) $parameters;
1149 1149
 			
1150
-		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1150
+		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])))
1151 1151
 		{
1152 1152
 			if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1153 1153
 			{
@@ -1159,24 +1159,24 @@  discard block
 block discarded – undo
1159 1159
 		return 0;
1160 1160
 	}
1161 1161
 	
1162
-	function pdf_getlineupexcltax($parameters=array(), &$object, &$action='') {
1163
-		global $conf,$hideprices;
1162
+	function pdf_getlineupexcltax($parameters = array(), &$object, &$action = '') {
1163
+		global $conf, $hideprices;
1164 1164
 
1165
-		if($this->isModSubtotalLine($parameters,$object) ){
1165
+		if ($this->isModSubtotalLine($parameters, $object)) {
1166 1166
 			$this->resprints = ' ';
1167 1167
 		
1168
-			if((float)DOL_VERSION<=3.6) {
1168
+			if ((float) DOL_VERSION <= 3.6) {
1169 1169
 				return '';
1170 1170
 			}
1171
-			else if((float)DOL_VERSION>=3.8) {
1171
+			else if ((float) DOL_VERSION >= 3.8) {
1172 1172
 				return 1;
1173 1173
 			}
1174 1174
 		}
1175
-		if(is_array($parameters)) $i = & $parameters['i'];
1176
-		else $i = (int)$parameters;
1175
+		if (is_array($parameters)) $i = & $parameters['i'];
1176
+		else $i = (int) $parameters;
1177 1177
 		
1178 1178
 		if (!empty($hideprices) 
1179
-				|| (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1179
+				|| (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])))
1180 1180
 		)
1181 1181
 		{
1182 1182
 			if (!empty($hideprices) || !in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
@@ -1189,24 +1189,24 @@  discard block
 block discarded – undo
1189 1189
 		return 0;
1190 1190
 	}
1191 1191
 	
1192
-	function pdf_getlineupwithtax($parameters=array(), &$object, &$action='') {
1193
-		global $conf,$hideprices;
1192
+	function pdf_getlineupwithtax($parameters = array(), &$object, &$action = '') {
1193
+		global $conf, $hideprices;
1194 1194
 		
1195
-		if($this->isModSubtotalLine($parameters,$object) ){
1195
+		if ($this->isModSubtotalLine($parameters, $object)) {
1196 1196
 			$this->resprints = ' ';
1197
-			if((float)DOL_VERSION<=3.6) {
1197
+			if ((float) DOL_VERSION <= 3.6) {
1198 1198
 				return '';
1199 1199
 			}
1200
-			else if((float)DOL_VERSION>=3.8) {
1200
+			else if ((float) DOL_VERSION >= 3.8) {
1201 1201
 				return 1;
1202 1202
 			}
1203 1203
 		}
1204 1204
 		
1205
-		if(is_array($parameters)) $i = & $parameters['i'];
1206
-		else $i = (int)$parameters;
1205
+		if (is_array($parameters)) $i = & $parameters['i'];
1206
+		else $i = (int) $parameters;
1207 1207
 			
1208 1208
 		if (!empty($hideprices)
1209
-				|| (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1209
+				|| (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])))
1210 1210
 		)
1211 1211
 		{
1212 1212
 			if (!empty($hideprices) || !in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
@@ -1219,27 +1219,27 @@  discard block
 block discarded – undo
1219 1219
 		return 0;
1220 1220
 	}
1221 1221
 	
1222
-	function pdf_getlinevatrate($parameters=array(), &$object, &$action='') {
1222
+	function pdf_getlinevatrate($parameters = array(), &$object, &$action = '') {
1223 1223
 		global $conf;
1224 1224
 		
1225
-		if($this->isModSubtotalLine($parameters,$object) ){
1225
+		if ($this->isModSubtotalLine($parameters, $object)) {
1226 1226
 			$this->resprints = ' ';
1227 1227
 			
1228
-			if((float)DOL_VERSION<=3.6) {
1228
+			if ((float) DOL_VERSION <= 3.6) {
1229 1229
 				return '';
1230 1230
 			}
1231
-			else if((float)DOL_VERSION>=3.8) {
1231
+			else if ((float) DOL_VERSION >= 3.8) {
1232 1232
 				return 1;
1233 1233
 			}
1234 1234
 		}
1235 1235
 		
1236
-		if(is_array($parameters)) $i = & $parameters['i'];
1237
-		else $i = (int)$parameters;
1236
+		if (is_array($parameters)) $i = & $parameters['i'];
1237
+		else $i = (int) $parameters;
1238 1238
 		
1239 1239
 		if (empty($object->lines[$i])) return 0; // hideInnerLines => override $object->lines et Dolibarr ne nous permet pas de mettre à jour la variable qui conditionne la boucle sur les lignes (PR faite pour 6.0)
1240 1240
 
1241 1241
 		$object->lines[$i]->fetch_optionals();
1242
-		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1242
+		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])))
1243 1243
 		{
1244 1244
 			if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1245 1245
 			{
@@ -1251,23 +1251,23 @@  discard block
 block discarded – undo
1251 1251
 		return 0;
1252 1252
 	}
1253 1253
 		
1254
-	function pdf_getlineprogress($parameters=array(), &$object, &$action) {
1254
+	function pdf_getlineprogress($parameters = array(), &$object, &$action) {
1255 1255
 		global $conf;
1256 1256
 		
1257
-		if($this->isModSubtotalLine($parameters,$object) ){
1257
+		if ($this->isModSubtotalLine($parameters, $object)) {
1258 1258
 			$this->resprints = ' ';
1259
-			if((float)DOL_VERSION<=3.6) {
1259
+			if ((float) DOL_VERSION <= 3.6) {
1260 1260
 				return '';
1261 1261
 			}
1262
-			else if((float)DOL_VERSION>=3.8) {
1262
+			else if ((float) DOL_VERSION >= 3.8) {
1263 1263
 				return 1;
1264 1264
 			}
1265 1265
 		}
1266 1266
 		
1267
-		if(is_array($parameters)) $i = & $parameters['i'];
1268
-		else $i = (int)$parameters;
1267
+		if (is_array($parameters)) $i = & $parameters['i'];
1268
+		else $i = (int) $parameters;
1269 1269
 			
1270
-		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])) )
1270
+		if (!empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && (!empty($object->lines[$i]->array_options['options_subtotal_nc']) || TSubtotal::hasNcTitle($object->lines[$i])))
1271 1271
 		{
1272 1272
 			if (!in_array(__FUNCTION__, explode(',', $conf->global->SUBTOTAL_TFIELD_TO_KEEP_WITH_NC)))
1273 1273
 			{
@@ -1282,12 +1282,12 @@  discard block
 block discarded – undo
1282 1282
 	function add_numerotation(&$object) {
1283 1283
 		global $conf;
1284 1284
 		
1285
-		if(!empty($conf->global->SUBTOTAL_USE_NUMEROTATION)) {
1285
+		if (!empty($conf->global->SUBTOTAL_USE_NUMEROTATION)) {
1286 1286
 		
1287 1287
 			$TLevelTitre = array();
1288 1288
 			$prevlevel = 0;
1289 1289
 		
1290
-			foreach($object->lines as $k=>&$line) 
1290
+			foreach ($object->lines as $k=>&$line) 
1291 1291
 			{
1292 1292
 				if ($line->id > 0 && $this->isModSubtotalLine($k, $object) && $line->qty <= 10)
1293 1293
 				{
@@ -1301,12 +1301,12 @@  discard block
 block discarded – undo
1301 1301
 	}
1302 1302
 
1303 1303
 	// TODO ne gère pas encore la numération des lignes "Totaux"
1304
-	private function formatNumerotation(&$TLineTitle, $line_reference='', $level=1, $prefix_num=0)
1304
+	private function formatNumerotation(&$TLineTitle, $line_reference = '', $level = 1, $prefix_num = 0)
1305 1305
 	{
1306 1306
 		$TTitle = array();
1307 1307
 		
1308
-		$i=1;
1309
-		$j=0;
1308
+		$i = 1;
1309
+		$j = 0;
1310 1310
 		foreach ($TLineTitle as $k => &$line)
1311 1311
 		{
1312 1312
 			if (!empty($line_reference) && $line->rang <= $line_reference->rang) continue;
@@ -1316,7 +1316,7 @@  discard block
 block discarded – undo
1316 1316
 			{
1317 1317
 				$TTitle[$j]['numerotation'] = ($prefix_num == 0) ? $i : $prefix_num.'.'.$i;
1318 1318
 				//var_dump('Prefix == '.$prefix_num.' // '.$line->desc.' ==> numerotation == '.$TTitle[$j]['numerotation'].'   ###    '.$line->qty .'=='. $level);
1319
-				if (empty($line->label) && (float)DOL_VERSION < 6)
1319
+				if (empty($line->label) && (float) DOL_VERSION < 6)
1320 1320
 				{
1321 1321
 					$line->label = !empty($line->desc) ? $line->desc : $line->description;
1322 1322
 					$line->desc = $line->description = '';
@@ -1342,26 +1342,26 @@  discard block
 block discarded – undo
1342 1342
 	
1343 1343
 	function setDocTVA(&$pdf, &$object) {
1344 1344
 		
1345
-		$hidedetails = (int)GETPOST('hidedetails');
1345
+		$hidedetails = (int) GETPOST('hidedetails');
1346 1346
 		
1347
-		if(empty($hidedetails)) return false;
1347
+		if (empty($hidedetails)) return false;
1348 1348
 		
1349 1349
 		// TODO can't add VAT to document without lines... :-/
1350 1350
 		
1351 1351
 		return true;
1352 1352
 	}
1353 1353
 	
1354
-	function beforePDFCreation($parameters=array(), &$object, &$action)
1354
+	function beforePDFCreation($parameters = array(), &$object, &$action)
1355 1355
 	{
1356 1356
 		/**
1357 1357
 		 * @var $pdf    TCPDF
1358 1358
 		 */
1359
-		global $pdf,$conf, $langs;
1359
+		global $pdf, $conf, $langs;
1360 1360
 
1361 1361
 		// var_dump($object->lines);
1362 1362
 		dol_include_once('/subtotal/class/subtotal.class.php');
1363 1363
 
1364
-		foreach($parameters as $key=>$value) {
1364
+		foreach ($parameters as $key=>$value) {
1365 1365
 			${$key} = $value;
1366 1366
 		}
1367 1367
 		
@@ -1370,25 +1370,25 @@  discard block
 block discarded – undo
1370 1370
 		$this->add_numerotation($object);	
1371 1371
 		
1372 1372
 		
1373
-		$hideInnerLines = (int)GETPOST('hideInnerLines');
1374
-		$hidedetails = (int)GETPOST('hidedetails');
1373
+		$hideInnerLines = (int) GETPOST('hideInnerLines');
1374
+		$hidedetails = (int) GETPOST('hidedetails');
1375 1375
 		
1376 1376
 		if ($hideInnerLines) { // si c une ligne de titre
1377
-	    	$fk_parent_line=0;
1378
-			$TLines =array();
1377
+	    	$fk_parent_line = 0;
1378
+			$TLines = array();
1379 1379
 		
1380
-			$original_count=count($object->lines);
1380
+			$original_count = count($object->lines);
1381 1381
 		    $TTvas = array(); // tableau de tva
1382 1382
 		    
1383
-			foreach($object->lines as $k=>&$line) 
1383
+			foreach ($object->lines as $k=>&$line) 
1384 1384
 			{
1385 1385
 			    
1386
-				if($line->product_type==9 && $line->rowid>0) 
1386
+				if ($line->product_type == 9 && $line->rowid > 0) 
1387 1387
 				{
1388 1388
 					$fk_parent_line = $line->rowid;
1389 1389
 					
1390 1390
 					// Fix tk7201 - si on cache le détail, la TVA est renseigné au niveau du sous-total, l'erreur c'est s'il y a plusieurs sous-totaux pour les même lignes, ça va faire la somme
1391
-					if(TSubtotal::isSubtotal($line)) 
1391
+					if (TSubtotal::isSubtotal($line)) 
1392 1392
 					{
1393 1393
 						/*$total = $this->getTotalLineFromObject($object, $line, '');
1394 1394
 						
@@ -1408,22 +1408,22 @@  discard block
 block discarded – undo
1408 1408
 			
1409 1409
 				if ($hideInnerLines)
1410 1410
 				{
1411
-				    if(!empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES))
1411
+				    if (!empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES))
1412 1412
 				    {
1413
-				        if($line->tva_tx != '0.000' && $line->product_type!=9){
1413
+				        if ($line->tva_tx != '0.000' && $line->product_type != 9) {
1414 1414
 				            
1415 1415
     				        // on remplit le tableau de tva pour substituer les lignes cachées
1416 1416
     				        $TTvas[$line->tva_tx]['total_tva'] += $line->total_tva;
1417 1417
     				        $TTvas[$line->tva_tx]['total_ht'] += $line->total_ht;
1418 1418
     				        $TTvas[$line->tva_tx]['total_ttc'] += $line->total_ttc; 
1419 1419
     				    }
1420
-    					if($line->product_type==9 && $line->rowid>0)
1420
+    					if ($line->product_type == 9 && $line->rowid > 0)
1421 1421
     					{
1422 1422
     					    //Cas où je doit cacher les produits et afficher uniquement les sous-totaux avec les titres
1423 1423
     					    // génère des lignes d'affichage des montants HT soumis à tva
1424 1424
     					    $nbtva = count($TTvas);
1425
-    					    if(!empty($nbtva)){
1426
-    					        foreach ($TTvas as $tx =>$val){
1425
+    					    if (!empty($nbtva)) {
1426
+    					        foreach ($TTvas as $tx =>$val) {
1427 1427
     					            $l = clone $line;
1428 1428
     					            $l->product_type = 1;
1429 1429
     					            $l->special_code = '';
@@ -1444,7 +1444,7 @@  discard block
 block discarded – undo
1444 1444
     					}
1445 1445
 				    } else {
1446 1446
 				        
1447
-				        if($line->product_type==9 && $line->rowid>0)
1447
+				        if ($line->product_type == 9 && $line->rowid > 0)
1448 1448
 				        {
1449 1449
 				            // ajoute la ligne de sous-total
1450 1450
 				            $TLines[] = $line; 
@@ -1472,9 +1472,9 @@  discard block
 block discarded – undo
1472 1472
 			
1473 1473
 			// cas incongru où il y aurait des produits en dessous du dernier sous-total
1474 1474
 			$nbtva = count($TTvas);
1475
-			if(!empty($nbtva) && $hideInnerLines && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES))
1475
+			if (!empty($nbtva) && $hideInnerLines && !empty($conf->global->SUBTOTAL_REPLACE_WITH_VAT_IF_HIDE_INNERLINES))
1476 1476
 			{
1477
-			    foreach ($TTvas as $tx =>$val){
1477
+			    foreach ($TTvas as $tx =>$val) {
1478 1478
 			        $l = clone $line;
1479 1479
 			        $l->product_type = 1;
1480 1480
 			        $l->special_code = '';
@@ -1491,11 +1491,11 @@  discard block
 block discarded – undo
1491 1491
 			}
1492 1492
 			
1493 1493
 			global $nblignes;
1494
-			$nblignes=count($TLines);
1494
+			$nblignes = count($TLines);
1495 1495
 
1496 1496
 			$object->lines = $TLines;
1497 1497
 			
1498
-			if($i>count($object->lines)) {
1498
+			if ($i > count($object->lines)) {
1499 1499
 				$this->resprints = '';
1500 1500
 				return 0;
1501 1501
 			}
@@ -1504,59 +1504,59 @@  discard block
 block discarded – undo
1504 1504
 		return 0;
1505 1505
 	}
1506 1506
 
1507
-	function pdf_writelinedesc($parameters=array(), &$object, &$action)
1507
+	function pdf_writelinedesc($parameters = array(), &$object, &$action)
1508 1508
 	{
1509 1509
 		/**
1510 1510
 		 * @var $pdf    TCPDF
1511 1511
 		 */
1512
-		global $pdf,$conf;
1512
+		global $pdf, $conf;
1513 1513
 
1514
-		foreach($parameters as $key=>$value) {
1514
+		foreach ($parameters as $key=>$value) {
1515 1515
 			${$key} = $value;
1516 1516
 		}
1517 1517
 		
1518
-		$hideInnerLines = (int)GETPOST('hideInnerLines');
1519
-		$hidedetails = (int)GETPOST('hidedetails');
1518
+		$hideInnerLines = (int) GETPOST('hideInnerLines');
1519
+		$hidedetails = (int) GETPOST('hidedetails');
1520 1520
 		
1521
-		if($this->isModSubtotalLine($parameters,$object) ){			
1521
+		if ($this->isModSubtotalLine($parameters, $object)) {			
1522 1522
 		
1523 1523
 				global $hideprices;
1524 1524
 				
1525
-				if(!empty($hideprices)) {
1526
-					foreach($object->lines as &$line) {
1527
-						if($line->fk_product_type!=9) $line->fk_parent_line = -1;	
1525
+				if (!empty($hideprices)) {
1526
+					foreach ($object->lines as &$line) {
1527
+						if ($line->fk_product_type != 9) $line->fk_parent_line = -1;	
1528 1528
 					}
1529 1529
 				}
1530 1530
 			
1531 1531
 				$line = &$object->lines[$i];
1532 1532
 				
1533
-				if($line->info_bits>0) { // PAGE BREAK
1533
+				if ($line->info_bits > 0) { // PAGE BREAK
1534 1534
 					$pdf->addPage();
1535 1535
 					$posy = $pdf->GetY();
1536 1536
 				}
1537 1537
 				
1538 1538
 				$label = $line->label;
1539
-				$description= !empty($line->desc) ? $outputlangs->convToOutputCharset($line->desc) : $outputlangs->convToOutputCharset($line->description);
1539
+				$description = !empty($line->desc) ? $outputlangs->convToOutputCharset($line->desc) : $outputlangs->convToOutputCharset($line->description);
1540 1540
 				
1541
-				if(empty($label)) {
1541
+				if (empty($label)) {
1542 1542
 					$label = $description;
1543
-					$description='';
1543
+					$description = '';
1544 1544
 				}
1545 1545
 				
1546
-				if($line->qty>90) {
1546
+				if ($line->qty > 90) {
1547 1547
 					
1548 1548
 					if ($conf->global->SUBTOTAL_USE_NEW_FORMAT)	$label .= ' '.$this->getTitle($object, $line);
1549 1549
 					
1550 1550
 					$pageBefore = $pdf->getPage();
1551
-					$this->pdf_add_total($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h);
1551
+					$this->pdf_add_total($pdf, $object, $line, $label, $description, $posx, $posy, $w, $h);
1552 1552
 					$pageAfter = $pdf->getPage();	
1553 1553
 
1554
-					if($pageAfter>$pageBefore) {
1554
+					if ($pageAfter > $pageBefore) {
1555 1555
 						//print "ST $pageAfter>$pageBefore<br>";
1556 1556
 						$pdf->rollbackTransaction(true);	
1557
-						$pdf->addPage('','', true);
1557
+						$pdf->addPage('', '', true);
1558 1558
 						$posy = $pdf->GetY();
1559
-						$this->pdf_add_total($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h);
1559
+						$this->pdf_add_total($pdf, $object, $line, $label, $description, $posx, $posy, $w, $h);
1560 1560
 						$posy = $pdf->GetY();
1561 1561
 						//print 'add ST'.$pdf->getPage().'<br />';
1562 1562
 					}
@@ -1567,7 +1567,7 @@  discard block
 block discarded – undo
1567 1567
 				else if ($line->qty < 10) {
1568 1568
 					$pageBefore = $pdf->getPage();
1569 1569
 
1570
-					$this->pdf_add_title($pdf,$object, $line, $label, $description,$posx, $posy, $w, $h); 
1570
+					$this->pdf_add_title($pdf, $object, $line, $label, $description, $posx, $posy, $w, $h); 
1571 1571
 					$pageAfter = $pdf->getPage();	
1572 1572
 
1573 1573
 					
@@ -1642,9 +1642,9 @@  discard block
 block discarded – undo
1642 1642
 	 * @param $hookmanager  HookManager
1643 1643
 	 * @return int
1644 1644
 	 */
1645
-	function printObjectLine ($parameters, &$object, &$action, $hookmanager){
1645
+	function printObjectLine($parameters, &$object, &$action, $hookmanager) {
1646 1646
 		
1647
-		global $conf,$langs,$user,$db,$bc;
1647
+		global $conf, $langs, $user, $db, $bc;
1648 1648
 		
1649 1649
 		$num = &$parameters['num'];
1650 1650
 		$line = &$parameters['line'];
@@ -1652,32 +1652,32 @@  discard block
 block discarded – undo
1652 1652
 		
1653 1653
 		$var = &$parameters['var'];
1654 1654
 
1655
-		$contexts = explode(':',$parameters['context']);
1655
+		$contexts = explode(':', $parameters['context']);
1656 1656
 
1657 1657
 		$createRight = $user->rights->{$object->element}->creer;
1658
-		if($object->element == 'facturerec' )
1658
+		if ($object->element == 'facturerec')
1659 1659
 		{
1660 1660
 			$object->statut = 0; // hack for facture rec
1661 1661
 			$createRight = $user->rights->facture->creer;
1662 1662
 		}
1663
-		elseif($object->element == 'order_supplier' )
1663
+		elseif ($object->element == 'order_supplier')
1664 1664
 		{
1665 1665
 		    $createRight = $user->rights->fournisseur->commande->creer;
1666 1666
 		}
1667
-		elseif($object->element == 'invoice_supplier' )
1667
+		elseif ($object->element == 'invoice_supplier')
1668 1668
 		{
1669 1669
 		    $createRight = $user->rights->fournisseur->facture->creer;
1670 1670
 		}
1671 1671
 		
1672
-		if($line->special_code!=$this->module_number || $line->product_type!=9) {
1672
+		if ($line->special_code != $this->module_number || $line->product_type != 9) {
1673 1673
 			null;
1674 1674
 		}	
1675
-		else if (in_array('invoicecard',$contexts) || in_array('invoicesuppliercard',$contexts) || in_array('propalcard',$contexts) || in_array('supplier_proposalcard',$contexts) || in_array('ordercard',$contexts) || in_array('ordersuppliercard',$contexts) || in_array('invoicereccard',$contexts)) 
1675
+		else if (in_array('invoicecard', $contexts) || in_array('invoicesuppliercard', $contexts) || in_array('propalcard', $contexts) || in_array('supplier_proposalcard', $contexts) || in_array('ordercard', $contexts) || in_array('ordersuppliercard', $contexts) || in_array('invoicereccard', $contexts)) 
1676 1676
         {
1677
-			if($object->element=='facture')$idvar = 'facid';
1678
-			else $idvar='id';
1677
+			if ($object->element == 'facture')$idvar = 'facid';
1678
+			else $idvar = 'id';
1679 1679
 			
1680
-			if((float)DOL_VERSION <= 3.4)
1680
+			if ((float) DOL_VERSION <= 3.4)
1681 1681
 			{
1682 1682
 				?>
1683 1683
 				<script type="text/javascript">
@@ -1701,20 +1701,20 @@  discard block
 block discarded – undo
1701 1701
 				<?php
1702 1702
 			}
1703 1703
 			
1704
-			if(empty($line->description)) $line->description = $line->desc;
1704
+			if (empty($line->description)) $line->description = $line->desc;
1705 1705
 			
1706 1706
 			$colspan = 5;
1707
-			if($object->element == 'facturerec' ) $colspan = 3;
1708
-			if($object->element == 'order_supplier') $colspan = 3;
1709
-			if($object->element == 'invoice_supplier') $colspan = 4;
1710
-			if($object->element == 'supplier_proposal') $colspan = 4;
1711
-			if(!empty($conf->multicurrency->enabled)) $colspan+=2;
1712
-			if($object->element == 'commande' && $object->statut < 3 && !empty($conf->shippableorder->enabled)) $colspan++;
1713
-			if(!empty($conf->margin->enabled)) $colspan++;
1714
-			if(!empty($conf->global->DISPLAY_MARGIN_RATES)) $colspan++;
1715
-			if(!empty($conf->global->DISPLAY_MARK_RATES)) $colspan++;
1716
-			if($object->element == 'facture' && !empty($conf->global->INVOICE_USE_SITUATION) && $object->type == Facture::TYPE_SITUATION) $colspan++;
1717
-			if(!empty($conf->global->PRODUCT_USE_UNITS)) $colspan++;
1707
+			if ($object->element == 'facturerec') $colspan = 3;
1708
+			if ($object->element == 'order_supplier') $colspan = 3;
1709
+			if ($object->element == 'invoice_supplier') $colspan = 4;
1710
+			if ($object->element == 'supplier_proposal') $colspan = 4;
1711
+			if (!empty($conf->multicurrency->enabled)) $colspan += 2;
1712
+			if ($object->element == 'commande' && $object->statut < 3 && !empty($conf->shippableorder->enabled)) $colspan++;
1713
+			if (!empty($conf->margin->enabled)) $colspan++;
1714
+			if (!empty($conf->global->DISPLAY_MARGIN_RATES)) $colspan++;
1715
+			if (!empty($conf->global->DISPLAY_MARK_RATES)) $colspan++;
1716
+			if ($object->element == 'facture' && !empty($conf->global->INVOICE_USE_SITUATION) && $object->type == Facture::TYPE_SITUATION) $colspan++;
1717
+			if (!empty($conf->global->PRODUCT_USE_UNITS)) $colspan++;
1718 1718
 					
1719 1719
 			/* Titre */
1720 1720
 			//var_dump($line);
@@ -1724,35 +1724,35 @@  discard block
 block discarded – undo
1724 1724
             
1725 1725
 			
1726 1726
 			?>
1727
-			<tr <?php echo $bc[$var]; $var=!$var; echo $data; ?> rel="subtotal" id="row-<?php echo $line->id ?>" style="<?php
1727
+			<tr <?php echo $bc[$var]; $var = !$var; echo $data; ?> rel="subtotal" id="row-<?php echo $line->id ?>" style="<?php
1728 1728
 					if (!empty($conf->global->SUBTOTAL_USE_NEW_FORMAT))
1729 1729
 					{
1730
-						if($line->qty==99) print 'background:#adadcf';
1731
-						else if($line->qty==98) print 'background:#ddddff;';
1732
-						else if($line->qty<=97 && $line->qty>=91) print 'background:#eeeeff;';
1733
-						else if($line->qty==1) print 'background:#adadcf;';
1734
-						else if($line->qty==2) print 'background:#ddddff;';
1735
-						else if($line->qty==50) print '';
1730
+						if ($line->qty == 99) print 'background:#adadcf';
1731
+						else if ($line->qty == 98) print 'background:#ddddff;';
1732
+						else if ($line->qty <= 97 && $line->qty >= 91) print 'background:#eeeeff;';
1733
+						else if ($line->qty == 1) print 'background:#adadcf;';
1734
+						else if ($line->qty == 2) print 'background:#ddddff;';
1735
+						else if ($line->qty == 50) print '';
1736 1736
 						else print 'background:#eeeeff;';
1737 1737
 
1738 1738
 						//A compléter si on veux plus de nuances de couleurs avec les niveau 4,5,6,7,8 et 9
1739 1739
 					}
1740 1740
 					else 
1741 1741
 					{
1742
-						if($line->qty==99) print 'background:#ddffdd';
1743
-						else if($line->qty==98) print 'background:#ddddff;';
1744
-						else if($line->qty==2) print 'background:#eeeeff; ';
1745
-						else if($line->qty==50) print '';
1746
-						else print 'background:#eeffee;' ;
1742
+						if ($line->qty == 99) print 'background:#ddffdd';
1743
+						else if ($line->qty == 98) print 'background:#ddddff;';
1744
+						else if ($line->qty == 2) print 'background:#eeeeff; ';
1745
+						else if ($line->qty == 50) print '';
1746
+						else print 'background:#eeffee;';
1747 1747
 					}
1748 1748
 
1749 1749
 			?>;">
1750 1750
 			
1751
-				<td colspan="<?php echo $colspan; ?>" style="<?php TSubtotal::isFreeText($line) ? '' : 'font-weight:bold;'; ?>  <?php echo ($line->qty>90)?'text-align:right':'' ?> "><?php
1752
-					if($action=='editline' && GETPOST('lineid') == $line->id && TSubtotal::isModSubtotalLine($line) ) {
1751
+				<td colspan="<?php echo $colspan; ?>" style="<?php TSubtotal::isFreeText($line) ? '' : 'font-weight:bold;'; ?>  <?php echo ($line->qty > 90) ? 'text-align:right' : '' ?> "><?php
1752
+					if ($action == 'editline' && GETPOST('lineid') == $line->id && TSubtotal::isModSubtotalLine($line)) {
1753 1753
 
1754
-						$params=array('line'=>$line);
1755
-						$reshook=$hookmanager->executeHooks('formEditProductOptions',$params,$object,$action);
1754
+						$params = array('line'=>$line);
1755
+						$reshook = $hookmanager->executeHooks('formEditProductOptions', $params, $object, $action);
1756 1756
 						
1757 1757
 						echo '<div id="line_'.$line->id.'"></div>'; // Imitation Dolibarr
1758 1758
 						echo '<input type="hidden" value="'.$line->id.'" name="lineid">';
@@ -1760,7 +1760,7 @@  discard block
 block discarded – undo
1760 1760
 						echo '<input id="product_id" type="hidden" value="'.$line->fk_product.'" name="type">';
1761 1761
 						echo '<input id="special_code" type="hidden" value="'.$line->special_code.'" name="type">';
1762 1762
 
1763
-						$isFreeText=false;
1763
+						$isFreeText = false;
1764 1764
 						if (TSubtotal::isTitle($line))
1765 1765
 						{
1766 1766
 							$qty_displayed = $line->qty;
@@ -1782,13 +1782,13 @@  discard block
 block discarded – undo
1782 1782
 						    $line->description = '';
1783 1783
 						}
1784 1784
 						$newlabel = $line->label;
1785
-						if($line->label=='' && !$isFreeText) {
1786
-							if(TSubtotal::isSubtotal($line)) {
1785
+						if ($line->label == '' && !$isFreeText) {
1786
+							if (TSubtotal::isSubtotal($line)) {
1787 1787
 								$newlabel = $line->description.' '.$this->getTitle($object, $line);
1788
-								$line->description='';
1789
-							} elseif( (float)DOL_VERSION < 6 ) {
1790
-								$newlabel= $line->description;
1791
-								$line->description='';
1788
+								$line->description = '';
1789
+							} elseif ((float) DOL_VERSION < 6) {
1790
+								$newlabel = $line->description;
1791
+								$line->description = '';
1792 1792
 							}
1793 1793
 						}
1794 1794
 
@@ -1797,10 +1797,10 @@  discard block
 block discarded – undo
1797 1797
 						
1798 1798
 						if (!$isFreeText) echo '<input type="text" name="line-title" id-line="'.$line->id.'" value="'.$newlabel.'" size="80" '.$readonlyForSituation.'/>&nbsp;';
1799 1799
 						
1800
-						if (!empty($conf->global->SUBTOTAL_USE_NEW_FORMAT) && (TSubtotal::isTitle($line) || TSubtotal::isSubtotal($line)) )
1800
+						if (!empty($conf->global->SUBTOTAL_USE_NEW_FORMAT) && (TSubtotal::isTitle($line) || TSubtotal::isSubtotal($line)))
1801 1801
 						{
1802 1802
 							$select = '<select name="subtotal_level">';
1803
-							for ($j=1; $j<10; $j++)
1803
+							for ($j = 1; $j < 10; $j++)
1804 1804
 							{
1805 1805
 								if (!empty($readonlyForSituation)) {
1806 1806
 									if ($qty_displayed == $j) $select .= '<option selected="selected" value="'.$j.'">'.$langs->trans('Level').' '.$j.'</option>';
@@ -1813,7 +1813,7 @@  discard block
 block discarded – undo
1813 1813
 						
1814 1814
 
1815 1815
 						echo '<div class="subtotal_underline" style="margin-left:24px;">';
1816
-							echo '<label for="subtotal-pagebreak">'.$langs->trans('AddBreakPageBefore').'</label> <input style="vertical-align:sub;"  type="checkbox" name="line-pagebreak" id="subtotal-pagebreak" value="8" '.(($line->info_bits > 0) ? 'checked="checked"' : '') .' />&nbsp;&nbsp;';
1816
+							echo '<label for="subtotal-pagebreak">'.$langs->trans('AddBreakPageBefore').'</label> <input style="vertical-align:sub;"  type="checkbox" name="line-pagebreak" id="subtotal-pagebreak" value="8" '.(($line->info_bits > 0) ? 'checked="checked"' : '').' />&nbsp;&nbsp;';
1817 1817
 
1818 1818
 							if (TSubtotal::isTitle($line))
1819 1819
 							{
@@ -1831,9 +1831,9 @@  discard block
 block discarded – undo
1831 1831
 							else if ($isFreeText) echo TSubtotal::getFreeTextHtml($line, (bool) $readonlyForSituation);
1832 1832
 						echo '</div>';
1833 1833
 
1834
-						if($line->qty<10) {
1834
+						if ($line->qty < 10) {
1835 1835
 							// WYSIWYG editor
1836
-							require_once DOL_DOCUMENT_ROOT . '/core/class/doleditor.class.php';
1836
+							require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
1837 1837
 							$nbrows = ROWS_2;
1838 1838
 							$cked_enabled = (!empty($conf->global->FCKEDITOR_ENABLE_DETAILS) ? $conf->global->FCKEDITOR_ENABLE_DETAILS : 0);
1839 1839
 							if (!empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) {
@@ -1853,25 +1853,25 @@  discard block
 block discarded – undo
1853 1853
 
1854 1854
 						 if ($conf->global->SUBTOTAL_USE_NEW_FORMAT)
1855 1855
 						 {
1856
-							if(TSubtotal::isTitle($line) || TSubtotal::isSubtotal($line)) 
1856
+							if (TSubtotal::isTitle($line) || TSubtotal::isSubtotal($line)) 
1857 1857
 							{
1858
-								echo str_repeat('&nbsp;&nbsp;&nbsp;', $line->qty-1);
1858
+								echo str_repeat('&nbsp;&nbsp;&nbsp;', $line->qty - 1);
1859 1859
 								
1860 1860
 								if (TSubtotal::isTitle($line)) print img_picto('', 'subtotal@subtotal').'<span style="font-size:9px;margin-left:-3px;">'.$line->qty.'</span>&nbsp;&nbsp;';
1861
-								else print img_picto('', 'subtotal2@subtotal').'<span style="font-size:9px;margin-left:-1px;">'.(100-$line->qty).'</span>&nbsp;&nbsp;';
1861
+								else print img_picto('', 'subtotal2@subtotal').'<span style="font-size:9px;margin-left:-1px;">'.(100 - $line->qty).'</span>&nbsp;&nbsp;';
1862 1862
 							}
1863 1863
 						 }
1864 1864
 						 else 
1865 1865
 						 {
1866
-							if($line->qty<=1) print img_picto('', 'subtotal@subtotal');
1867
-							else if($line->qty==2) print img_picto('', 'subsubtotal@subtotal').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'; 
1866
+							if ($line->qty <= 1) print img_picto('', 'subtotal@subtotal');
1867
+							else if ($line->qty == 2) print img_picto('', 'subsubtotal@subtotal').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'; 
1868 1868
 						 }
1869 1869
 						 
1870 1870
 						 
1871 1871
 						 // Get display styles and apply them
1872 1872
 						 $titleStyleItalic = strpos($conf->global->SUBTOTAL_TITLE_STYLE, 'I') === false ? '' : ' font-style: italic;';
1873
-						 $titleStyleBold =  strpos($conf->global->SUBTOTAL_TITLE_STYLE, 'B') === false ? '' : ' font-weight:bold;';
1874
-						 $titleStyleUnderline =  strpos($conf->global->SUBTOTAL_TITLE_STYLE, 'U') === false ? '' : ' text-decoration: underline;';
1873
+						 $titleStyleBold = strpos($conf->global->SUBTOTAL_TITLE_STYLE, 'B') === false ? '' : ' font-weight:bold;';
1874
+						 $titleStyleUnderline = strpos($conf->global->SUBTOTAL_TITLE_STYLE, 'U') === false ? '' : ' text-decoration: underline;';
1875 1875
 						 
1876 1876
 						 if (empty($line->label)) {
1877 1877
 							if ($line->qty >= 91 && $line->qty <= 99 && $conf->global->SUBTOTAL_USE_NEW_FORMAT) print  $line->description.' '.$this->getTitle($object, $line);
@@ -1879,16 +1879,16 @@  discard block
 block discarded – undo
1879 1879
 						 } 
1880 1880
 						 else {
1881 1881
 
1882
-							if (! empty($conf->global->PRODUIT_DESC_IN_FORM) && !empty($line->description)) {
1882
+							if (!empty($conf->global->PRODUIT_DESC_IN_FORM) && !empty($line->description)) {
1883 1883
 								print '<span class="subtotal_label" style="'.$titleStyleItalic.$titleStyleBold.$titleStyleUnderline.'" >'.$line->label.'</span><br><div class="subtotal_desc">'.dol_htmlentitiesbr($line->description).'</div>';
1884 1884
 							}
1885
-							else{
1885
+							else {
1886 1886
 								print '<span class="subtotal_label classfortooltip '.$titleStyleItalic.$titleStyleBold.$titleStyleUnderline.'" title="'.$line->description.'">'.$line->label.'</span>';    
1887 1887
 							}
1888 1888
 
1889 1889
 						 } 
1890
-						if($line->qty>90) print ' : ';
1891
-						if($line->info_bits > 0) echo img_picto($langs->trans('Pagebreak'), 'pagebreak@subtotal');
1890
+						if ($line->qty > 90) print ' : ';
1891
+						if ($line->info_bits > 0) echo img_picto($langs->trans('Pagebreak'), 'pagebreak@subtotal');
1892 1892
 
1893 1893
 						 
1894 1894
 
@@ -1897,7 +1897,7 @@  discard block
 block discarded – undo
1897 1897
 			?></td>
1898 1898
 					 
1899 1899
 			<?php
1900
-				if($line->qty>90) {
1900
+				if ($line->qty > 90) {
1901 1901
 					/* Total */
1902 1902
 					$total_line = $this->getTotalLineFromObject($object, $line, '');
1903 1903
 					echo '<td class="nowrap liencolht" align="right" style="font-weight:bold;" rel="subtotal_total">'.price($total_line).'</td>';
@@ -1910,7 +1910,7 @@  discard block
 block discarded – undo
1910 1910
 				<?php
1911 1911
 				if ($action != 'selectlines') {
1912 1912
 				
1913
-					if($action=='editline' && GETPOST('lineid') == $line->id && TSubtotal::isModSubtotalLine($line) ) {
1913
+					if ($action == 'editline' && GETPOST('lineid') == $line->id && TSubtotal::isModSubtotalLine($line)) {
1914 1914
 						?>
1915 1915
 						<input id="savelinebutton" class="button" type="submit" name="save" value="<?php echo $langs->trans('Save') ?>" />
1916 1916
 						<br />
@@ -1926,13 +1926,13 @@  discard block
 block discarded – undo
1926 1926
 						<?php
1927 1927
 						
1928 1928
 					}
1929
-					else{
1930
-						if ($object->statut == 0  && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_DUPLICATE_BLOCK) && $object->element !== 'invoice_supplier')
1929
+					else {
1930
+						if ($object->statut == 0 && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_DUPLICATE_BLOCK) && $object->element !== 'invoice_supplier')
1931 1931
 						{
1932
-							if(TSubtotal::isTitle($line) && ($object->situation_counter == 1 || !$object->situation_cycle_ref) ) echo '<a href="'.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id.'&action=duplicate&lineid='.$line->id.'">'. img_picto($langs->trans('Duplicate'), 'duplicate@subtotal').'</a>';
1932
+							if (TSubtotal::isTitle($line) && ($object->situation_counter == 1 || !$object->situation_cycle_ref)) echo '<a href="'.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id.'&action=duplicate&lineid='.$line->id.'">'.img_picto($langs->trans('Duplicate'), 'duplicate@subtotal').'</a>';
1933 1933
 						}
1934 1934
 
1935
-						if ($object->statut == 0  && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_EDIT_BLOCK)) 
1935
+						if ($object->statut == 0 && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_EDIT_BLOCK)) 
1936 1936
 						{
1937 1937
 							echo '<a href="'.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id.'&action=editline&lineid='.$line->id.'">'.img_edit().'</a>';
1938 1938
 						}								
@@ -1947,7 +1947,7 @@  discard block
 block discarded – undo
1947 1947
 				<?php
1948 1948
 
1949 1949
 				if ($action != 'editline' && $action != 'selectlines') {
1950
-						if ($object->statut == 0  && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_REMOVE_BLOCK))
1950
+						if ($object->statut == 0 && $createRight && !empty($conf->global->SUBTOTAL_ALLOW_REMOVE_BLOCK))
1951 1951
 						{
1952 1952
 
1953 1953
 							if ($object->situation_counter == 1 || !$object->situation_cycle_ref)
@@ -1955,7 +1955,7 @@  discard block
 block discarded – undo
1955 1955
 								echo '<a href="'.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id.'&action=ask_deleteline&lineid='.$line->id.'">'.img_delete().'</a>';
1956 1956
 							}
1957 1957
 
1958
-							if(TSubtotal::isTitle($line) && ($object->situation_counter == 1 || !$object->situation_cycle_ref) )
1958
+							if (TSubtotal::isTitle($line) && ($object->situation_counter == 1 || !$object->situation_cycle_ref))
1959 1959
 							{
1960 1960
 								$img_delete = ((float) DOL_VERSION >= 3.8) ? img_picto($langs->trans('deleteWithAllLines'), 'delete_all.3.8@subtotal') : img_picto($langs->trans('deleteWithAllLines'), 'delete_all@subtotal');
1961 1961
 								echo '<a href="'.$_SERVER['PHP_SELF'].'?'.$idvar.'='.$object->id.'&action=ask_deleteallline&lineid='.$line->id.'">'.$img_delete.'</a>';
@@ -1966,7 +1966,7 @@  discard block
 block discarded – undo
1966 1966
 			</td>
1967 1967
 			
1968 1968
 			<?php 
1969
-			if ($object->statut == 0  && $createRight && !empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && TSubtotal::isTitle($line) && $action != 'editline')
1969
+			if ($object->statut == 0 && $createRight && !empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && TSubtotal::isTitle($line) && $action != 'editline')
1970 1970
 			{
1971 1971
 				echo '<td class="subtotal_nc">';
1972 1972
 				echo '<input id="subtotal_nc-'.$line->id.'" class="subtotal_nc_chkbx" data-lineid="'.$line->id.'" type="checkbox" name="subtotal_nc" value="1" '.(!empty($line->array_options['options_subtotal_nc']) ? 'checked="checked"' : '').' />';
@@ -1977,11 +1977,11 @@  discard block
 block discarded – undo
1977 1977
 			<td align="center" class="tdlineupdown">
1978 1978
 			</td>
1979 1979
 			<?php } else { ?>
1980
-			<td align="center"<?php echo ((empty($conf->browser->phone) && ($object->statut == 0  && $createRight ))?' class="tdlineupdown"':''); ?>></td>
1980
+			<td align="center"<?php echo ((empty($conf->browser->phone) && ($object->statut == 0 && $createRight)) ? ' class="tdlineupdown"' : ''); ?>></td>
1981 1981
 			<?php } ?>
1982 1982
 
1983
-			<?php  if($action == 'selectlines'){ // dolibarr 8 ?>
1984
-			<td class="linecolcheck" align="center"><input type="checkbox" class="linecheckbox" name="line_checkbox[<?php echo $i+1; ?>]" value="<?php echo $line->id; ?>" ></td>
1983
+			<?php  if ($action == 'selectlines') { // dolibarr 8 ?>
1984
+			<td class="linecolcheck" align="center"><input type="checkbox" class="linecheckbox" name="line_checkbox[<?php echo $i + 1; ?>]" value="<?php echo $line->id; ?>" ></td>
1985 1985
 			<?php } ?>
1986 1986
 
1987 1987
 			</tr>
@@ -1989,29 +1989,29 @@  discard block
 block discarded – undo
1989 1989
 			
1990 1990
 			
1991 1991
 			// Affichage des extrafields à la Dolibarr (car sinon non affiché sur les titres)
1992
-			if(TSubtotal::isTitle($line) && !empty($conf->global->SUBTOTAL_ALLOW_EXTRAFIELDS_ON_TITLE)) {
1992
+			if (TSubtotal::isTitle($line) && !empty($conf->global->SUBTOTAL_ALLOW_EXTRAFIELDS_ON_TITLE)) {
1993 1993
 				
1994
-				require_once DOL_DOCUMENT_ROOT . '/core/class/extrafields.class.php';
1994
+				require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
1995 1995
 				
1996 1996
 				// Extrafields
1997 1997
 				$extrafieldsline = new ExtraFields($db);
1998 1998
 				$extralabelsline = $extrafieldsline->fetch_name_optionals_label($object->table_element_line);
1999 1999
 				
2000
-				$colspan+=3; $mode = 'view';
2001
-				if($action === 'editline' && $line->rowid == GETPOST('lineid')) $mode = 'edit';
2000
+				$colspan += 3; $mode = 'view';
2001
+				if ($action === 'editline' && $line->rowid == GETPOST('lineid')) $mode = 'edit';
2002 2002
 				
2003 2003
 				$ex_element = $line->element;
2004 2004
 				$line->element = 'tr_extrafield_title '.$line->element; // Pour pouvoir manipuler ces tr
2005
-				print $line->showOptionals($extrafieldsline, $mode, array('style'=>' style="background:#eeffee;" ','colspan'=>$colspan));
2005
+				print $line->showOptionals($extrafieldsline, $mode, array('style'=>' style="background:#eeffee;" ', 'colspan'=>$colspan));
2006 2006
 				$isExtraSelected = false;
2007
-				foreach($line->array_options as $option) {
2008
-					if(!empty($option) && $option != "-1") {
2007
+				foreach ($line->array_options as $option) {
2008
+					if (!empty($option) && $option != "-1") {
2009 2009
 						$isExtraSelected = true;
2010 2010
 						break;
2011 2011
 					}
2012 2012
 				}
2013 2013
 				
2014
-				if($mode === 'edit') {
2014
+				if ($mode === 'edit') {
2015 2015
 					?>
2016 2016
 					<script>
2017 2017
 						$(document).ready(function(){
@@ -2019,7 +2019,7 @@  discard block
 block discarded – undo
2019 2019
 							var all_tr_extrafields = $("tr.tr_extrafield_title");
2020 2020
 							<?php 
2021 2021
 							// Si un extrafield est rempli alors on affiche directement les extrafields
2022
-							if(!$isExtraSelected) {
2022
+							if (!$isExtraSelected) {
2023 2023
 								echo 'all_tr_extrafields.hide();';
2024 2024
 								echo 'var trad = "'.$langs->trans('showExtrafields').'";';
2025 2025
 								echo 'var extra = 0;';
@@ -2065,20 +2065,20 @@  discard block
 block discarded – undo
2065 2065
 
2066 2066
 	
2067 2067
 	function addMoreActionsButtons($parameters, &$object, &$action, $hookmanager) {
2068
-		global $conf,$langs;
2068
+		global $conf, $langs;
2069 2069
 		 
2070 2070
 		if ($object->statut == 0 && !empty($conf->global->SUBTOTAL_MANAGE_COMPRIS_NONCOMPRIS) && $action != 'editline')
2071 2071
 		{
2072 2072
 		    
2073
-		    if($object->element == 'invoice_supplier' || $object->element == 'order_supplier')
2073
+		    if ($object->element == 'invoice_supplier' || $object->element == 'order_supplier')
2074 2074
 		    {
2075 2075
 		        foreach ($object->lines as $line)
2076 2076
 		        {
2077 2077
 		            // fetch optionals attributes and labels
2078 2078
 		            require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
2079
-		            $extrafields=new ExtraFields($this->db);
2080
-		            $extralabels=$extrafields->fetch_name_optionals_label($object->table_element_line,true);
2081
-		            $line->fetch_optionals($line->id,$extralabels);
2079
+		            $extrafields = new ExtraFields($this->db);
2080
+		            $extralabels = $extrafields->fetch_name_optionals_label($object->table_element_line, true);
2081
+		            $line->fetch_optionals($line->id, $extralabels);
2082 2082
 		        }
2083 2083
 		    }
2084 2084
 		    
@@ -2178,23 +2178,23 @@  discard block
 block discarded – undo
2178 2178
 	    $ThtmlData['data-qty']          = 0; //$line->qty;
2179 2179
 	    $ThtmlData['data-level']        = TSubtotal::getNiveau($line);
2180 2180
 	    
2181
-	    if(TSubtotal::isTitle($line)){
2181
+	    if (TSubtotal::isTitle($line)) {
2182 2182
 	        $ThtmlData['data-issubtotal'] = 'title';
2183
-	    }elseif(TSubtotal::isSubtotal($line)){
2183
+	    }elseif (TSubtotal::isSubtotal($line)) {
2184 2184
 	        $ThtmlData['data-issubtotal'] = 'subtotal';
2185 2185
 	    }
2186
-	    else{
2186
+	    else {
2187 2187
 	        $ThtmlData['data-issubtotal'] = 'freetext';
2188 2188
 	    }
2189 2189
 	    
2190 2190
 	    
2191 2191
 	    // Change or add data  from hooks
2192
-	    $parameters = array_replace($parameters , array(  'ThtmlData' => $ThtmlData )  );
2192
+	    $parameters = array_replace($parameters, array('ThtmlData' => $ThtmlData));
2193 2193
 	    
2194 2194
 	    // hook 
2195
-	    $reshook = $hookmanager->executeHooks('subtotalLineHtmlData',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
2195
+	    $reshook = $hookmanager->executeHooks('subtotalLineHtmlData', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
2196 2196
 	    if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
2197
-	    if ($reshook>0)
2197
+	    if ($reshook > 0)
2198 2198
 	    {
2199 2199
 	        $ThtmlData = $hookmanager->resArray;
2200 2200
 	    }
@@ -2207,14 +2207,14 @@  discard block
 block discarded – undo
2207 2207
 	function implodeHtmlData($ThtmlData = array())
2208 2208
 	{
2209 2209
 	    $data = '';
2210
-	    foreach($ThtmlData as $k => $h )
2210
+	    foreach ($ThtmlData as $k => $h)
2211 2211
 	    {
2212
-	        if(is_array($h))
2212
+	        if (is_array($h))
2213 2213
 	        {
2214 2214
 	            $h = json_encode($h);
2215 2215
 	        }
2216 2216
 	        
2217
-	        $data .= $k . '="'.dol_htmlentities($h, ENT_QUOTES).'" ';
2217
+	        $data .= $k.'="'.dol_htmlentities($h, ENT_QUOTES).'" ';
2218 2218
 	    }
2219 2219
 	    
2220 2220
 	    return $data;
@@ -2222,26 +2222,26 @@  discard block
 block discarded – undo
2222 2222
 	
2223 2223
 	function _ajax_block_order_js($object)
2224 2224
 	{
2225
-	    global $conf,$tagidfortablednd,$filepath,$langs;
2225
+	    global $conf, $tagidfortablednd, $filepath, $langs;
2226 2226
 	    
2227 2227
 	    /*
2228 2228
 	     * this part of js is base on dolibarr htdocs/core/tpl/ajaxrow.tpl.php 
2229 2229
 	     * for compatibility reasons we don't use tableDnD but jquery sortable
2230 2230
 	     */
2231 2231
 	    
2232
-	    $id=$object->id;
2233
-	    $nboflines=(isset($object->lines)?count($object->lines):0);
2234
-	    $forcereloadpage=empty($conf->global->MAIN_FORCE_RELOAD_PAGE)?0:1;
2232
+	    $id = $object->id;
2233
+	    $nboflines = (isset($object->lines) ?count($object->lines) : 0);
2234
+	    $forcereloadpage = empty($conf->global->MAIN_FORCE_RELOAD_PAGE) ? 0 : 1;
2235 2235
 	    
2236
-	    $id=$object->id;
2237
-	    $fk_element=$object->fk_element;
2238
-	    $table_element_line=$object->table_element_line;
2239
-	    $nboflines=(isset($object->lines)?count($object->lines):(empty($nboflines)?0:$nboflines));
2240
-	    $tagidfortablednd=(empty($tagidfortablednd)?'tablelines':$tagidfortablednd);
2241
-	    $filepath=(empty($filepath)?'':$filepath);
2236
+	    $id = $object->id;
2237
+	    $fk_element = $object->fk_element;
2238
+	    $table_element_line = $object->table_element_line;
2239
+	    $nboflines = (isset($object->lines) ?count($object->lines) : (empty($nboflines) ? 0 : $nboflines));
2240
+	    $tagidfortablednd = (empty($tagidfortablednd) ? 'tablelines' : $tagidfortablednd);
2241
+	    $filepath = (empty($filepath) ? '' : $filepath);
2242 2242
 	    
2243 2243
 	    
2244
-	    if (GETPOST('action','aZ09') != 'editline' && $nboflines > 1)
2244
+	    if (GETPOST('action', 'aZ09') != 'editline' && $nboflines > 1)
2245 2245
 	    {
2246 2246
 	        
2247 2247
 	        ?>
@@ -2259,7 +2259,7 @@  discard block
 block discarded – undo
2259 2259
 				moveBlockCol.disableSelection(); // prevent selection
2260 2260
 <?php if ($object->statut == 0) { ?>
2261 2261
 				// apply some graphical stuff
2262
-				moveBlockCol.css("background-image",'url(<?php echo dol_buildpath('subtotal/img/grip_all.png',2);  ?>)');
2262
+				moveBlockCol.css("background-image",'url(<?php echo dol_buildpath('subtotal/img/grip_all.png', 2); ?>)');
2263 2263
 				moveBlockCol.css("background-repeat","no-repeat");
2264 2264
 				moveBlockCol.css("background-position","center center");
2265 2265
 				moveBlockCol.css("cursor","move");
Please login to merge, or discard this patch.
lib/subtotal.lib.php 3 patches
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -25,25 +25,25 @@  discard block
 block discarded – undo
25 25
 
26 26
 function subtotalAdminPrepareHead()
27 27
 {
28
-    global $langs, $conf;
28
+	global $langs, $conf;
29 29
 
30
-    $langs->load("subtotal@subtotal");
30
+	$langs->load("subtotal@subtotal");
31 31
 
32
-    $h = 0;
33
-    $head = array();
32
+	$h = 0;
33
+	$head = array();
34 34
 
35
-    $head[$h][0] = dol_buildpath("/subtotal/admin/subtotal_setup.php", 1);
36
-    $head[$h][1] = $langs->trans("Parameters");
37
-    $head[$h][2] = 'settings';
38
-    $h++;
39
-    $head[$h][0] = dol_buildpath("/subtotal/admin/subtotal_about.php", 1);
40
-    $head[$h][1] = $langs->trans("About");
41
-    $head[$h][2] = 'about';
42
-    $h++;
35
+	$head[$h][0] = dol_buildpath("/subtotal/admin/subtotal_setup.php", 1);
36
+	$head[$h][1] = $langs->trans("Parameters");
37
+	$head[$h][2] = 'settings';
38
+	$h++;
39
+	$head[$h][0] = dol_buildpath("/subtotal/admin/subtotal_about.php", 1);
40
+	$head[$h][1] = $langs->trans("About");
41
+	$head[$h][2] = 'about';
42
+	$h++;
43 43
 
44
-    complete_head_from_modules($conf, $langs, $object, $head, $h, 'subtotal', $showLabel=false);
44
+	complete_head_from_modules($conf, $langs, $object, $head, $h, 'subtotal', $showLabel=false);
45 45
 
46
-    return $head;
46
+	return $head;
47 47
 }
48 48
 
49 49
 function getHtmlSelectTitle(&$object, $showLabel=false)
@@ -242,17 +242,17 @@  discard block
 block discarded – undo
242 242
 			$classname = ucfirst($element);
243 243
 			
244 244
 			switch ($element) {
245
-			    case 'supplier_proposal':
246
-			        $classname = 'SupplierProposal';
247
-			        break;
245
+				case 'supplier_proposal':
246
+					$classname = 'SupplierProposal';
247
+					break;
248 248
 			        
249
-			    case 'order_supplier':
250
-			        $classname = 'CommandeFournisseur';
251
-			        break;
249
+				case 'order_supplier':
250
+					$classname = 'CommandeFournisseur';
251
+					break;
252 252
 			        
253
-			    case 'invoice_supplier':
254
-			        $classname = 'FactureFournisseur';
255
-			        break;
253
+				case 'invoice_supplier':
254
+					$classname = 'FactureFournisseur';
255
+					break;
256 256
 			}
257 257
 			
258 258
 			$object = new $classname($db); // Propal | Commande | Facture
@@ -325,14 +325,14 @@  discard block
 block discarded – undo
325 325
 		else $res = $line->update($user);
326 326
 	}
327 327
 	else {
328
-	    if(in_array($object->element, array('invoice_supplier', 'order_supplier', 'supplier_proposal'))) {
329
-	        if(empty($line->label)) $line->label = $line->description; // supplier lines don't have the field label
328
+		if(in_array($object->element, array('invoice_supplier', 'order_supplier', 'supplier_proposal'))) {
329
+			if(empty($line->label)) $line->label = $line->description; // supplier lines don't have the field label
330 330
 	        
331
-	        require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
332
-	        $extrafields=new ExtraFields($object->db);
333
-	        $extralabels=$extrafields->fetch_name_optionals_label($object->table_element_line,true);
334
-	        $line->fetch_optionals($line->id,$extralabels);
335
-	    }
331
+			require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
332
+			$extrafields=new ExtraFields($object->db);
333
+			$extralabels=$extrafields->fetch_name_optionals_label($object->table_element_line,true);
334
+			$line->fetch_optionals($line->id,$extralabels);
335
+		}
336 336
 		$line->array_options['options_subtotal_nc'] = 0;
337 337
 		if($object->element == 'order_supplier') $line->update($user);
338 338
 		$res = TSubtotal::doUpdateLine($object, $line->id, $line->desc, $line->subprice, $line->qty, $line->remise_percent, $line->date_start, $line->date_end, $line->tva_tx, $line->product_type, $line->localtax1_tx, $line->localtax2_tx, 'HT', $line->info_bits, $line->fk_parent_line, $line->skip_update_total, $line->fk_fournprice, $line->pa_ht, $line->label, $line->special_code, $line->array_options, $line->situation_percent, $line->fk_unit);
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -41,21 +41,21 @@  discard block
 block discarded – undo
41 41
     $head[$h][2] = 'about';
42 42
     $h++;
43 43
 
44
-    complete_head_from_modules($conf, $langs, $object, $head, $h, 'subtotal', $showLabel=false);
44
+    complete_head_from_modules($conf, $langs, $object, $head, $h, 'subtotal', $showLabel = false);
45 45
 
46 46
     return $head;
47 47
 }
48 48
 
49
-function getHtmlSelectTitle(&$object, $showLabel=false)
49
+function getHtmlSelectTitle(&$object, $showLabel = false)
50 50
 {
51 51
 	global $langs;
52 52
 	
53
-	require_once DOL_DOCUMENT_ROOT . '/core/lib/functions.lib.php';
53
+	require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
54 54
 	dol_include_once('/subtotal/class/subtotal.class.php');
55 55
 	$TTitle = TSubtotal::getAllTitleFromDocument($object);
56 56
 	$html = '';
57
-	if ($showLabel) $html.= '<label for="under_title">'.$langs->trans('subtotalLabelForUnderTitle').'</label>';
58
-	$html.= '<select onChange="$(\'select[name=under_title]\').val(this.value);" name="under_title" class="under_title minwidth200"><option value="-1"></option>';
57
+	if ($showLabel) $html .= '<label for="under_title">'.$langs->trans('subtotalLabelForUnderTitle').'</label>';
58
+	$html .= '<select onChange="$(\'select[name=under_title]\').val(this.value);" name="under_title" class="under_title minwidth200"><option value="-1"></option>';
59 59
 	
60 60
 	$nbsp = '&nbsp;';
61 61
 	foreach ($TTitle as &$line)
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
 function getTFreeText()
72 72
 {
73
-	global $db,$conf;
73
+	global $db, $conf;
74 74
 	
75 75
 	$TFreeText = array();
76 76
 	
@@ -88,19 +88,19 @@  discard block
 block discarded – undo
88 88
 	return $TFreeText;
89 89
 }
90 90
 
91
-function getHtmlSelectFreeText($withEmpty=true)
91
+function getHtmlSelectFreeText($withEmpty = true)
92 92
 {
93 93
 	global $langs;
94 94
 	
95 95
 	$TFreeText = getTFreeText();
96 96
 	$html = '<label for="free_text">'.$langs->trans('subtotalLabelForFreeText').'</label>';
97
-	$html.= '<select onChange="getTFreeText($(this));" name="free_text" class="minwidth200">';
98
-	if ($withEmpty) $html.= '<option value=""></option>';
97
+	$html .= '<select onChange="getTFreeText($(this));" name="free_text" class="minwidth200">';
98
+	if ($withEmpty) $html .= '<option value=""></option>';
99 99
 
100 100
 	$TFreeTextContents = array();
101 101
 	foreach ($TFreeText as $id => $tab)
102 102
 	{
103
-		$html.= '<option value="'.$id.'">'.$tab->label.'</option>';
103
+		$html .= '<option value="'.$id.'">'.$tab->label.'</option>';
104 104
 		$TFreeTextContents[$id] = $tab->content;
105 105
 	}
106 106
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 function _updateSubtotalLine(&$object, &$line)
129 129
 {
130 130
 	$label = GETPOST('line-title');
131
-	$description = ($line->qty>90) ? '' : GETPOST('line-description');
131
+	$description = ($line->qty > 90) ? '' : GETPOST('line-description');
132 132
 	$pagebreak = (int) GETPOST('line-pagebreak');
133 133
 
134 134
 	$level = GETPOST('subtotal_level', 'int');
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 
146 146
 function _updateSubtotalBloc($object, $line)
147 147
 {
148
-	global $conf,$langs;
148
+	global $conf, $langs;
149 149
 	
150 150
 	$subtotal_tva_tx = $subtotal_tva_tx_init = GETPOST('subtotal_tva_tx', 'int');
151 151
 	$subtotal_progress = $subtotal_progress_init = GETPOST('subtotal_progress', 'int');
@@ -224,9 +224,9 @@  discard block
 block discarded – undo
224 224
  * @param	$lineid			= title lineid
225 225
  * @param	$subtotal_nc	0 = "Compris" prise en compte des totaux des lignes; 1 = "Non compris" non prise en compte des totaux du bloc; null = update de toutes les lignes 
226 226
  */
227
-function _updateLineNC($element, $elementid, $lineid, $subtotal_nc=null)
227
+function _updateLineNC($element, $elementid, $lineid, $subtotal_nc = null)
228 228
 {
229
-	global $db,$langs,$tmp_object_nc;
229
+	global $db, $langs, $tmp_object_nc;
230 230
 	
231 231
 	$error = 0;
232 232
 	if (empty($element)) $error++;
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
 	{
267 267
 		foreach ($object->lines as &$l)
268 268
 		{
269
-			if($l->id == $lineid) {
269
+			if ($l->id == $lineid) {
270 270
 				$line = $l;
271 271
 				break;
272 272
 			}
@@ -276,12 +276,12 @@  discard block
 block discarded – undo
276 276
 		{
277 277
 			$db->begin();
278 278
 			
279
-			if(TSubtotal::isModSubtotalLine($line))
279
+			if (TSubtotal::isModSubtotalLine($line))
280 280
 			{
281
-				if(TSubtotal::isTitle($line)) {
281
+				if (TSubtotal::isTitle($line)) {
282 282
 					// Update le contenu du titre (ainsi que le titre lui même)
283 283
 					$TTitleBlock = TSubtotal::getLinesFromTitleId($object, $lineid, true);
284
-					foreach($TTitleBlock as &$line_block)
284
+					foreach ($TTitleBlock as &$line_block)
285 285
 					{
286 286
 						$res = doUpdate($object, $line_block, $subtotal_nc);
287 287
 					}
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 	
316 316
 	if (TSubtotal::isFreeText($line) || TSubtotal::isSubtotal($line)) return 1;
317 317
 	// Update extrafield et total
318
-	if(! empty($subtotal_nc)) {
318
+	if (!empty($subtotal_nc)) {
319 319
 		$line->total_ht = $line->total_tva = $line->total_ttc = $line->total_localtax1 = $line->total_localtax2 = 
320 320
 			$line->multicurrency_total_ht = $line->multicurrency_total_tva = $line->multicurrency_total_ttc = 0;
321 321
 
@@ -325,16 +325,16 @@  discard block
 block discarded – undo
325 325
 		else $res = $line->update($user);
326 326
 	}
327 327
 	else {
328
-	    if(in_array($object->element, array('invoice_supplier', 'order_supplier', 'supplier_proposal'))) {
329
-	        if(empty($line->label)) $line->label = $line->description; // supplier lines don't have the field label
328
+	    if (in_array($object->element, array('invoice_supplier', 'order_supplier', 'supplier_proposal'))) {
329
+	        if (empty($line->label)) $line->label = $line->description; // supplier lines don't have the field label
330 330
 	        
331 331
 	        require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
332
-	        $extrafields=new ExtraFields($object->db);
333
-	        $extralabels=$extrafields->fetch_name_optionals_label($object->table_element_line,true);
334
-	        $line->fetch_optionals($line->id,$extralabels);
332
+	        $extrafields = new ExtraFields($object->db);
333
+	        $extralabels = $extrafields->fetch_name_optionals_label($object->table_element_line, true);
334
+	        $line->fetch_optionals($line->id, $extralabels);
335 335
 	    }
336 336
 		$line->array_options['options_subtotal_nc'] = 0;
337
-		if($object->element == 'order_supplier') $line->update($user);
337
+		if ($object->element == 'order_supplier') $line->update($user);
338 338
 		$res = TSubtotal::doUpdateLine($object, $line->id, $line->desc, $line->subprice, $line->qty, $line->remise_percent, $line->date_start, $line->date_end, $line->tva_tx, $line->product_type, $line->localtax1_tx, $line->localtax2_tx, 'HT', $line->info_bits, $line->fk_parent_line, $line->skip_update_total, $line->fk_fournprice, $line->pa_ht, $line->label, $line->special_code, $line->array_options, $line->situation_percent, $line->fk_unit);
339 339
 	}
340 340
 	
Please login to merge, or discard this patch.
Braces   +63 added lines, -29 removed lines patch added patch discarded remove patch
@@ -54,7 +54,9 @@  discard block
 block discarded – undo
54 54
 	dol_include_once('/subtotal/class/subtotal.class.php');
55 55
 	$TTitle = TSubtotal::getAllTitleFromDocument($object);
56 56
 	$html = '';
57
-	if ($showLabel) $html.= '<label for="under_title">'.$langs->trans('subtotalLabelForUnderTitle').'</label>';
57
+	if ($showLabel) {
58
+		$html.= '<label for="under_title">'.$langs->trans('subtotalLabelForUnderTitle').'</label>';
59
+	}
58 60
 	$html.= '<select onChange="$(\'select[name=under_title]\').val(this.value);" name="under_title" class="under_title minwidth200"><option value="-1"></option>';
59 61
 	
60 62
 	$nbsp = '&nbsp;';
@@ -95,7 +97,9 @@  discard block
 block discarded – undo
95 97
 	$TFreeText = getTFreeText();
96 98
 	$html = '<label for="free_text">'.$langs->trans('subtotalLabelForFreeText').'</label>';
97 99
 	$html.= '<select onChange="getTFreeText($(this));" name="free_text" class="minwidth200">';
98
-	if ($withEmpty) $html.= '<option value=""></option>';
100
+	if ($withEmpty) {
101
+		$html.= '<option value=""></option>';
102
+	}
99 103
 
100 104
 	$TFreeTextContents = array();
101 105
 	foreach ($TFreeText as $id => $tab)
@@ -134,8 +138,13 @@  discard block
 block discarded – undo
134 138
 	$level = GETPOST('subtotal_level', 'int');
135 139
 	if (!empty($level))
136 140
 	{
137
-		if ($line->qty > 90) $line->qty = 100 - $level; // Si on edit une ligne sous-total
138
-		else $line->qty = $level;
141
+		if ($line->qty > 90) {
142
+			$line->qty = 100 - $level;
143
+		}
144
+		// Si on edit une ligne sous-total
145
+		else {
146
+			$line->qty = $level;
147
+		}
139 148
 	}
140 149
 	
141 150
 	$res = TSubtotal::doUpdateLine($object, $line->id, $description, 0, $line->qty, 0, '', '', 0, 9, 0, 0, 'HT', $pagebreak, 0, 1, null, 0, $label, TSubtotal::$module_number, $line->array_options);
@@ -162,13 +171,18 @@  discard block
 block discarded – undo
162 171
 			{
163 172
 				$subtotal_tva_tx = $subtotal_tva_tx_init; // ré-init car la variable peut évoluer
164 173
 					
165
-				if (!empty($showBlockExtrafields)) $line->array_options = $array_options;
166
-				if ($subtotal_tva_tx == '') $subtotal_tva_tx = $line->tva_tx;
174
+				if (!empty($showBlockExtrafields)) {
175
+					$line->array_options = $array_options;
176
+				}
177
+				if ($subtotal_tva_tx == '') {
178
+					$subtotal_tva_tx = $line->tva_tx;
179
+				}
167 180
 				if ($object->element == 'facture' && !empty($conf->global->INVOICE_USE_SITUATION) && $object->type == Facture::TYPE_SITUATION)
168 181
 				{
169 182
 					$subtotal_progress = $subtotal_progress_init;
170
-					if ($subtotal_progress == '') $subtotal_progress = $line->situation_percent;
171
-					else
183
+					if ($subtotal_progress == '') {
184
+						$subtotal_progress = $line->situation_percent;
185
+					} else
172 186
 					{
173 187
 						$prev_percent = $line->get_prev_progress($object->id);
174 188
 						if ($subtotal_progress < $prev_percent)
@@ -181,14 +195,21 @@  discard block
 block discarded – undo
181 195
 				
182 196
 				$res = TSubtotal::doUpdateLine($object, $line->id, $line->desc, $line->subprice, $line->qty, $line->remise_percent, $line->date_start, $line->date_end, $subtotal_tva_tx, $line->product_type, $line->localtax1_tx, $line->localtax2_tx, 'HT', $line->info_bits, $line->fk_parent_line, $line->skip_update_total, $line->fk_fournprice, $line->pa_ht, $line->label, $line->special_code, $line->array_options, $subtotal_progress, $line->fk_unit);
183 197
 
184
-				if ($res > 0) $success_updated_line++;
185
-				else $error_updated_line++;
198
+				if ($res > 0) {
199
+					$success_updated_line++;
200
+				} else {
201
+					$error_updated_line++;
202
+				}
186 203
 			}
187 204
 		}
188 205
 
189
-		if ($nb_progress_not_updated > 0) setEventMessage($langs->trans('subtotal_nb_progress_not_updated', $nb_progress_not_updated), 'warnings');
206
+		if ($nb_progress_not_updated > 0) {
207
+			setEventMessage($langs->trans('subtotal_nb_progress_not_updated', $nb_progress_not_updated), 'warnings');
208
+		}
190 209
 		
191
-		if ($success_updated_line > 0) setEventMessage($langs->trans('subtotal_success_updated_line', $success_updated_line));
210
+		if ($success_updated_line > 0) {
211
+			setEventMessage($langs->trans('subtotal_success_updated_line', $success_updated_line));
212
+		}
192 213
 		if ($error_updated_line > 0)
193 214
 		{
194 215
 			setEventMessage($langs->trans('subtotal_error_updated_line', $error_updated_line), 'errors');
@@ -229,15 +250,16 @@  discard block
 block discarded – undo
229 250
 	global $db,$langs,$tmp_object_nc;
230 251
 	
231 252
 	$error = 0;
232
-	if (empty($element)) $error++;
253
+	if (empty($element)) {
254
+		$error++;
255
+	}
233 256
 	
234 257
 	if (!$error)
235 258
 	{
236 259
 		if (!empty($tmp_object_nc) && $tmp_object_nc->element == $element && $tmp_object_nc->id == $elementid)
237 260
 		{
238 261
 			$object = $tmp_object_nc;
239
-		}
240
-		else
262
+		} else
241 263
 		{
242 264
 			$classname = ucfirst($element);
243 265
 			
@@ -257,8 +279,11 @@  discard block
 block discarded – undo
257 279
 			
258 280
 			$object = new $classname($db); // Propal | Commande | Facture
259 281
 			$res = $object->fetch($elementid);
260
-			if ($res < 0) $error++;
261
-			else $tmp_object_nc = $object;
282
+			if ($res < 0) {
283
+				$error++;
284
+			} else {
285
+				$tmp_object_nc = $object;
286
+			}
262 287
 		}
263 288
 	}
264 289
 	
@@ -286,21 +311,21 @@  discard block
 block discarded – undo
286 311
 						$res = doUpdate($object, $line_block, $subtotal_nc);
287 312
 					}
288 313
 				}
289
-			}
290
-			else
314
+			} else
291 315
 			{
292 316
 				$res = doUpdate($object, $line, $subtotal_nc);
293 317
 			}
294 318
 			
295 319
 			$res = $object->update_price(1);
296
-			if ($res <= 0) $error++;
320
+			if ($res <= 0) {
321
+				$error++;
322
+			}
297 323
 			
298 324
 			if (!$error)
299 325
 			{
300 326
 				setEventMessage($langs->trans('subtotal_update_nc_success'));
301 327
 				$db->commit();
302
-			}
303
-			else
328
+			} else
304 329
 			{
305 330
 				setEventMessage($langs->trans('subtotal_update_nc_error'), 'errors');
306 331
 				$db->rollback();
@@ -313,7 +338,9 @@  discard block
 block discarded – undo
313 338
 {
314 339
 	global $user;
315 340
 	
316
-	if (TSubtotal::isFreeText($line) || TSubtotal::isSubtotal($line)) return 1;
341
+	if (TSubtotal::isFreeText($line) || TSubtotal::isSubtotal($line)) {
342
+		return 1;
343
+	}
317 344
 	// Update extrafield et total
318 345
 	if(! empty($subtotal_nc)) {
319 346
 		$line->total_ht = $line->total_tva = $line->total_ttc = $line->total_localtax1 = $line->total_localtax2 = 
@@ -321,12 +348,17 @@  discard block
 block discarded – undo
321 348
 
322 349
 		$line->array_options['options_subtotal_nc'] = 1;
323 350
 
324
-		if ($line->element == 'propaldet') $res = $line->update();
325
-		else $res = $line->update($user);
326
-	}
327
-	else {
351
+		if ($line->element == 'propaldet') {
352
+			$res = $line->update();
353
+		} else {
354
+			$res = $line->update($user);
355
+		}
356
+	} else {
328 357
 	    if(in_array($object->element, array('invoice_supplier', 'order_supplier', 'supplier_proposal'))) {
329
-	        if(empty($line->label)) $line->label = $line->description; // supplier lines don't have the field label
358
+	        if(empty($line->label)) {
359
+	        	$line->label = $line->description;
360
+	        }
361
+	        // supplier lines don't have the field label
330 362
 	        
331 363
 	        require_once(DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php');
332 364
 	        $extrafields=new ExtraFields($object->db);
@@ -334,7 +366,9 @@  discard block
 block discarded – undo
334 366
 	        $line->fetch_optionals($line->id,$extralabels);
335 367
 	    }
336 368
 		$line->array_options['options_subtotal_nc'] = 0;
337
-		if($object->element == 'order_supplier') $line->update($user);
369
+		if($object->element == 'order_supplier') {
370
+			$line->update($user);
371
+		}
338 372
 		$res = TSubtotal::doUpdateLine($object, $line->id, $line->desc, $line->subprice, $line->qty, $line->remise_percent, $line->date_start, $line->date_end, $line->tva_tx, $line->product_type, $line->localtax1_tx, $line->localtax2_tx, 'HT', $line->info_bits, $line->fk_parent_line, $line->skip_update_total, $line->fk_fournprice, $line->pa_ht, $line->label, $line->special_code, $line->array_options, $line->situation_percent, $line->fk_unit);
339 373
 	}
340 374
 	
Please login to merge, or discard this patch.