@@ -28,7 +28,7 @@ |
||
28 | 28 | * |
29 | 29 | * @throws \Exception |
30 | 30 | */ |
31 | - public function __invoke(InvoiceDamageCommand $command){ |
|
31 | + public function __invoke(InvoiceDamageCommand $command) { |
|
32 | 32 | $damage = $this->damageRepository->getById(DamageId::create($command->getDamageId())); |
33 | 33 | $damage = $damage->invoice(); |
34 | 34 | $this->damageRepository->save($damage); |
@@ -22,9 +22,12 @@ |
||
22 | 22 | <td> |
23 | 23 | <?php if($currentDamage->isInvoiced()): ?> |
24 | 24 | <i class="fas fa-check"></i> |
25 | - <?php else: ?> |
|
25 | + <?php else { |
|
26 | + : ?> |
|
26 | 27 | <i class="fas fa-times"></i> |
27 | - <?php endif; ?> |
|
28 | + <?php endif; |
|
29 | +} |
|
30 | +?> |
|
28 | 31 | </td> |
29 | 32 | <td> |
30 | 33 | <a href="<?php print sprintf('%s/flightlog/index.php?r=get_one_damage&id=%s', DOL_URL_ROOT, $currentDamage->getId());?>"><i class="fas fa-link"></i></a> |
@@ -16,21 +16,21 @@ |
||
16 | 16 | <td colspan="2"> </td> |
17 | 17 | </tr> |
18 | 18 | <?php $total = 0; ?> |
19 | - <?php foreach($damages as $currentDamage):?> |
|
19 | + <?php foreach ($damages as $currentDamage):?> |
|
20 | 20 | <?php $total += $currentDamage->getAmount(); ?> |
21 | 21 | <tr> |
22 | - <td><?php echo $currentDamage->getAuthorName();?></td> |
|
23 | - <td><?php echo $currentDamage->getLabel();?></td> |
|
24 | - <td><?php echo $currentDamage->getAmount();?>€</td> |
|
22 | + <td><?php echo $currentDamage->getAuthorName(); ?></td> |
|
23 | + <td><?php echo $currentDamage->getLabel(); ?></td> |
|
24 | + <td><?php echo $currentDamage->getAmount(); ?>€</td> |
|
25 | 25 | <td> |
26 | - <?php if($currentDamage->isInvoiced()): ?> |
|
26 | + <?php if ($currentDamage->isInvoiced()): ?> |
|
27 | 27 | <i class="fas fa-check"></i> |
28 | 28 | <?php else: ?> |
29 | 29 | <i class="fas fa-times"></i> |
30 | 30 | <?php endif; ?> |
31 | 31 | </td> |
32 | 32 | <td> |
33 | - <a href="<?php print sprintf('%s/flightlog/index.php?r=get_one_damage&id=%s', DOL_URL_ROOT, $currentDamage->getId());?>"><i class="fas fa-link"></i></a> |
|
33 | + <a href="<?php print sprintf('%s/flightlog/index.php?r=get_one_damage&id=%s', DOL_URL_ROOT, $currentDamage->getId()); ?>"><i class="fas fa-link"></i></a> |
|
34 | 34 | </td> |
35 | 35 | </tr> |
36 | 36 | <?php endforeach; ?> |
@@ -53,9 +53,9 @@ |
||
53 | 53 | ?> |
54 | 54 | |
55 | 55 | <table class="border centpercent"> |
56 | - <tr><td class="fieldrequired">Auteur</td><td><?php echo $damage->getAuthorName();?></td></tr> |
|
57 | - <tr><td class="fieldrequired">Montant</td><td><?php echo $damage->getAmount();?>€</td></tr> |
|
58 | - <tr><td class="fieldrequired">Facturé</td><td><?php echo $damage->isInvoiced()? 'Oui' : 'Non';?></td></tr> |
|
56 | + <tr><td class="fieldrequired">Auteur</td><td><?php echo $damage->getAuthorName(); ?></td></tr> |
|
57 | + <tr><td class="fieldrequired">Montant</td><td><?php echo $damage->getAmount(); ?>€</td></tr> |
|
58 | + <tr><td class="fieldrequired">Facturé</td><td><?php echo $damage->isInvoiced() ? 'Oui' : 'Non'; ?></td></tr> |
|
59 | 59 | <tr> |
60 | 60 | <td class="fieldrequired">Vol</td> |
61 | 61 | <td> |
@@ -31,7 +31,7 @@ |
||
31 | 31 | 'form' => new Form($this->db), |
32 | 32 | 'flight' => $flight |
33 | 33 | ]); |
34 | - }catch (\Exception $e){ |
|
34 | + } catch (\Exception $e){ |
|
35 | 35 | echo $e->getMessage(); |
36 | 36 | } |
37 | 37 | } |
@@ -13,14 +13,14 @@ discard block |
||
13 | 13 | /** |
14 | 14 | * @return GetDamageQueryRepository |
15 | 15 | */ |
16 | - private function getDamageRepository(){ |
|
16 | + private function getDamageRepository() { |
|
17 | 17 | return new GetDamageQueryRepository($this->db); |
18 | 18 | } |
19 | 19 | |
20 | - public function view(){ |
|
20 | + public function view() { |
|
21 | 21 | $damageId = $this->request->getParam('id'); |
22 | 22 | |
23 | - try{ |
|
23 | + try { |
|
24 | 24 | $damage = $this->getDamageRepository()->query($damageId); |
25 | 25 | |
26 | 26 | $flight = new \Bbcvols($this->db); |
@@ -31,16 +31,16 @@ discard block |
||
31 | 31 | 'form' => new Form($this->db), |
32 | 32 | 'flight' => $flight |
33 | 33 | ]); |
34 | - }catch (\Exception $e){ |
|
34 | + } catch (\Exception $e) { |
|
35 | 35 | echo $e->getMessage(); |
36 | 36 | } |
37 | 37 | } |
38 | 38 | |
39 | - public function invoice(){ |
|
39 | + public function invoice() { |
|
40 | 40 | $damageId = $this->request->getParam('id'); |
41 | 41 | |
42 | 42 | |
43 | 43 | |
44 | - return $this->redirect($_SERVER["PHP_SELF"].'?id='.$damageId); |
|
44 | + return $this->redirect($_SERVER["PHP_SELF"] . '?id=' . $damageId); |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | \ No newline at end of file |
@@ -65,7 +65,7 @@ |
||
65 | 65 | * |
66 | 66 | * @return bool |
67 | 67 | */ |
68 | - public function match($route){ |
|
68 | + public function match($route) { |
|
69 | 69 | return $this->name === $route; |
70 | 70 | } |
71 | 71 |
@@ -32,19 +32,19 @@ |
||
32 | 32 | * |
33 | 33 | * @return Response |
34 | 34 | */ |
35 | - protected function render($template, array $variables = []){ |
|
35 | + protected function render($template, array $variables = []) { |
|
36 | 36 | |
37 | - foreach($variables as $variableName => $variableValue){ |
|
37 | + foreach ($variables as $variableName => $variableValue) { |
|
38 | 38 | $GLOBALS[$variableName] = $variableValue; |
39 | 39 | } |
40 | 40 | |
41 | - return new Response(__DIR__.'/../templates/'.$template); |
|
41 | + return new Response(__DIR__ . '/../templates/' . $template); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
45 | 45 | * @param string $html |
46 | 46 | */ |
47 | - protected function renderHtml($html){ |
|
47 | + protected function renderHtml($html) { |
|
48 | 48 | print $html; |
49 | 49 | } |
50 | 50 |
@@ -6,9 +6,9 @@ |
||
6 | 6 | |
7 | 7 | final class FlightController extends WebController |
8 | 8 | { |
9 | - public function view(){ |
|
9 | + public function view() { |
|
10 | 10 | $id = $this->request->getParam('id'); |
11 | - return $this->redirect(DOL_URL_ROOT.'/flightlog/card.php?id='.$id); |
|
11 | + return $this->redirect(DOL_URL_ROOT . '/flightlog/card.php?id=' . $id); |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | } |
15 | 15 | \ No newline at end of file |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * |
26 | 26 | * @return Redirect |
27 | 27 | */ |
28 | - public static function create($url){ |
|
28 | + public static function create($url) { |
|
29 | 29 | return new self($url); |
30 | 30 | } |
31 | 31 |
@@ -102,7 +102,7 @@ |
||
102 | 102 | } |
103 | 103 | |
104 | 104 | include $response->getTemplate(); |
105 | - }else{ |
|
105 | + } else{ |
|
106 | 106 | echo 'Route non trouvée.'; |
107 | 107 | } |
108 | 108 | ?> |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | $id = GETPOST('id', 'int') ?: GETPOST('idBBC_vols', 'int'); |
51 | 51 | $action = GETPOST('action', 'alpha'); |
52 | -$permissiondellink=$user->rights->flightlog->vol->financial; |
|
52 | +$permissiondellink = $user->rights->flightlog->vol->financial; |
|
53 | 53 | |
54 | 54 | $object = new Bbcvols($db); |
55 | 55 | |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | $extralabels = $extrafields->fetch_name_optionals_label($object->table_element); |
58 | 58 | |
59 | 59 | // Load object |
60 | -include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals |
|
61 | -include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; |
|
60 | +include DOL_DOCUMENT_ROOT . '/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals |
|
61 | +include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php'; |
|
62 | 62 | |
63 | 63 | // Initialize technical object to manage hooks of modules. Note that conf->hooks_modules contains array array |
64 | 64 | $hookmanager->initHooks(array('bbcvols')); |
@@ -85,13 +85,13 @@ discard block |
||
85 | 85 | FLIGHTLOG_ACTION_HANDLE_ADD_DAMAGE => [AddFlightDamageController::class, 'view'], |
86 | 86 | ]; |
87 | 87 | |
88 | - if(isset($routes[$action])){ |
|
88 | + if (isset($routes[$action])) { |
|
89 | 89 | $controllerName = $routes[$action][0]; |
90 | 90 | $actionName = $routes[$action][1]; |
91 | 91 | |
92 | 92 | $response = call_user_func([new $controllerName($db), $actionName]); |
93 | 93 | |
94 | - if($response instanceof \FlightLog\Http\Web\Response\Redirect){ |
|
94 | + if ($response instanceof \FlightLog\Http\Web\Response\Redirect) { |
|
95 | 95 | if (headers_sent()) { |
96 | 96 | echo(sprintf("<script>location.href='%s'</script>", $response->getUrl())); |
97 | 97 | exit; |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | } |
103 | 103 | |
104 | 104 | include $response->getTemplate(); |
105 | - }else{ |
|
105 | + } else { |
|
106 | 106 | echo 'Route non trouvée.'; |
107 | 107 | } |
108 | 108 | ?> |
@@ -114,13 +114,13 @@ discard block |
||
114 | 114 | // Buttons |
115 | 115 | print '<div class="tabsAction">' . "\n"; |
116 | 116 | |
117 | -if($user->rights->flightlog->vol->financial){ |
|
118 | - print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/card_tab_damage.php?id=' . $object->id.'&action='.FLIGHTLOG_ACTION_ADD_DAMAGE.'">' . $langs->trans("Ajouter") . '</a></div>' . "\n"; |
|
117 | +if ($user->rights->flightlog->vol->financial) { |
|
118 | + print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/card_tab_damage.php?id=' . $object->id . '&action=' . FLIGHTLOG_ACTION_ADD_DAMAGE . '">' . $langs->trans("Ajouter") . '</a></div>' . "\n"; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | print '</div>' . "\n"; |
122 | 122 | |
123 | -if($user->rights->flightlog->vol->financial && $object instanceof Bbcvols && $form instanceof Form){ |
|
123 | +if ($user->rights->flightlog->vol->financial && $object instanceof Bbcvols && $form instanceof Form) { |
|
124 | 124 | print '<div class="fichecenter"><div class="fichehalfleft">'; |
125 | 125 | $form->showLinkedObjectBlock($object); |
126 | 126 | print '</div></div>'; |