Completed
Push — master ( 6abb53...f63f4b )
by Laurent
02:02
created
readFlights.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     print '<td class="liste_titre" colspan="2">' . $langs->trans("Type 2 : Baptême") . '</td>';
155 155
     print '<td class="liste_titre" colspan="2">' . $langs->trans("Organisateur (T1/T2)") . '</td>';
156 156
     print '<td class="liste_titre" colspan="2">' . $langs->trans("Instructeur (orga T6)") . '</td>';
157
-    print '<td class="liste_titre" >'            . $langs->trans("Total bonus") . '</td>';
157
+    print '<td class="liste_titre" >' . $langs->trans("Total bonus") . '</td>';
158 158
     print '<td class="liste_titre" colspan="2">' . $langs->trans("Type 3 : Privé") . '</td>';
159 159
     print '<td class="liste_titre" colspan="2">' . $langs->trans("Type 4: Meeting") . '</td>';
160 160
     print '<td class="liste_titre" colspan="1">' . $langs->trans("Type 5: Chambley") . '</td>';
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
     print "<tr>";
259 259
     print "<td colspan='20'></td>";
260 260
     print "<td>Total à reçevoir</td>";
261
-    print "<td>".price($total)."€</td>";
261
+    print "<td>" . price($total) . "€</td>";
262 262
     print "</tr>";
263 263
 
264 264
 
Please login to merge, or discard this patch.
generateBilling.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                 $adherent = new Adherent($db);
129 129
                 $adherent->fetch($expenseNoteUser->fk_member);
130 130
 
131
-                $addBonus = (int)$additionalBonus[$currentMissionUserId];
131
+                $addBonus = (int) $additionalBonus[$currentMissionUserId];
132 132
                 if ($addBonus < 0) {
133 133
                     dol_htmloutput_mesg("Facture ignorée " . $adherent->getFullName($langs), '', 'warning');
134 134
                     continue;
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
                 $object->insert_discount($discountid);
351 351
 
352 352
                 //Instructeur / examinateur
353
-                if($value['orga_T6']['count'] > 0){
353
+                if ($value['orga_T6']['count'] > 0) {
354 354
                     $pu_ht = price2num($value['orga_T6']['count'] * 50, 'MU');
355 355
                     $desc = $year . " - Vols dont vous êtes instructeur/examinateur - (" . $value['orga_T6']['count'] . " * 50)";
356 356
 
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
                 }
360 360
 
361 361
                 //Additional bonus
362
-                if ((int)$addBonus > 0) {
362
+                if ((int) $addBonus > 0) {
363 363
 
364 364
                     $pu_ht = price2num($addBonus, 'MU');
365 365
 
Please login to merge, or discard this patch.