@@ -95,7 +95,7 @@ |
||
95 | 95 | if ($action == EXPENSE_REPORT_GENERATOR_ACTION_GENERATE) { |
96 | 96 | try { |
97 | 97 | |
98 | - $command = new CreateMonthBillCommand( $type, $publicNote, $privateNote, $year, $month); |
|
98 | + $command = new CreateMonthBillCommand($type, $publicNote, $privateNote, $year, $month); |
|
99 | 99 | $handler->handle($command); |
100 | 100 | dol_htmloutput_mesg('Génération : OK'); |
101 | 101 | } catch (Exception $e) { |
@@ -53,7 +53,7 @@ |
||
53 | 53 | |
54 | 54 | try { |
55 | 55 | |
56 | - if(date('d')>=15){ |
|
56 | + if (date('d') >= 15) { |
|
57 | 57 | dol_syslog('Monthly bill generation : date over'); |
58 | 58 | return -2; |
59 | 59 | } |
@@ -60,21 +60,21 @@ |
||
60 | 60 | $this->addError('nbrPax', 'Erreur le nombre de passager est un nombre négatif.'); |
61 | 61 | } |
62 | 62 | |
63 | - if($vol->mustHavePax()){ |
|
63 | + if ($vol->mustHavePax()) { |
|
64 | 64 | if (!$vol->hasPax()) { |
65 | 65 | $this->addError('nbrPax', 'Erreur ce type de vol doit etre fait avec des passagers.'); |
66 | 66 | } |
67 | 67 | |
68 | - if(empty(trim($vol->getPassengerNames()))){ |
|
68 | + if (empty(trim($vol->getPassengerNames()))) { |
|
69 | 69 | $this->addError('passenger_names', 'Le nom des passagers est obligatoire.'); |
70 | 70 | } |
71 | 71 | |
72 | - if(empty(trim($vol->getPassengerNames()))){ |
|
72 | + if (empty(trim($vol->getPassengerNames()))) { |
|
73 | 73 | $this->addError('passenger_names', 'Le nom des passagers est obligatoire.'); |
74 | 74 | } |
75 | 75 | |
76 | 76 | $passengers = explode(';', $vol->getPassengerNames()); |
77 | - if(count($passengers) !== $vol->getNumberOfPassengers()){ |
|
77 | + if (count($passengers) !== $vol->getNumberOfPassengers()) { |
|
78 | 78 | $this->addError('passenger_names', 'Le nombre de noms des passagers doit être égale au nombre de passagers.'); |
79 | 79 | } |
80 | 80 | } |
@@ -274,7 +274,7 @@ |
||
274 | 274 | print '<td>' . $totalT3 . '</td>'; |
275 | 275 | print '<td></td>'; |
276 | 276 | |
277 | -print '<td>' . $totalT4. '</td>'; |
|
277 | +print '<td>' . $totalT4 . '</td>'; |
|
278 | 278 | print '<td></td>'; |
279 | 279 | |
280 | 280 | print '<td>' . $totalT5 . '</td>'; |