@@ -127,12 +127,12 @@ |
||
127 | 127 | * Put here all code to do according to value of "action" parameter |
128 | 128 | */ |
129 | 129 | if ($action == EXPENSE_REPORT_GENERATOR_ACTION_GENERATE) { |
130 | - try{ |
|
131 | - $command = new CreateFlightBillCommand($flight->getId(), $modeReglement, $conditionReglement, $documentModel, $type, $publicNote, $privateNote,$bankAccount); |
|
130 | + try { |
|
131 | + $command = new CreateFlightBillCommand($flight->getId(), $modeReglement, $conditionReglement, $documentModel, $type, $publicNote, $privateNote, $bankAccount); |
|
132 | 132 | $handler->handle($command); |
133 | 133 | Header("Location: card.php?id=" . $flight->getId()); |
134 | - }catch (\Exception $e){ |
|
135 | - dol_syslog($e->getMessage(),LOG_ERR); |
|
134 | + } catch (\Exception $e) { |
|
135 | + dol_syslog($e->getMessage(), LOG_ERR); |
|
136 | 136 | dol_htmloutput_mesg("Facture non créée", '', 'error'); |
137 | 137 | } |
138 | 138 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | $command = new CreateFlightBillCommand($flight->getId(), $modeReglement, $conditionReglement, $documentModel, $type, $publicNote, $privateNote,$bankAccount); |
132 | 132 | $handler->handle($command); |
133 | 133 | Header("Location: card.php?id=" . $flight->getId()); |
134 | - }catch (\Exception $e){ |
|
134 | + } catch (\Exception $e){ |
|
135 | 135 | dol_syslog($e->getMessage(),LOG_ERR); |
136 | 136 | dol_htmloutput_mesg("Facture non créée", '', 'error'); |
137 | 137 | } |
@@ -267,9 +267,12 @@ discard block |
||
267 | 267 | |
268 | 268 | <?php if (!$flightProduct) : ?> |
269 | 269 | <a class="butActionRefused" href="#">Générer</a> |
270 | - <?php else: ?> |
|
270 | + <?php else { |
|
271 | + : ?> |
|
271 | 272 | <button class="butAction" type="submit">Générer</button> |
272 | - <?php endif; ?> |
|
273 | + <?php endif; |
|
274 | +} |
|
275 | +?> |
|
273 | 276 | |
274 | 277 | <a class="butAction" href="<?php echo DOL_URL_ROOT . '/flightlog/card.php?id=' . $flight->id; ?>">Retour au |
275 | 278 | vol</a> |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -require_once __DIR__.'/CreateFlightBillCommandHandler.php'; |
|
4 | -require_once __DIR__.'/CreateFlightBillTransactionalCommandHandler.php'; |
|
3 | +require_once __DIR__ . '/CreateFlightBillCommandHandler.php'; |
|
4 | +require_once __DIR__ . '/CreateFlightBillTransactionalCommandHandler.php'; |
|
5 | 5 | |
6 | 6 | /** |
7 | 7 | * @author Laurent De Coninck <[email protected]> |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | /** |
12 | 12 | * @return CreateFlightBillCommandHandler |
13 | 13 | */ |
14 | - public static function factory($db, $conf, $user, $langs){ |
|
14 | + public static function factory($db, $conf, $user, $langs) { |
|
15 | 15 | return new CreateFlightBillTransactionalCommandHandler($db, $conf, $user, $langs); |
16 | 16 | } |
17 | 17 |
@@ -967,7 +967,7 @@ |
||
967 | 967 | */ |
968 | 968 | public function getPlaces() |
969 | 969 | { |
970 | - return $this->lieuD.' -> '.$this->lieuA; |
|
970 | + return $this->lieuD . ' -> ' . $this->lieuA; |
|
971 | 971 | } |
972 | 972 | } |
973 | 973 |
@@ -239,9 +239,12 @@ |
||
239 | 239 | <?php echo $langs->trans('La periode demandée n\'est pas cloturée.') ?> |
240 | 240 | </p> |
241 | 241 | <a class="butActionRefused" href="#">Générer</a> |
242 | - <?php else: ?> |
|
242 | + <?php else { |
|
243 | + : ?> |
|
243 | 244 | <button class="butAction" type="submit">Générer</button> |
244 | - <?php endif; ?> |
|
245 | + <?php endif; |
|
246 | +} |
|
247 | +?> |
|
245 | 248 | |
246 | 249 | </form> |
247 | 250 | </section> |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -require_once __DIR__.'/CommandInterface.php'; |
|
3 | +require_once __DIR__ . '/CommandInterface.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * @author Laurent De Coninck <[email protected]> |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | require_once __DIR__ . '/../class/billing/monthly/MonthlyFlightBill.php'; |
4 | -require_once __DIR__.'/CommandInterface.php'; |
|
4 | +require_once __DIR__ . '/CommandInterface.php'; |
|
5 | 5 | |
6 | 6 | /** |
7 | 7 | * @author Laurent De Coninck <[email protected]> |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -require_once __DIR__.'/CommandHandlerInterface.php'; |
|
3 | +require_once __DIR__ . '/CommandHandlerInterface.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Methods to create a bill. |
@@ -20,7 +20,7 @@ |
||
20 | 20 | */ |
21 | 21 | public function handle(CommandInterface $command) |
22 | 22 | { |
23 | - if(!($command instanceof CreateReceiverMonthBillCommand)){ |
|
23 | + if (!($command instanceof CreateReceiverMonthBillCommand)) { |
|
24 | 24 | throw new \InvalidArgumentException('Command not correct'); |
25 | 25 | } |
26 | 26 |