@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | return new Pilot($this->name, $this->id, $types); |
107 | 107 | } |
108 | 108 | |
109 | - public function addDamage(FlightDamageCount $damage){ |
|
109 | + public function addDamage(FlightDamageCount $damage) { |
|
110 | 110 | $this->damages[] = $damage; |
111 | 111 | } |
112 | 112 | |
113 | - public function addInvoicedDamage(FlightInvoicedDamageCount $damage){ |
|
113 | + public function addInvoicedDamage(FlightInvoicedDamageCount $damage) { |
|
114 | 114 | $this->damages[] = $damage; |
115 | 115 | } |
116 | 116 | |
@@ -161,21 +161,21 @@ discard block |
||
161 | 161 | return $flightsCost; |
162 | 162 | } |
163 | 163 | |
164 | - public function totalDamageCost(){ |
|
164 | + public function totalDamageCost() { |
|
165 | 165 | $flightCost = FlightCost::zero(); |
166 | 166 | |
167 | - foreach($this->damages as $damage){ |
|
167 | + foreach ($this->damages as $damage) { |
|
168 | 168 | $flightCost = $flightCost->addCost($damage->getCost()); |
169 | 169 | } |
170 | 170 | |
171 | 171 | return $flightCost; |
172 | 172 | } |
173 | 173 | |
174 | - public function damageCost(){ |
|
174 | + public function damageCost() { |
|
175 | 175 | $flightCost = FlightCost::zero(); |
176 | 176 | |
177 | - foreach($this->damages as $damage){ |
|
178 | - if(!$damage instanceof FlightDamageCount){ |
|
177 | + foreach ($this->damages as $damage) { |
|
178 | + if (!$damage instanceof FlightDamageCount) { |
|
179 | 179 | continue; |
180 | 180 | } |
181 | 181 | |
@@ -185,11 +185,11 @@ discard block |
||
185 | 185 | return $flightCost; |
186 | 186 | } |
187 | 187 | |
188 | - public function invoicedDamageCost(){ |
|
188 | + public function invoicedDamageCost() { |
|
189 | 189 | $flightCost = FlightCost::zero(); |
190 | 190 | |
191 | - foreach($this->damages as $damage){ |
|
192 | - if(!$damage instanceof FlightInvoicedDamageCount){ |
|
191 | + foreach ($this->damages as $damage) { |
|
192 | + if (!$damage instanceof FlightInvoicedDamageCount) { |
|
193 | 193 | continue; |
194 | 194 | } |
195 | 195 | |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | return $flightCost; |
200 | 200 | } |
201 | 201 | |
202 | - public function damages(){ |
|
202 | + public function damages() { |
|
203 | 203 | return $this->damages; |
204 | 204 | } |
205 | 205 |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $pilots[$obj->pilot] = $pilots[$obj->pilot]->addCount( |
72 | 72 | new FlightTypeCount( |
73 | 73 | $obj->type, |
74 | - (int)$obj->nbr, |
|
74 | + (int) $obj->nbr, |
|
75 | 75 | $this->getFactorByType($obj->type) |
76 | 76 | ) |
77 | 77 | ); |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | $pilots[$obj->rowid] = $pilots[$obj->rowid]->addCount( |
107 | 107 | new FlightTypeCount( |
108 | 108 | 'orga', |
109 | - (int)$obj->total, |
|
109 | + (int) $obj->total, |
|
110 | 110 | $this->getFactorByType('orga') |
111 | 111 | ) |
112 | 112 | ); |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $pilots[$obj->rowid] = $pilots[$obj->rowid]->addCount( |
137 | 137 | new FlightTypeCount( |
138 | 138 | 'orga_T6', |
139 | - (int)$obj->total, |
|
139 | + (int) $obj->total, |
|
140 | 140 | $this->getFactorByType('orga_T6') |
141 | 141 | ) |
142 | 142 | ); |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | |
149 | 149 | //Total damages |
150 | 150 | $damages = $this->pilotDamageQueryRepository->query($query->getFiscalYear()); |
151 | - foreach($damages as $currentDamage){ |
|
151 | + foreach ($damages as $currentDamage) { |
|
152 | 152 | |
153 | 153 | //Pilot doesn't exist |
154 | 154 | if (!isset($pilots[$currentDamage->getAuthorId()])) { |
@@ -157,13 +157,13 @@ discard block |
||
157 | 157 | |
158 | 158 | // Add all damage |
159 | 159 | $pilots[$currentDamage->getAuthorId()]->addDamage( |
160 | - new FlightDamageCount('', $currentDamage->getAmount()) |
|
160 | + new FlightDamageCount('', $currentDamage->getAmount()) |
|
161 | 161 | ); |
162 | 162 | |
163 | 163 | // The damage is already invoiced. So not take into account. |
164 | - if($currentDamage->isInvoiced()){ |
|
164 | + if ($currentDamage->isInvoiced()) { |
|
165 | 165 | $pilots[$currentDamage->getAuthorId()]->addInvoicedDamage( |
166 | - new FlightInvoicedDamageCount('', $currentDamage->getAmount()) |
|
166 | + new FlightInvoicedDamageCount('', $currentDamage->getAmount()) |
|
167 | 167 | ); |
168 | 168 | } |
169 | 169 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | |
44 | 44 | $id = GETPOST('id', 'int') ?: GETPOST('idBBC_vols', 'int'); |
45 | 45 | $action = GETPOST('action', 'alpha'); |
46 | -$permissiondellink=$user->rights->flightlog->vol->financial; |
|
46 | +$permissiondellink = $user->rights->flightlog->vol->financial; |
|
47 | 47 | |
48 | 48 | $object = new Bbcvols($db); |
49 | 49 | $extrafields = new ExtraFields($db); |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | $extralabels = $extrafields->fetch_name_optionals_label($object->table_element); |
63 | 63 | |
64 | 64 | // Load object |
65 | -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 |
|
66 | -include DOL_DOCUMENT_ROOT.'/core/actions_dellink.inc.php'; |
|
65 | +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 |
|
66 | +include DOL_DOCUMENT_ROOT . '/core/actions_dellink.inc.php'; |
|
67 | 67 | |
68 | 68 | // Initialize technical object to manage hooks of modules. Note that conf->hooks_modules contains array array |
69 | 69 | $hookmanager->initHooks(array('bbcvols')); |
@@ -99,20 +99,20 @@ discard block |
||
99 | 99 | print '<tr><td class="fieldrequired">' . $langs->trans("Fielddate") . '</td><td>' . dol_print_date($object->date) . '</td></tr>'; |
100 | 100 | |
101 | 101 | if ($user->rights->flightlog->vol->financial) { |
102 | - print '<tr><td class="fieldrequired">' . $langs->trans("Fieldis_facture") . '</td><td>' . $object->getLibStatut(5). '</td></tr>'; |
|
102 | + print '<tr><td class="fieldrequired">' . $langs->trans("Fieldis_facture") . '</td><td>' . $object->getLibStatut(5) . '</td></tr>'; |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | print '<tr><td class="fieldrequired">' . $langs->trans("Fieldkilometers") . '</td><td>' . $object->kilometers . ' KM</td></tr>'; |
106 | 106 | print '<tr><td class="fieldrequired">' . $langs->trans("Fieldjustif_kilometers") . '</td><td>' . $object->justif_kilometers . '</td></tr>'; |
107 | -if($object->hasReceiver()){ |
|
107 | +if ($object->hasReceiver()) { |
|
108 | 108 | print '<tr><td class="fieldrequired">' . $langs->trans("Fieldcost") . '</td><td>' . $object->cost . " " . $langs->getCurrencySymbol($conf->currency) . '</td></tr>'; |
109 | 109 | print '<tr><td class="fieldrequired">' . $langs->trans("Fieldfk_receiver") . '</td><td>' . $receiver->getNomUrl(1) . '</td></tr>'; |
110 | 110 | } |
111 | 111 | |
112 | -if($object->isLinkedToOrder()){ |
|
112 | +if ($object->isLinkedToOrder()) { |
|
113 | 113 | print '<tr><td class="fieldrequired">' . $langs->trans("Order") . '</td><td><ul>'; |
114 | - foreach($object->getOrders() as $currentOrder){ |
|
115 | - print '<li>'.$currentOrder->getNomUrl(1).'</li>'; |
|
114 | + foreach ($object->getOrders() as $currentOrder) { |
|
115 | + print '<li>' . $currentOrder->getNomUrl(1) . '</li>'; |
|
116 | 116 | } |
117 | 117 | print '</ul></td></tr>'; |
118 | 118 | } |
@@ -124,18 +124,18 @@ discard block |
||
124 | 124 | print '<div class="tabsAction">' . "\n"; |
125 | 125 | |
126 | 126 | // Make invoice |
127 | -if($user->rights->flightlog->vol->financial && $object->fk_type == 2 && !$object->hasFacture()){ |
|
128 | - print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/facture.php?id=' . $object->id.'">' . $langs->trans("Facturer") . '</a></div>' . "\n"; |
|
127 | +if ($user->rights->flightlog->vol->financial && $object->fk_type == 2 && !$object->hasFacture()) { |
|
128 | + print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/facture.php?id=' . $object->id . '">' . $langs->trans("Facturer") . '</a></div>' . "\n"; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | // Open |
132 | -if($object->isBilled() && $object->isBillingRequired()){ |
|
133 | - print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/card_tab_financial.php?action=open&id=' . $object->id.'">' . $langs->trans("Ouvrir") . '</a></div>' . "\n"; |
|
132 | +if ($object->isBilled() && $object->isBillingRequired()) { |
|
133 | + print '<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT . '/flightlog/card_tab_financial.php?action=open&id=' . $object->id . '">' . $langs->trans("Ouvrir") . '</a></div>' . "\n"; |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | print '</div>' . "\n"; |
137 | 137 | |
138 | -if($user->rights->flightlog->vol->financial){ |
|
138 | +if ($user->rights->flightlog->vol->financial) { |
|
139 | 139 | print '<div class="fichecenter"><div class="fichehalfleft">'; |
140 | 140 | $form->showLinkedObjectBlock($object); |
141 | 141 | print '</div></div>'; |
@@ -90,11 +90,11 @@ discard block |
||
90 | 90 | if ($num) { |
91 | 91 | while ($i < $num) { |
92 | 92 | $obj = $db->fetch_object($resql); |
93 | - $currentValue = substr($obj->immat, 0,2); |
|
93 | + $currentValue = substr($obj->immat, 0, 2); |
|
94 | 94 | |
95 | 95 | if ($obj) { |
96 | - if(true === $group && $currentValue !== $lastValue){ |
|
97 | - print '<optgroup label="'.$currentValue.'">'; |
|
96 | + if (true === $group && $currentValue !== $lastValue) { |
|
97 | + print '<optgroup label="' . $currentValue . '">'; |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | $lastValue = $currentValue; |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | echo strtoupper($obj->immat); |
112 | 112 | print "</option>"; |
113 | 113 | |
114 | - if(true === $group && $currentValue !== $lastValue){ |
|
115 | - print '<optgroup label="'.$currentValue.'">'; |
|
114 | + if (true === $group && $currentValue !== $lastValue) { |
|
115 | + print '<optgroup label="' . $currentValue . '">'; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $vol = new Bbcvols($this->db); |
66 | 66 | $vol->date = $command->getDate()->getTimestamp(); |
67 | 67 | $vol->lieuD = $command->getLieuD(); |
68 | - $vol->lieuA =$command->getLieuA(); |
|
68 | + $vol->lieuA = $command->getLieuA(); |
|
69 | 69 | $vol->heureD = $command->getHeureD()->format('Hi'); |
70 | 70 | $vol->heureA = $command->getHeureA()->format('Hi'); |
71 | 71 | $vol->BBC_ballons_idBBC_ballons = $command->getBBCBallonsIdBBCBallons(); |
@@ -73,14 +73,14 @@ discard block |
||
73 | 73 | $vol->remarque = $command->getRemarque(); |
74 | 74 | $vol->incidents = $command->getIncidents(); |
75 | 75 | $vol->fk_type = $command->getFkType(); |
76 | - $vol->fk_pilot =$command->getFkPilot(); |
|
76 | + $vol->fk_pilot = $command->getFkPilot(); |
|
77 | 77 | $vol->fk_organisateur = $command->getFkOrganisateur(); |
78 | 78 | $vol->kilometers = $command->getKilometers(); |
79 | 79 | $vol->cost = $command->getCost(); |
80 | 80 | $vol->fk_receiver = $command->getFkReceiver(); |
81 | 81 | $vol->justif_kilometers = $command->getJustifKilometers(); |
82 | 82 | $vol->setPassengerNames($command->getPassengerNames()); |
83 | - foreach($command->getOrderIds() as $orderId => $nbrPassengers){ |
|
83 | + foreach ($command->getOrderIds() as $orderId => $nbrPassengers) { |
|
84 | 84 | $vol->addOrderId($orderId, $nbrPassengers); |
85 | 85 | } |
86 | 86 | |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | throw new Exception(); |
89 | 89 | } |
90 | 90 | |
91 | - if(!$vol->isBillingRequired() || ($vol->isLinkedToOrder() && $vol->hasReceiver())){ |
|
91 | + if (!$vol->isBillingRequired() || ($vol->isLinkedToOrder() && $vol->hasReceiver())) { |
|
92 | 92 | $vol->is_facture = true; |
93 | 93 | } |
94 | 94 | |
95 | 95 | $result = $vol->create($this->user); |
96 | - if($result <= 0){ |
|
96 | + if ($result <= 0) { |
|
97 | 97 | throw new Exception(); |
98 | 98 | } |
99 | 99 | |
@@ -113,27 +113,27 @@ discard block |
||
113 | 113 | { |
114 | 114 | $flight->fetch($flight->id); |
115 | 115 | |
116 | - if(!$flight->isLinkedToOrder()){ |
|
116 | + if (!$flight->isLinkedToOrder()) { |
|
117 | 117 | return; |
118 | 118 | } |
119 | 119 | |
120 | - foreach($flight->getOrders() as $currentOrder){ |
|
120 | + foreach ($flight->getOrders() as $currentOrder) { |
|
121 | 121 | $currentOrder->add_object_linked('flightlog_bbcvols', $flight->getId()); |
122 | 122 | $currentOrder->fetch_lines(); |
123 | 123 | |
124 | 124 | $qtyOrder = 0; |
125 | 125 | /** @var OrderLine $currentOrderLine */ |
126 | - foreach($currentOrder->lines as $currentOrderLine){ |
|
127 | - $qtyOrder += (int)$currentOrderLine->qty; |
|
126 | + foreach ($currentOrder->lines as $currentOrderLine) { |
|
127 | + $qtyOrder += (int) $currentOrderLine->qty; |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | $passangersCount = $this->numberOfPassengersLinkedToOrder($currentOrder->id); |
131 | 131 | |
132 | - if($passangersCount < $qtyOrder){ |
|
132 | + if ($passangersCount < $qtyOrder) { |
|
133 | 133 | continue; |
134 | 134 | } |
135 | 135 | |
136 | - if($currentOrder->statut == Commande::STATUS_VALIDATED){ |
|
136 | + if ($currentOrder->statut == Commande::STATUS_VALIDATED) { |
|
137 | 137 | $currentOrder->cloture($this->user); |
138 | 138 | } |
139 | 139 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | */ |
152 | 152 | private function checkPassengersInformation($vol) |
153 | 153 | { |
154 | - if (!is_numeric($vol->nbrPax) || (int)$vol->nbrPax < 0) { |
|
154 | + if (!is_numeric($vol->nbrPax) || (int) $vol->nbrPax < 0) { |
|
155 | 155 | $this->addError('nbrPax', 'Erreur le nombre de passager est un nombre négatif.'); |
156 | 156 | } |
157 | 157 | |
@@ -203,13 +203,13 @@ discard block |
||
203 | 203 | */ |
204 | 204 | private function checkFlightInformation($vol) |
205 | 205 | { |
206 | - if(empty($vol->getHeureD()) || $vol->getHeureD() === '0000'){ |
|
206 | + if (empty($vol->getHeureD()) || $vol->getHeureD() === '0000') { |
|
207 | 207 | $this->addError('heureD', "L'heure depart est vide"); |
208 | 208 | } |
209 | 209 | if (!$this->isHourValid($vol->heureD)) { |
210 | 210 | $this->addError('heureD', "L'heure depart n'est pas correcte"); |
211 | 211 | } |
212 | - if(empty($vol->getHeureA()) || $vol->getHeureA() === '0000'){ |
|
212 | + if (empty($vol->getHeureA()) || $vol->getHeureA() === '0000') { |
|
213 | 213 | $this->addError('heureD', "L'heure d'arrivée est vide"); |
214 | 214 | } |
215 | 215 | |
@@ -249,10 +249,10 @@ discard block |
||
249 | 249 | $this->addError('order_id', 'Le nombre de passager par commande doit être >= 0.'); |
250 | 250 | } |
251 | 251 | |
252 | - $totalPassenegrs += (int)$nbrPassengers; |
|
252 | + $totalPassenegrs += (int) $nbrPassengers; |
|
253 | 253 | } |
254 | 254 | |
255 | - if (!$vol->hasReceiver() && $totalPassenegrs !== (int)$vol->getNumberOfPassengers()) { |
|
255 | + if (!$vol->hasReceiver() && $totalPassenegrs !== (int) $vol->getNumberOfPassengers()) { |
|
256 | 256 | $this->addError('nbrPax', 'Le nombre de passagers ne correspond pas au nombre entré sur les commandes'); |
257 | 257 | } |
258 | 258 | |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | |
279 | 279 | private function checkBalloon(Bbcvols $flight) |
280 | 280 | { |
281 | - if($flight->getBBCBallonsIdBBCBallons() > 0){ |
|
281 | + if ($flight->getBBCBallonsIdBBCBallons() > 0) { |
|
282 | 282 | return $this; |
283 | 283 | } |
284 | 284 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | 'Vol', |
34 | 34 | 'Finances', |
35 | 35 | 'Dégâts', |
36 | - 'Remarques '.($flight->hasComment() ? ' - <span class="fa fa-comment" title="'.$flight->getComment().'"></span>' : '').($flight->hasIncidents() ? ' - <span class="fa fa-exclamation" title="'.$flight->getIncident().'"></span>' : ''), |
|
36 | + 'Remarques ' . ($flight->hasComment() ? ' - <span class="fa fa-comment" title="' . $flight->getComment() . '"></span>' : '') . ($flight->hasIncidents() ? ' - <span class="fa fa-exclamation" title="' . $flight->getIncident() . '"></span>' : ''), |
|
37 | 37 | 'Suivis', |
38 | 38 | ]; |
39 | 39 |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | WHERE |
36 | 36 | fk_type IN (1,2) |
37 | 37 | AND YEAR(NOW())-1 <= YEAR(llx_bbc_vols.date) |
38 | - AND llx_bbc_vols.fk_pilot = '.$pilot.' |
|
38 | + AND llx_bbc_vols.fk_pilot = '.$pilot . ' |
|
39 | 39 | |
40 | 40 | GROUP BY |
41 | 41 | llx_bbc_vols.lieuD |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | $places = []; |
59 | 59 | |
60 | - for($i = 0; $i < $num ; $i++) { |
|
60 | + for ($i = 0; $i < $num; $i++) { |
|
61 | 61 | $properties = $this->db->fetch_array($resql); |
62 | 62 | $stat = new TakeOffPlace($properties['place']); |
63 | 63 | $places[] = $stat; |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | $this->db = $db; |
21 | 21 | } |
22 | 22 | |
23 | - public function query($params = []){ |
|
23 | + public function query($params = []) { |
|
24 | 24 | $sql = ' |
25 | 25 | SELECT |
26 | 26 | balloon.rowid as id, |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | WHERE |
35 | 35 | balloon.is_disable = false |
36 | - AND llx_bbc_vols.fk_pilot = '.$params['pilot'].' |
|
36 | + AND llx_bbc_vols.fk_pilot = '.$params['pilot'] . ' |
|
37 | 37 | |
38 | 38 | GROUP BY balloon.rowid |
39 | 39 | ORDER BY counter DESC |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | return new Balloon(0); |
51 | 51 | } |
52 | 52 | |
53 | - for($i = 0; $i < $num ; $i++) { |
|
53 | + for ($i = 0; $i < $num; $i++) { |
|
54 | 54 | $properties = $this->db->fetch_array($resql); |
55 | 55 | return Balloon::fromArray($properties); |
56 | 56 | } |