@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | private $pilot; |
| 87 | 87 | |
| 88 | 88 | /** |
| 89 | - * @return int |
|
| 89 | + * @return string |
|
| 90 | 90 | */ |
| 91 | 91 | public function getIdBBCVols() |
| 92 | 92 | { |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | /** |
| 97 | - * @return int |
|
| 97 | + * @return string |
|
| 98 | 98 | */ |
| 99 | 99 | public function getId() |
| 100 | 100 | { |
@@ -951,7 +951,7 @@ discard block |
||
| 951 | 951 | } |
| 952 | 952 | |
| 953 | 953 | /** |
| 954 | - * @return int |
|
| 954 | + * @return string |
|
| 955 | 955 | */ |
| 956 | 956 | public function getKilometers(){ |
| 957 | 957 | return $this->kilometers; |
@@ -149,10 +149,10 @@ discard block |
||
| 149 | 149 | $this->lieuA = trim($this->lieuA); |
| 150 | 150 | } |
| 151 | 151 | if (isset($this->heureD)) { |
| 152 | - $this->heureD = trim($this->heureD).'00'; |
|
| 152 | + $this->heureD = trim($this->heureD) . '00'; |
|
| 153 | 153 | } |
| 154 | 154 | if (isset($this->heureA)) { |
| 155 | - $this->heureA = trim($this->heureA).'00'; |
|
| 155 | + $this->heureA = trim($this->heureA) . '00'; |
|
| 156 | 156 | } |
| 157 | 157 | if (isset($this->BBC_ballons_idBBC_ballons)) { |
| 158 | 158 | $this->BBC_ballons_idBBC_ballons = trim($this->BBC_ballons_idBBC_ballons); |
@@ -891,7 +891,7 @@ discard block |
||
| 891 | 891 | */ |
| 892 | 892 | public function hasPax() |
| 893 | 893 | { |
| 894 | - return (int)$this->nbrPax > 0; |
|
| 894 | + return (int) $this->nbrPax > 0; |
|
| 895 | 895 | } |
| 896 | 896 | |
| 897 | 897 | /** |
@@ -917,14 +917,14 @@ discard block |
||
| 917 | 917 | /** |
| 918 | 918 | * @return int |
| 919 | 919 | */ |
| 920 | - public function getAmountReceived(){ |
|
| 920 | + public function getAmountReceived() { |
|
| 921 | 921 | return $this->cost; |
| 922 | 922 | } |
| 923 | 923 | |
| 924 | 924 | /** |
| 925 | 925 | * @return int |
| 926 | 926 | */ |
| 927 | - public function getAmountPerPassenger(){ |
|
| 927 | + public function getAmountPerPassenger() { |
|
| 928 | 928 | return $this->cost / $this->nbrPax; |
| 929 | 929 | } |
| 930 | 930 | |
@@ -939,21 +939,21 @@ discard block |
||
| 939 | 939 | /** |
| 940 | 940 | * @return boolean |
| 941 | 941 | */ |
| 942 | - public function hasKilometers(){ |
|
| 942 | + public function hasKilometers() { |
|
| 943 | 943 | return !empty($this->kilometers); |
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | /** |
| 947 | 947 | * @return boolean |
| 948 | 948 | */ |
| 949 | - public function hasKilometersDescription(){ |
|
| 949 | + public function hasKilometersDescription() { |
|
| 950 | 950 | return !empty(trim($this->justif_kilometers)); |
| 951 | 951 | } |
| 952 | 952 | |
| 953 | 953 | /** |
| 954 | 954 | * @return int |
| 955 | 955 | */ |
| 956 | - public function getKilometers(){ |
|
| 956 | + public function getKilometers() { |
|
| 957 | 957 | return $this->kilometers; |
| 958 | 958 | } |
| 959 | 959 | } |
@@ -47,16 +47,16 @@ discard block |
||
| 47 | 47 | $this->addError('heures', 'L\'heure de depart est plus grande que l\'heure d\'arrivee'); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - if(empty($vol->lieuD)){ |
|
| 50 | + if (empty($vol->lieuD)) { |
|
| 51 | 51 | $this->addError('lieuD', 'Le lieu de départ est vide'); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - if(empty($vol->lieuA)){ |
|
| 54 | + if (empty($vol->lieuA)) { |
|
| 55 | 55 | $this->addError('lieuA', 'Le lieu d\'arrivée est vide'); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // PAX |
| 59 | - if (!is_numeric($vol->nbrPax) || (int)$vol->nbrPax < 0) { |
|
| 59 | + if (!is_numeric($vol->nbrPax) || (int) $vol->nbrPax < 0) { |
|
| 60 | 60 | $this->addError('nbrPax', 'Erreur le nombre de passager est un nombre négatif.'); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -74,18 +74,18 @@ discard block |
||
| 74 | 74 | 'Erreur ce type de vol doit être payant, mais personne n\'a été signalé comme recepteur d\'argent.'); |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - if($vol->getFlightType()->isBillingRequired() && ($vol->getAmountPerPassenger()) < $this->getMinPrice()){ |
|
| 77 | + if ($vol->getFlightType()->isBillingRequired() && ($vol->getAmountPerPassenger()) < $this->getMinPrice()) { |
|
| 78 | 78 | $this->addError('cost', |
| 79 | 79 | sprintf('Le montant demandé pour ce vol n\'est pas suffisant un minimum de %s euros est demandé', $this->getMinPrice())); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | //Kilometers |
| 83 | - if($vol->hasKilometers() && !$vol->getKilometers() > 0){ |
|
| 83 | + if ($vol->hasKilometers() && !$vol->getKilometers() > 0) { |
|
| 84 | 84 | $this->addError('kilometers', |
| 85 | 85 | 'Les kilometres doivent être un nombre positif'); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - if($vol->hasKilometers() && !$vol->hasKilometersDescription()){ |
|
| 88 | + if ($vol->hasKilometers() && !$vol->hasKilometersDescription()) { |
|
| 89 | 89 | $this->addError('justif_kilometers', |
| 90 | 90 | 'Vous essayez d\'encoder des kilometres sans justificatif.'); |
| 91 | 91 | } |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | * |
| 129 | 129 | * @return int |
| 130 | 130 | */ |
| 131 | - public function getMinPrice(){ |
|
| 131 | + public function getMinPrice() { |
|
| 132 | 132 | if ($this->defaultService->price_base_type == 'TTC') { |
| 133 | 133 | return $this->defaultService->price_min; |
| 134 | 134 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | $search_fk_type = GETPOST('search_fk_type', 'int'); |
| 51 | 51 | $search_fk_pilot = GETPOST('search_fk_pilot', 'int') ?: ($user->admin ? '' : $user->id); |
| 52 | 52 | $search_fk_organisateur = GETPOST('search_fk_organisateur', 'int'); |
| 53 | -$search_is_facture = GETPOST('search_is_facture', 'int') === ''? -1 : (int)GETPOST('search_is_facture', 'int'); |
|
| 53 | +$search_is_facture = GETPOST('search_is_facture', 'int') === '' ? -1 : (int) GETPOST('search_is_facture', 'int'); |
|
| 54 | 54 | $search_kilometers = GETPOST('search_kilometers', 'alpha'); |
| 55 | 55 | $search_cost = GETPOST('search_cost', 'alpha'); |
| 56 | 56 | $search_fk_receiver = GETPOST('search_fk_receiver', 'int'); |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | |
| 179 | 179 | $parameters = array(); |
| 180 | 180 | $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, |
| 181 | - $action); // Note that $action and $object may have been modified by some hooks |
|
| 181 | + $action); // Note that $action and $object may have been modified by some hooks |
|
| 182 | 182 | if ($reshook < 0) { |
| 183 | 183 | setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); |
| 184 | 184 | } |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | // Add fields from hooks |
| 276 | 276 | $parameters = array(); |
| 277 | 277 | $reshook = $hookmanager->executeHooks('printFieldListSelect', |
| 278 | - $parameters); // Note that $action and $object may have been modified by hook |
|
| 278 | + $parameters); // Note that $action and $object may have been modified by hook |
|
| 279 | 279 | $sql .= $hookmanager->resPrint; |
| 280 | 280 | $sql .= " FROM " . MAIN_DB_PREFIX . "bbc_vols as t"; |
| 281 | 281 | if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) { |
@@ -289,8 +289,8 @@ discard block |
||
| 289 | 289 | |
| 290 | 290 | $sql .= " WHERE 1 = 1"; |
| 291 | 291 | |
| 292 | -if($search_all){ |
|
| 293 | - $sql .= natural_search(["idBBC_vols", "lieuD", "lieuA", "pilot.lastname", "pilot.firstname", "balloon.immat"], $search_all); |
|
| 292 | +if ($search_all) { |
|
| 293 | + $sql .= natural_search(["idBBC_vols", "lieuD", "lieuA", "pilot.lastname", "pilot.firstname", "balloon.immat"], $search_all); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | if ($search_idBBC_vols) { |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | // Add where from hooks |
| 370 | 370 | $parameters = array(); |
| 371 | 371 | $reshook = $hookmanager->executeHooks('printFieldListWhere', |
| 372 | - $parameters); // Note that $action and $object may have been modified by hook |
|
| 372 | + $parameters); // Note that $action and $object may have been modified by hook |
|
| 373 | 373 | $sql .= $hookmanager->resPrint; |
| 374 | 374 | $sql .= $db->order($sortfield, $sortorder); |
| 375 | 375 | //$sql.= $db->plimit($conf->liste_limit+1, $offset); |
@@ -411,58 +411,58 @@ discard block |
||
| 411 | 411 | if ($limit > 0 && $limit != $conf->liste_limit) { |
| 412 | 412 | $param .= '&limit=' . $limit; |
| 413 | 413 | } |
| 414 | -if ($search_idBBC_vols != '') { |
|
| 414 | +if ($search_idBBC_vols != '') { |
|
| 415 | 415 | $param .= '&search_idBBC_vols=' . urlencode($search_idBBC_vols); |
| 416 | 416 | } |
| 417 | -if ($search_date != '') { |
|
| 417 | +if ($search_date != '') { |
|
| 418 | 418 | $param .= '&search_date=' . urlencode($search_date); |
| 419 | 419 | } |
| 420 | -if ($search_lieuD != '') { |
|
| 420 | +if ($search_lieuD != '') { |
|
| 421 | 421 | $param .= '&search_lieuD=' . urlencode($search_lieuD); |
| 422 | 422 | } |
| 423 | -if ($search_lieuA != '') { |
|
| 423 | +if ($search_lieuA != '') { |
|
| 424 | 424 | $param .= '&search_lieuA=' . urlencode($search_lieuA); |
| 425 | 425 | } |
| 426 | -if ($search_heureD != '') { |
|
| 426 | +if ($search_heureD != '') { |
|
| 427 | 427 | $param .= '&search_heureD=' . urlencode($search_heureD); |
| 428 | 428 | } |
| 429 | -if ($search_heureA != '') { |
|
| 429 | +if ($search_heureA != '') { |
|
| 430 | 430 | $param .= '&search_heureA=' . urlencode($search_heureA); |
| 431 | 431 | } |
| 432 | -if ($search_BBC_ballons_idBBC_ballons != '') { |
|
| 432 | +if ($search_BBC_ballons_idBBC_ballons != '') { |
|
| 433 | 433 | $param .= '&search_BBC_ballons_idBBC_ballons=' . urlencode($search_BBC_ballons_idBBC_ballons); |
| 434 | 434 | } |
| 435 | -if ($search_nbrPax != '') { |
|
| 435 | +if ($search_nbrPax != '') { |
|
| 436 | 436 | $param .= '&search_nbrPax=' . urlencode($search_nbrPax); |
| 437 | 437 | } |
| 438 | -if ($search_remarque != '') { |
|
| 438 | +if ($search_remarque != '') { |
|
| 439 | 439 | $param .= '&search_remarque=' . urlencode($search_remarque); |
| 440 | 440 | } |
| 441 | -if ($search_incidents != '') { |
|
| 441 | +if ($search_incidents != '') { |
|
| 442 | 442 | $param .= '&search_incidents=' . urlencode($search_incidents); |
| 443 | 443 | } |
| 444 | -if ($search_fk_type != '') { |
|
| 444 | +if ($search_fk_type != '') { |
|
| 445 | 445 | $param .= '&search_fk_type=' . urlencode($search_fk_type); |
| 446 | 446 | } |
| 447 | 447 | if ($search_fk_pilot != '') { |
| 448 | 448 | $param .= '&search_fk_pilot=' . urlencode($search_fk_pilot); |
| 449 | 449 | } |
| 450 | -if ($search_fk_organisateur != '') { |
|
| 450 | +if ($search_fk_organisateur != '') { |
|
| 451 | 451 | $param .= '&search_fk_organisateur=' . urlencode($search_fk_organisateur); |
| 452 | 452 | } |
| 453 | -if ($search_is_facture != -1) { |
|
| 453 | +if ($search_is_facture != -1) { |
|
| 454 | 454 | $param .= '&search_is_facture=' . urlencode($search_is_facture); |
| 455 | 455 | } |
| 456 | -if ($search_kilometers != '') { |
|
| 456 | +if ($search_kilometers != '') { |
|
| 457 | 457 | $param .= '&search_kilometers=' . urlencode($search_kilometers); |
| 458 | 458 | } |
| 459 | -if ($search_cost != '') { |
|
| 459 | +if ($search_cost != '') { |
|
| 460 | 460 | $param .= '&search_cost=' . urlencode($search_cost); |
| 461 | 461 | } |
| 462 | -if ($search_fk_receiver != '') { |
|
| 462 | +if ($search_fk_receiver != '') { |
|
| 463 | 463 | $param .= '&search_fk_receiver=' . urlencode($search_fk_receiver); |
| 464 | 464 | } |
| 465 | -if ($search_justif_kilometers != '') { |
|
| 465 | +if ($search_justif_kilometers != '') { |
|
| 466 | 466 | $param .= '&search_justif_kilometers=' . urlencode($search_justif_kilometers); |
| 467 | 467 | } |
| 468 | 468 | if ($search_all != '') { |
@@ -506,8 +506,8 @@ discard block |
||
| 506 | 506 | |
| 507 | 507 | |
| 508 | 508 | $moreHtml = ""; |
| 509 | -if($search_all !== ""){ |
|
| 510 | - $moreHtml = "<p>".$langs->trans(sprintf("La liste est en recherche globale sur : l'identifiant du vol, le nom du pilote, l'immat du ballon, le lieu de Décollage et le lieu d'atterissage : %s", $search_all))."</p>"; |
|
| 509 | +if ($search_all !== "") { |
|
| 510 | + $moreHtml = "<p>" . $langs->trans(sprintf("La liste est en recherche globale sur : l'identifiant du vol, le nom du pilote, l'immat du ballon, le lieu de Décollage et le lieu d'atterissage : %s", $search_all)) . "</p>"; |
|
| 511 | 511 | } |
| 512 | 512 | |
| 513 | 513 | print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, |
@@ -527,7 +527,7 @@ discard block |
||
| 527 | 527 | |
| 528 | 528 | $parameters = array(); |
| 529 | 529 | $reshook = $hookmanager->executeHooks('printFieldPreListTitle', |
| 530 | - $parameters); // Note that $action and $object may have been modified by hook |
|
| 530 | + $parameters); // Note that $action and $object may have been modified by hook |
|
| 531 | 531 | if (empty($reshook)) { |
| 532 | 532 | $moreforfilter .= $hookmanager->resPrint; |
| 533 | 533 | } else { |
@@ -542,7 +542,7 @@ discard block |
||
| 542 | 542 | |
| 543 | 543 | $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage; |
| 544 | 544 | $selectedfields = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, |
| 545 | - $varpage); // This also change content of $arrayfields |
|
| 545 | + $varpage); // This also change content of $arrayfields |
|
| 546 | 546 | |
| 547 | 547 | print '<div class="div-table-responsive">'; |
| 548 | 548 | print '<table class="tagtable liste' . ($moreforfilter ? " listwithfilterbefore" : "") . '">' . "\n"; |
@@ -638,7 +638,7 @@ discard block |
||
| 638 | 638 | // Hook fields |
| 639 | 639 | $parameters = array('arrayfields' => $arrayfields); |
| 640 | 640 | $reshook = $hookmanager->executeHooks('printFieldListTitle', |
| 641 | - $parameters); // Note that $action and $object may have been modified by hook |
|
| 641 | + $parameters); // Note that $action and $object may have been modified by hook |
|
| 642 | 642 | print $hookmanager->resPrint; |
| 643 | 643 | if (!empty($arrayfields['t.datec']['checked'])) { |
| 644 | 644 | print_liste_field_titre($arrayfields['t.datec']['label'], $_SERVER["PHP_SELF"], "t.datec", "", $param, |
@@ -707,7 +707,7 @@ discard block |
||
| 707 | 707 | |
| 708 | 708 | if (!empty($arrayfields['t.is_facture']['checked'])) { |
| 709 | 709 | print '<td class="liste_titre">'; |
| 710 | - print '<select name="search_is_facture"><option value="-1" '.($search_is_facture != 1 && $search_is_facture != 0 ? 'selected' : '' ).'></option><option value="1" '.($search_is_facture == 1 ? 'selected' : '' ).'>Facturé</option><option value="0" '.($search_is_facture == 0 ? 'selected' : '' ).'>Ouvert</option></select>'; |
|
| 710 | + print '<select name="search_is_facture"><option value="-1" ' . ($search_is_facture != 1 && $search_is_facture != 0 ? 'selected' : '') . '></option><option value="1" ' . ($search_is_facture == 1 ? 'selected' : '') . '>Facturé</option><option value="0" ' . ($search_is_facture == 0 ? 'selected' : '') . '>Ouvert</option></select>'; |
|
| 711 | 711 | print '</td>'; |
| 712 | 712 | } |
| 713 | 713 | |
@@ -752,7 +752,7 @@ discard block |
||
| 752 | 752 | // Fields from hook |
| 753 | 753 | $parameters = array('arrayfields' => $arrayfields); |
| 754 | 754 | $reshook = $hookmanager->executeHooks('printFieldListOption', |
| 755 | - $parameters); // Note that $action and $object may have been modified by hook |
|
| 755 | + $parameters); // Note that $action and $object may have been modified by hook |
|
| 756 | 756 | print $hookmanager->resPrint; |
| 757 | 757 | if (!empty($arrayfields['t.datec']['checked'])) { |
| 758 | 758 | // Date creation |
@@ -794,124 +794,124 @@ discard block |
||
| 794 | 794 | // Show here line of result |
| 795 | 795 | print '<tr ' . $bc[$var] . '>'; |
| 796 | 796 | |
| 797 | - if (! empty($arrayfields['t.idBBC_vols']['checked'])) |
|
| 797 | + if (!empty($arrayfields['t.idBBC_vols']['checked'])) |
|
| 798 | 798 | { |
| 799 | - print '<td>'.$flight->getNomUrl(0).'</td>'; |
|
| 799 | + print '<td>' . $flight->getNomUrl(0) . '</td>'; |
|
| 800 | 800 | |
| 801 | - if (! $i) $totalarray['nbfield']++; |
|
| 801 | + if (!$i) $totalarray['nbfield']++; |
|
| 802 | 802 | } |
| 803 | - if (! empty($arrayfields['t.date']['checked'])) |
|
| 803 | + if (!empty($arrayfields['t.date']['checked'])) |
|
| 804 | 804 | { |
| 805 | 805 | print '<td>'; |
| 806 | 806 | print dol_print_date($db->jdate($obj->date), '%d-%m-%y'); |
| 807 | 807 | print '</td>'; |
| 808 | 808 | |
| 809 | - if (! $i) $totalarray['nbfield']++; |
|
| 809 | + if (!$i) $totalarray['nbfield']++; |
|
| 810 | 810 | } |
| 811 | - if (! empty($arrayfields['t.lieuD']['checked'])) |
|
| 811 | + if (!empty($arrayfields['t.lieuD']['checked'])) |
|
| 812 | 812 | { |
| 813 | - print '<td>'.$obj->lieuD.'</td>'; |
|
| 813 | + print '<td>' . $obj->lieuD . '</td>'; |
|
| 814 | 814 | |
| 815 | - if (! $i) $totalarray['nbfield']++; |
|
| 815 | + if (!$i) $totalarray['nbfield']++; |
|
| 816 | 816 | } |
| 817 | - if (! empty($arrayfields['t.lieuA']['checked'])) |
|
| 817 | + if (!empty($arrayfields['t.lieuA']['checked'])) |
|
| 818 | 818 | { |
| 819 | - print '<td>'.$obj->lieuA.'</td>'; |
|
| 819 | + print '<td>' . $obj->lieuA . '</td>'; |
|
| 820 | 820 | |
| 821 | - if (! $i) $totalarray['nbfield']++; |
|
| 821 | + if (!$i) $totalarray['nbfield']++; |
|
| 822 | 822 | } |
| 823 | - if (! empty($arrayfields['t.heureD']['checked'])) |
|
| 823 | + if (!empty($arrayfields['t.heureD']['checked'])) |
|
| 824 | 824 | { |
| 825 | - print '<td>'.$obj->heureD.'</td>'; |
|
| 825 | + print '<td>' . $obj->heureD . '</td>'; |
|
| 826 | 826 | |
| 827 | - if (! $i) $totalarray['nbfield']++; |
|
| 827 | + if (!$i) $totalarray['nbfield']++; |
|
| 828 | 828 | } |
| 829 | - if (! empty($arrayfields['t.heureA']['checked'])) |
|
| 829 | + if (!empty($arrayfields['t.heureA']['checked'])) |
|
| 830 | 830 | { |
| 831 | - print '<td>'.$obj->heureA.'</td>'; |
|
| 831 | + print '<td>' . $obj->heureA . '</td>'; |
|
| 832 | 832 | |
| 833 | - if (! $i) $totalarray['nbfield']++; |
|
| 833 | + if (!$i) $totalarray['nbfield']++; |
|
| 834 | 834 | } |
| 835 | - if (! empty($arrayfields['t.BBC_ballons_idBBC_ballons']['checked'])) |
|
| 835 | + if (!empty($arrayfields['t.BBC_ballons_idBBC_ballons']['checked'])) |
|
| 836 | 836 | { |
| 837 | - print '<td>'.$obj->bal.'</td>'; |
|
| 837 | + print '<td>' . $obj->bal . '</td>'; |
|
| 838 | 838 | |
| 839 | - if (! $i) $totalarray['nbfield']++; |
|
| 839 | + if (!$i) $totalarray['nbfield']++; |
|
| 840 | 840 | } |
| 841 | - if (! empty($arrayfields['t.nbrPax']['checked'])) |
|
| 841 | + if (!empty($arrayfields['t.nbrPax']['checked'])) |
|
| 842 | 842 | { |
| 843 | - print '<td>'.$obj->nbrPax.'</td>'; |
|
| 843 | + print '<td>' . $obj->nbrPax . '</td>'; |
|
| 844 | 844 | |
| 845 | - if (! $i) $totalarray['nbfield']++; |
|
| 845 | + if (!$i) $totalarray['nbfield']++; |
|
| 846 | 846 | } |
| 847 | - if (! empty($arrayfields['t.remarque']['checked'])) |
|
| 847 | + if (!empty($arrayfields['t.remarque']['checked'])) |
|
| 848 | 848 | { |
| 849 | - print '<td>'.$obj->remarque.'</td>'; |
|
| 849 | + print '<td>' . $obj->remarque . '</td>'; |
|
| 850 | 850 | |
| 851 | - if (! $i) $totalarray['nbfield']++; |
|
| 851 | + if (!$i) $totalarray['nbfield']++; |
|
| 852 | 852 | } |
| 853 | - if (! empty($arrayfields['t.incidents']['checked'])) |
|
| 853 | + if (!empty($arrayfields['t.incidents']['checked'])) |
|
| 854 | 854 | { |
| 855 | - print '<td>'.$obj->incidents.'</td>'; |
|
| 855 | + print '<td>' . $obj->incidents . '</td>'; |
|
| 856 | 856 | |
| 857 | - if (! $i) $totalarray['nbfield']++; |
|
| 857 | + if (!$i) $totalarray['nbfield']++; |
|
| 858 | 858 | } |
| 859 | - if (! empty($arrayfields['t.fk_type']['checked'])) |
|
| 859 | + if (!empty($arrayfields['t.fk_type']['checked'])) |
|
| 860 | 860 | { |
| 861 | - print '<td>'.$obj->flight_type.'</td>'; |
|
| 861 | + print '<td>' . $obj->flight_type . '</td>'; |
|
| 862 | 862 | |
| 863 | - if (! $i) $totalarray['nbfield']++; |
|
| 863 | + if (!$i) $totalarray['nbfield']++; |
|
| 864 | 864 | } |
| 865 | - if (! empty($arrayfields['t.fk_pilot']['checked'])) |
|
| 865 | + if (!empty($arrayfields['t.fk_pilot']['checked'])) |
|
| 866 | 866 | { |
| 867 | - print '<td>'.$obj->pilot.'</td>'; |
|
| 867 | + print '<td>' . $obj->pilot . '</td>'; |
|
| 868 | 868 | |
| 869 | - if (! $i) $totalarray['nbfield']++; |
|
| 869 | + if (!$i) $totalarray['nbfield']++; |
|
| 870 | 870 | } |
| 871 | - if (! empty($arrayfields['t.fk_organisateur']['checked'])) |
|
| 871 | + if (!empty($arrayfields['t.fk_organisateur']['checked'])) |
|
| 872 | 872 | { |
| 873 | - print '<td>'.$obj->organisator.'</td>'; |
|
| 873 | + print '<td>' . $obj->organisator . '</td>'; |
|
| 874 | 874 | |
| 875 | - if (! $i) $totalarray['nbfield']++; |
|
| 875 | + if (!$i) $totalarray['nbfield']++; |
|
| 876 | 876 | } |
| 877 | - if (! empty($arrayfields['t.is_facture']['checked'])) |
|
| 877 | + if (!empty($arrayfields['t.is_facture']['checked'])) |
|
| 878 | 878 | { |
| 879 | 879 | $flight->is_facture = $obj->is_facture; |
| 880 | - print '<td>'.$flight->getLibStatut(3).'</td>'; |
|
| 880 | + print '<td>' . $flight->getLibStatut(3) . '</td>'; |
|
| 881 | 881 | |
| 882 | - if (! $i) $totalarray['nbfield']++; |
|
| 882 | + if (!$i) $totalarray['nbfield']++; |
|
| 883 | 883 | } |
| 884 | - if (! empty($arrayfields['t.kilometers']['checked'])) |
|
| 884 | + if (!empty($arrayfields['t.kilometers']['checked'])) |
|
| 885 | 885 | { |
| 886 | - if($user->rights->flightlog->vol->financial || $user->id == $flight->fk_pilot){ |
|
| 887 | - print '<td>'.$obj->kilometers.' KM</td>'; |
|
| 888 | - }else{ |
|
| 886 | + if ($user->rights->flightlog->vol->financial || $user->id == $flight->fk_pilot) { |
|
| 887 | + print '<td>' . $obj->kilometers . ' KM</td>'; |
|
| 888 | + } else { |
|
| 889 | 889 | print '<td> - Km</td>'; |
| 890 | 890 | } |
| 891 | 891 | |
| 892 | - if (! $i) $totalarray['nbfield']++; |
|
| 892 | + if (!$i) $totalarray['nbfield']++; |
|
| 893 | 893 | } |
| 894 | - if (! empty($arrayfields['t.cost']['checked'])) |
|
| 894 | + if (!empty($arrayfields['t.cost']['checked'])) |
|
| 895 | 895 | { |
| 896 | - if(($user->rights->flightlog->vol->financial || $user->id == $flight->fk_pilot) && $obj->cost > 0){ |
|
| 897 | - print sprintf('<td>%s - (%s/pax)</td>', price($obj->cost, 0, $langs, 0, 0, -1, $conf->currency), price($obj->cost/$obj->nbrPax, 0, $langs, -1, _1, -1, $conf->currency)); |
|
| 898 | - }else{ |
|
| 896 | + if (($user->rights->flightlog->vol->financial || $user->id == $flight->fk_pilot) && $obj->cost > 0) { |
|
| 897 | + print sprintf('<td>%s - (%s/pax)</td>', price($obj->cost, 0, $langs, 0, 0, -1, $conf->currency), price($obj->cost / $obj->nbrPax, 0, $langs, -1, _1, -1, $conf->currency)); |
|
| 898 | + } else { |
|
| 899 | 899 | print '<td> - €</td>'; |
| 900 | 900 | } |
| 901 | 901 | |
| 902 | - if (! $i) $totalarray['nbfield']++; |
|
| 902 | + if (!$i) $totalarray['nbfield']++; |
|
| 903 | 903 | } |
| 904 | - if (! empty($arrayfields['t.fk_receiver']['checked'])) |
|
| 904 | + if (!empty($arrayfields['t.fk_receiver']['checked'])) |
|
| 905 | 905 | { |
| 906 | - print '<td>'.$obj->receiver.'</td>'; |
|
| 906 | + print '<td>' . $obj->receiver . '</td>'; |
|
| 907 | 907 | |
| 908 | - if (! $i) $totalarray['nbfield']++; |
|
| 908 | + if (!$i) $totalarray['nbfield']++; |
|
| 909 | 909 | } |
| 910 | - if (! empty($arrayfields['t.justif_kilometers']['checked'])) |
|
| 910 | + if (!empty($arrayfields['t.justif_kilometers']['checked'])) |
|
| 911 | 911 | { |
| 912 | - print '<td>'.$obj->justif_kilometers.'</td>'; |
|
| 912 | + print '<td>' . $obj->justif_kilometers . '</td>'; |
|
| 913 | 913 | |
| 914 | - if (! $i) $totalarray['nbfield']++; |
|
| 914 | + if (!$i) $totalarray['nbfield']++; |
|
| 915 | 915 | } |
| 916 | 916 | |
| 917 | 917 | // Extra fields |
@@ -936,7 +936,7 @@ discard block |
||
| 936 | 936 | // Fields from hook |
| 937 | 937 | $parameters = array('arrayfields' => $arrayfields, 'obj' => $obj); |
| 938 | 938 | $reshook = $hookmanager->executeHooks('printFieldListValue', |
| 939 | - $parameters); // Note that $action and $object may have been modified by hook |
|
| 939 | + $parameters); // Note that $action and $object may have been modified by hook |
|
| 940 | 940 | print $hookmanager->resPrint; |
| 941 | 941 | // Date creation |
| 942 | 942 | if (!empty($arrayfields['t.datec']['checked'])) { |
@@ -1006,7 +1006,7 @@ discard block |
||
| 1006 | 1006 | |
| 1007 | 1007 | $parameters = array('arrayfields' => $arrayfields, 'sql' => $sql); |
| 1008 | 1008 | $reshook = $hookmanager->executeHooks('printFieldListFooter', |
| 1009 | - $parameters); // Note that $action and $object may have been modified by hook |
|
| 1009 | + $parameters); // Note that $action and $object may have been modified by hook |
|
| 1010 | 1010 | print $hookmanager->resPrint; |
| 1011 | 1011 | |
| 1012 | 1012 | print '</table>' . "\n"; |
@@ -188,10 +188,12 @@ discard block |
||
| 188 | 188 | include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php'; |
| 189 | 189 | |
| 190 | 190 | // Purge search criteria |
| 191 | - if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) // All tests are required to be compatible with all browsers |
|
| 191 | + if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) { |
|
| 192 | + // All tests are required to be compatible with all browsers |
|
| 192 | 193 | { |
| 193 | 194 | |
| 194 | 195 | $search_idBBC_vols = ''; |
| 196 | + } |
|
| 195 | 197 | $search_date = ''; |
| 196 | 198 | $search_lieuD = ''; |
| 197 | 199 | $search_lieuA = ''; |
@@ -798,7 +800,9 @@ discard block |
||
| 798 | 800 | { |
| 799 | 801 | print '<td>'.$flight->getNomUrl(0).'</td>'; |
| 800 | 802 | |
| 801 | - if (! $i) $totalarray['nbfield']++; |
|
| 803 | + if (! $i) { |
|
| 804 | + $totalarray['nbfield']++; |
|
| 805 | + } |
|
| 802 | 806 | } |
| 803 | 807 | if (! empty($arrayfields['t.date']['checked'])) |
| 804 | 808 | { |
@@ -806,112 +810,146 @@ discard block |
||
| 806 | 810 | print dol_print_date($db->jdate($obj->date), '%d-%m-%y'); |
| 807 | 811 | print '</td>'; |
| 808 | 812 | |
| 809 | - if (! $i) $totalarray['nbfield']++; |
|
| 813 | + if (! $i) { |
|
| 814 | + $totalarray['nbfield']++; |
|
| 815 | + } |
|
| 810 | 816 | } |
| 811 | 817 | if (! empty($arrayfields['t.lieuD']['checked'])) |
| 812 | 818 | { |
| 813 | 819 | print '<td>'.$obj->lieuD.'</td>'; |
| 814 | 820 | |
| 815 | - if (! $i) $totalarray['nbfield']++; |
|
| 821 | + if (! $i) { |
|
| 822 | + $totalarray['nbfield']++; |
|
| 823 | + } |
|
| 816 | 824 | } |
| 817 | 825 | if (! empty($arrayfields['t.lieuA']['checked'])) |
| 818 | 826 | { |
| 819 | 827 | print '<td>'.$obj->lieuA.'</td>'; |
| 820 | 828 | |
| 821 | - if (! $i) $totalarray['nbfield']++; |
|
| 829 | + if (! $i) { |
|
| 830 | + $totalarray['nbfield']++; |
|
| 831 | + } |
|
| 822 | 832 | } |
| 823 | 833 | if (! empty($arrayfields['t.heureD']['checked'])) |
| 824 | 834 | { |
| 825 | 835 | print '<td>'.$obj->heureD.'</td>'; |
| 826 | 836 | |
| 827 | - if (! $i) $totalarray['nbfield']++; |
|
| 837 | + if (! $i) { |
|
| 838 | + $totalarray['nbfield']++; |
|
| 839 | + } |
|
| 828 | 840 | } |
| 829 | 841 | if (! empty($arrayfields['t.heureA']['checked'])) |
| 830 | 842 | { |
| 831 | 843 | print '<td>'.$obj->heureA.'</td>'; |
| 832 | 844 | |
| 833 | - if (! $i) $totalarray['nbfield']++; |
|
| 845 | + if (! $i) { |
|
| 846 | + $totalarray['nbfield']++; |
|
| 847 | + } |
|
| 834 | 848 | } |
| 835 | 849 | if (! empty($arrayfields['t.BBC_ballons_idBBC_ballons']['checked'])) |
| 836 | 850 | { |
| 837 | 851 | print '<td>'.$obj->bal.'</td>'; |
| 838 | 852 | |
| 839 | - if (! $i) $totalarray['nbfield']++; |
|
| 853 | + if (! $i) { |
|
| 854 | + $totalarray['nbfield']++; |
|
| 855 | + } |
|
| 840 | 856 | } |
| 841 | 857 | if (! empty($arrayfields['t.nbrPax']['checked'])) |
| 842 | 858 | { |
| 843 | 859 | print '<td>'.$obj->nbrPax.'</td>'; |
| 844 | 860 | |
| 845 | - if (! $i) $totalarray['nbfield']++; |
|
| 861 | + if (! $i) { |
|
| 862 | + $totalarray['nbfield']++; |
|
| 863 | + } |
|
| 846 | 864 | } |
| 847 | 865 | if (! empty($arrayfields['t.remarque']['checked'])) |
| 848 | 866 | { |
| 849 | 867 | print '<td>'.$obj->remarque.'</td>'; |
| 850 | 868 | |
| 851 | - if (! $i) $totalarray['nbfield']++; |
|
| 869 | + if (! $i) { |
|
| 870 | + $totalarray['nbfield']++; |
|
| 871 | + } |
|
| 852 | 872 | } |
| 853 | 873 | if (! empty($arrayfields['t.incidents']['checked'])) |
| 854 | 874 | { |
| 855 | 875 | print '<td>'.$obj->incidents.'</td>'; |
| 856 | 876 | |
| 857 | - if (! $i) $totalarray['nbfield']++; |
|
| 877 | + if (! $i) { |
|
| 878 | + $totalarray['nbfield']++; |
|
| 879 | + } |
|
| 858 | 880 | } |
| 859 | 881 | if (! empty($arrayfields['t.fk_type']['checked'])) |
| 860 | 882 | { |
| 861 | 883 | print '<td>'.$obj->flight_type.'</td>'; |
| 862 | 884 | |
| 863 | - if (! $i) $totalarray['nbfield']++; |
|
| 885 | + if (! $i) { |
|
| 886 | + $totalarray['nbfield']++; |
|
| 887 | + } |
|
| 864 | 888 | } |
| 865 | 889 | if (! empty($arrayfields['t.fk_pilot']['checked'])) |
| 866 | 890 | { |
| 867 | 891 | print '<td>'.$obj->pilot.'</td>'; |
| 868 | 892 | |
| 869 | - if (! $i) $totalarray['nbfield']++; |
|
| 893 | + if (! $i) { |
|
| 894 | + $totalarray['nbfield']++; |
|
| 895 | + } |
|
| 870 | 896 | } |
| 871 | 897 | if (! empty($arrayfields['t.fk_organisateur']['checked'])) |
| 872 | 898 | { |
| 873 | 899 | print '<td>'.$obj->organisator.'</td>'; |
| 874 | 900 | |
| 875 | - if (! $i) $totalarray['nbfield']++; |
|
| 901 | + if (! $i) { |
|
| 902 | + $totalarray['nbfield']++; |
|
| 903 | + } |
|
| 876 | 904 | } |
| 877 | 905 | if (! empty($arrayfields['t.is_facture']['checked'])) |
| 878 | 906 | { |
| 879 | 907 | $flight->is_facture = $obj->is_facture; |
| 880 | 908 | print '<td>'.$flight->getLibStatut(3).'</td>'; |
| 881 | 909 | |
| 882 | - if (! $i) $totalarray['nbfield']++; |
|
| 910 | + if (! $i) { |
|
| 911 | + $totalarray['nbfield']++; |
|
| 912 | + } |
|
| 883 | 913 | } |
| 884 | 914 | if (! empty($arrayfields['t.kilometers']['checked'])) |
| 885 | 915 | { |
| 886 | 916 | if($user->rights->flightlog->vol->financial || $user->id == $flight->fk_pilot){ |
| 887 | 917 | print '<td>'.$obj->kilometers.' KM</td>'; |
| 888 | - }else{ |
|
| 918 | + } else{ |
|
| 889 | 919 | print '<td> - Km</td>'; |
| 890 | 920 | } |
| 891 | 921 | |
| 892 | - if (! $i) $totalarray['nbfield']++; |
|
| 922 | + if (! $i) { |
|
| 923 | + $totalarray['nbfield']++; |
|
| 924 | + } |
|
| 893 | 925 | } |
| 894 | 926 | if (! empty($arrayfields['t.cost']['checked'])) |
| 895 | 927 | { |
| 896 | 928 | if(($user->rights->flightlog->vol->financial || $user->id == $flight->fk_pilot) && $obj->cost > 0){ |
| 897 | 929 | print sprintf('<td>%s - (%s/pax)</td>', price($obj->cost, 0, $langs, 0, 0, -1, $conf->currency), price($obj->cost/$obj->nbrPax, 0, $langs, -1, _1, -1, $conf->currency)); |
| 898 | - }else{ |
|
| 930 | + } else{ |
|
| 899 | 931 | print '<td> - €</td>'; |
| 900 | 932 | } |
| 901 | 933 | |
| 902 | - if (! $i) $totalarray['nbfield']++; |
|
| 934 | + if (! $i) { |
|
| 935 | + $totalarray['nbfield']++; |
|
| 936 | + } |
|
| 903 | 937 | } |
| 904 | 938 | if (! empty($arrayfields['t.fk_receiver']['checked'])) |
| 905 | 939 | { |
| 906 | 940 | print '<td>'.$obj->receiver.'</td>'; |
| 907 | 941 | |
| 908 | - if (! $i) $totalarray['nbfield']++; |
|
| 942 | + if (! $i) { |
|
| 943 | + $totalarray['nbfield']++; |
|
| 944 | + } |
|
| 909 | 945 | } |
| 910 | 946 | if (! empty($arrayfields['t.justif_kilometers']['checked'])) |
| 911 | 947 | { |
| 912 | 948 | print '<td>'.$obj->justif_kilometers.'</td>'; |
| 913 | 949 | |
| 914 | - if (! $i) $totalarray['nbfield']++; |
|
| 950 | + if (! $i) { |
|
| 951 | + $totalarray['nbfield']++; |
|
| 952 | + } |
|
| 915 | 953 | } |
| 916 | 954 | |
| 917 | 955 | // Extra fields |
@@ -959,9 +997,11 @@ discard block |
||
| 959 | 997 | |
| 960 | 998 | // Action column |
| 961 | 999 | print '<td class="nowrap" align="center">'; |
| 962 | - if ($massactionbutton || $massaction) // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined |
|
| 1000 | + if ($massactionbutton || $massaction) { |
|
| 1001 | + // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined |
|
| 963 | 1002 | { |
| 964 | 1003 | $selected = 0; |
| 1004 | + } |
|
| 965 | 1005 | if (in_array($obj->idBBC_vols, $arrayofselected)) { |
| 966 | 1006 | $selected = 1; |
| 967 | 1007 | } |