Passed
Push — CHECK_API ( 78ffdd...fa4f39 )
by Rafael
41:29
created
public/htdocs/product/stats/facture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 if (!empty($search_date_endyear)) {
101 101
     $option .= '&search_date_endyear=' . $search_date_endyear;
102 102
 }
103
-$search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear);   // Use tzserver
103
+$search_date_start = dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear); // Use tzserver
104 104
 $search_date_end = dol_mktime(23, 59, 59, $search_date_endmonth, $search_date_endday, $search_date_endyear);
105 105
 
106 106
 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
Please login to merge, or discard this patch.
public/htdocs/product/list.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 
316 316
 $object->fields = dol_sort_array($object->fields, 'position');
317 317
 $arrayfields = dol_sort_array($arrayfields, 'position');
318
-'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields';  // dol_sort_array looses type for Phan
318
+'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields'; // dol_sort_array looses type for Phan
319 319
 
320 320
 // Security check
321 321
 if ($search_type == '0') {
@@ -863,7 +863,7 @@  discard block
 block discarded – undo
863 863
 if (isModEnabled('category') && $user->hasRight($rightskey, 'creer')) {
864 864
     $arrayofmassactions['preaffecttag'] = img_picto('', 'category', 'class="pictofixedwidth"') . $langs->trans("AffectTag");
865 865
 }
866
-if (in_array($massaction, array('presend', 'predelete','preaffecttag', 'edit_extrafields', 'preupdateprice'))) {
866
+if (in_array($massaction, array('presend', 'predelete', 'preaffecttag', 'edit_extrafields', 'preupdateprice'))) {
867 867
     $arrayofmassactions = array();
868 868
 }
869 869
 if ($user->hasRight($rightskey, 'supprimer')) {
@@ -976,7 +976,7 @@  discard block
 block discarded – undo
976 976
 }
977 977
 
978 978
 $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
979
-$htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN'));  // This also change content of $arrayfields with user setup
979
+$htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')); // This also change content of $arrayfields with user setup
980 980
 $selectedfields = ($mode != 'kanban' ? $htmlofselectarray : '');
981 981
 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
982 982
 
@@ -1948,10 +1948,10 @@  discard block
 block discarded – undo
1948 1948
 
1949 1949
         // Multiprices
1950 1950
         if (getDolGlobalString('PRODUIT_MULTIPRICES')) {
1951
-            if (! isset($productpricescache)) {
1951
+            if (!isset($productpricescache)) {
1952 1952
                 $productpricescache = array();
1953 1953
             }
1954
-            if (! isset($productpricescache[$obj->rowid])) {
1954
+            if (!isset($productpricescache[$obj->rowid])) {
1955 1955
                 $productpricescache[$obj->rowid] = array();
1956 1956
             }
1957 1957
 
Please login to merge, or discard this patch.
public/htdocs/product/composition/card.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -444,7 +444,7 @@
 block discarded – undo
444 444
 
445 445
                     $unitline = price2num(($fourn_unitprice * (1 - ($fourn_remise_percent / 100)) - $fourn_remise), 'MU');
446 446
                     $totalline = price2num($value['nb'] * ($fourn_unitprice * (1 - ($fourn_remise_percent / 100)) - $fourn_remise), 'MT');
447
-                    $total +=  $totalline;
447
+                    $total += $totalline;
448 448
 
449 449
                     print '<td class="right nowraponall">';
450 450
                     print($notdefined ? '' : ($value['nb'] > 1 ? $value['nb'] . 'x ' : '') . '<span class="amount">' . price($unitline, 0, '', 0, 0, -1, $conf->currency)) . '</span>';
Please login to merge, or discard this patch.
public/htdocs/product/stock/replenish.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
         $i = 0;
228 228
         $fail = 0;
229 229
         $orders = array();
230
-        $suppliersid = array_keys($suppliers);  // array of ids of suppliers
230
+        $suppliersid = array_keys($suppliers); // array of ids of suppliers
231 231
         foreach ($suppliers as $supplier) {
232 232
             $order = new CommandeFournisseur($db);
233 233
 
Please login to merge, or discard this patch.
public/htdocs/product/stock/massstockmove.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -579,7 +579,7 @@
 block discarded – undo
579 579
 $maxfilesizearray = getMaxFileSizeArray();
580 580
 $maxmin = $maxfilesizearray['maxmin'];
581 581
 if ($maxmin > 0) {
582
-    print '<input type="hidden" name="MAX_FILE_SIZE" value="' . ($maxmin * 1024) . '">';    // MAX_FILE_SIZE must precede the field type=file
582
+    print '<input type="hidden" name="MAX_FILE_SIZE" value="' . ($maxmin * 1024) . '">'; // MAX_FILE_SIZE must precede the field type=file
583 583
 }
584 584
 print '<input type="file" name="userfile" size="20" maxlength="80"> &nbsp; &nbsp; ';
585 585
 $out = (!getDolGlobalString('MAIN_UPLOAD_DOC') ? ' disabled' : '');
Please login to merge, or discard this patch.
public/htdocs/product/stock/product.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1294,7 +1294,7 @@
 block discarded – undo
1294 1294
         $pse = new ProductStockEntrepot($db);
1295 1295
         $lines = $pse->fetchAll($id);
1296 1296
 
1297
-        $visibleWarehouseEntities = explode(',', getEntity('stock'));   // For MultiCompany compatibility
1297
+        $visibleWarehouseEntities = explode(',', getEntity('stock')); // For MultiCompany compatibility
1298 1298
 
1299 1299
         if (!empty($lines)) {
1300 1300
             $var = false;
Please login to merge, or discard this patch.
public/htdocs/product/stock/productlot_note.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
 // Get parameters
35 35
 $id = GETPOSTINT('id');
36
-$ref        = GETPOST('ref', 'alpha');
36
+$ref = GETPOST('ref', 'alpha');
37 37
 $action = GETPOST('action', 'aZ09');
38 38
 
39 39
 // Initialize technical objects
Please login to merge, or discard this patch.
public/htdocs/product/stock/productlot_list.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -569,7 +569,7 @@
 block discarded – undo
569 569
     } elseif (in_array($val['type'], array('double(24,8)', 'double(6,3)', 'integer', 'real', 'price')) && $val['label'] != 'TechnicalID' && empty($val['arrayofkeyval'])) {
570 570
         $cssforfield .= ($cssforfield ? ' ' : '') . 'right';
571 571
     }
572
-    $cssforfield = preg_replace('/small\s*/', '', $cssforfield);    // the 'small' css must not be used for the title label
572
+    $cssforfield = preg_replace('/small\s*/', '', $cssforfield); // the 'small' css must not be used for the title label
573 573
     if (!empty($arrayfields['t.' . $key]['checked'])) {
574 574
         print getTitleFieldOfList($arrayfields['t.' . $key]['label'], 0, $_SERVER['PHP_SELF'], 't.' . $key, '', $param, ($cssforfield ? 'class="' . $cssforfield . '"' : ''), $sortfield, $sortorder, ($cssforfield ? $cssforfield . ' ' : '')) . "\n";
575 575
         $totalarray['nbfield']++;
Please login to merge, or discard this patch.
public/htdocs/product/stock/stats/commande_fournisseur.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
 
41 41
 $id = GETPOSTINT('id');
42 42
 $ref = GETPOST('ref', 'alpha');
43
-$batch      = GETPOST('batch', 'alpha');
44
-$objectid  = GETPOSTINT('productid');
43
+$batch = GETPOST('batch', 'alpha');
44
+$objectid = GETPOSTINT('productid');
45 45
 
46 46
 // Security check
47 47
 $fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref : ''));
Please login to merge, or discard this patch.