@@ -61,8 +61,8 @@ |
||
| 61 | 61 | $form = new Form($db); |
| 62 | 62 | print '<!-- debut cartouche rapport --> |
| 63 | 63 | <div class="tabs"> |
| 64 | - <a id="'.($viewSelection == 1 ? 'active' : '').'" class="tab" href="listFact.php?view=1">Facturation</a> |
|
| 65 | - <a id="'.($viewSelection == 2 ? 'active' : '').'" class="tab" href="listFact.php?view=2">AVIABEL</a> |
|
| 64 | + <a id="'.($viewSelection == 1 ? 'active' : '') . '" class="tab" href="listFact.php?view=1">Facturation</a> |
|
| 65 | + <a id="'.($viewSelection == 2 ? 'active' : '') . '" class="tab" href="listFact.php?view=2">AVIABEL</a> |
|
| 66 | 66 | </div>'; |
| 67 | 67 | print '<div class="tabBar">'; |
| 68 | 68 | print "<form name='listFact' action=\"listFact.php\" method=\"get\">\n"; |
@@ -168,7 +168,7 @@ |
||
| 168 | 168 | |
| 169 | 169 | if ($result > 0) { |
| 170 | 170 | dol_htmloutput_mesg("Notes de frais créées"); |
| 171 | - }else{ |
|
| 171 | + } else{ |
|
| 172 | 172 | dol_htmloutput_errors("Note de frais non créée"); |
| 173 | 173 | } |
| 174 | 174 | } else { |
@@ -81,9 +81,9 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | $missions = bbcKilometersByQuartil($year); |
| 83 | 83 | |
| 84 | - foreach($missions as $currentMissionUserId => $currentMission){ |
|
| 84 | + foreach ($missions as $currentMissionUserId => $currentMission) { |
|
| 85 | 85 | |
| 86 | - if($currentMission["quartil"][$quarter]["km"] == 0 && $currentMission["quartil"][$quarter]["flight"] == 0){ |
|
| 86 | + if ($currentMission["quartil"][$quarter]["km"] == 0 && $currentMission["quartil"][$quarter]["flight"] == 0) { |
|
| 87 | 87 | continue; |
| 88 | 88 | } |
| 89 | 89 | |
@@ -97,18 +97,18 @@ discard block |
||
| 97 | 97 | $object->fk_statut = 1; |
| 98 | 98 | $object->fk_user_validator = GETPOST("fk_user_validator", 'int'); |
| 99 | 99 | $object->note_public = GETPOST('public_note', 'alpha'); |
| 100 | - $object->note_private = GETPOST('private_note','alpha'); |
|
| 100 | + $object->note_private = GETPOST('private_note', 'alpha'); |
|
| 101 | 101 | |
| 102 | 102 | $expenseNoteId = $object->create($expenseNoteUser); |
| 103 | - if($expenseNoteId < 0){ |
|
| 104 | - dol_htmloutput_errors("Erreur lors de la création de la note de frais" , $object->errors); |
|
| 103 | + if ($expenseNoteId < 0) { |
|
| 104 | + dol_htmloutput_errors("Erreur lors de la création de la note de frais", $object->errors); |
|
| 105 | 105 | continue; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | |
| 109 | 109 | $flightsForQuarter = findFlightByPilotAndQuarter($currentMissionUserId, $year, $quarter); |
| 110 | 110 | |
| 111 | - foreach($flightsForQuarter as $currentFlightForQuarter) { |
|
| 111 | + foreach ($flightsForQuarter as $currentFlightForQuarter) { |
|
| 112 | 112 | |
| 113 | 113 | // Kilometers |
| 114 | 114 | $object_ligne = new ExpenseReportLine($db); |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | |
| 169 | 169 | if ($result > 0) { |
| 170 | 170 | dol_htmloutput_mesg("Notes de frais créées"); |
| 171 | - }else{ |
|
| 171 | + } else { |
|
| 172 | 172 | dol_htmloutput_errors("Note de frais non créée"); |
| 173 | 173 | } |
| 174 | 174 | } else { |
@@ -187,15 +187,15 @@ discard block |
||
| 187 | 187 | $form = new Form($db); |
| 188 | 188 | |
| 189 | 189 | $tabLinks = []; |
| 190 | -foreach($flightYears as $currentFlightYear){ |
|
| 190 | +foreach ($flightYears as $currentFlightYear) { |
|
| 191 | 191 | $tabLinks[] = [ |
| 192 | - DOL_URL_ROOT."/flightlog/generateExpenseNote.php?year=".$currentFlightYear, |
|
| 192 | + DOL_URL_ROOT . "/flightlog/generateExpenseNote.php?year=" . $currentFlightYear, |
|
| 193 | 193 | $currentFlightYear, |
| 194 | - "tab_".$currentFlightYear |
|
| 194 | + "tab_" . $currentFlightYear |
|
| 195 | 195 | ]; |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | -dol_fiche_head($tabLinks, "tab_".$year); |
|
| 198 | +dol_fiche_head($tabLinks, "tab_" . $year); |
|
| 199 | 199 | |
| 200 | 200 | ?> |
| 201 | 201 | <form method="POST"> |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | <select name="quarter" id="field_quarter"> |
| 212 | 212 | <option value="1" <?= ($year == $currentYear && $currentQuarter <= 1) ? 'disabled="disabled"' : "" ?>>1</option> |
| 213 | 213 | <option value="2" <?= ($year == $currentYear && $currentQuarter <= 2) ? 'disabled="disabled"' : "" ?>>2</option> |
| 214 | - <option value="3" <?= ($year == $currentYear && $currentQuarter <= 3) ? 'disabled="disabled"': "" ?>>3</option> |
|
| 214 | + <option value="3" <?= ($year == $currentYear && $currentQuarter <= 3) ? 'disabled="disabled"' : "" ?>>3</option> |
|
| 215 | 215 | <option value="4" <?= ($year == $currentYear && $currentQuarter <= 4) ? 'disabled="disabled"' : "" ?>>4</option> |
| 216 | 216 | </select> |
| 217 | 217 | <br/> |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | <label><?= $langs->trans("Validateur de la note de frais")?></label><br/> |
| 221 | 221 | <?php |
| 222 | 222 | $include_users = $object->fetch_users_approver_expensereport(); |
| 223 | - print $form->select_dolusers($user->id,"fk_user_validator",1,"",0,$include_users); |
|
| 223 | + print $form->select_dolusers($user->id, "fk_user_validator", 1, "", 0, $include_users); |
|
| 224 | 224 | ?> |
| 225 | 225 | <br/> |
| 226 | 226 | |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | $result = [$this->year]; |
| 70 | 70 | |
| 71 | 71 | foreach ($this->graphData as $typeId => $data) { |
| 72 | - if(!in_array($typeId, [1,2,3,6])){ |
|
| 72 | + if (!in_array($typeId, [1, 2, 3, 6])) { |
|
| 73 | 73 | continue; |
| 74 | 74 | } |
| 75 | 75 | |
@@ -36,14 +36,14 @@ |
||
| 36 | 36 | /** |
| 37 | 37 | * @param GraphicalValue $value |
| 38 | 38 | */ |
| 39 | - public function addValue(GraphicalValue $value){ |
|
| 39 | + public function addValue(GraphicalValue $value) { |
|
| 40 | 40 | $this->counter = $this->counter->add($value); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * @return int |
| 45 | 45 | */ |
| 46 | - public function getValue(){ |
|
| 46 | + public function getValue() { |
|
| 47 | 47 | return $this->counter->getValue(); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | */ |
| 41 | 41 | public function addValue($year, GraphicalValue $value) |
| 42 | 42 | { |
| 43 | - if(!isset($this->data[$year])){ |
|
| 43 | + if (!isset($this->data[$year])) { |
|
| 44 | 44 | throw new \Exception("Year is not defined"); |
| 45 | 45 | } |
| 46 | 46 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | { |
| 55 | 55 | $result = []; |
| 56 | 56 | |
| 57 | - foreach($this->data as $year){ |
|
| 57 | + foreach ($this->data as $year) { |
|
| 58 | 58 | $result[] = $year->export(); |
| 59 | 59 | } |
| 60 | 60 | |
@@ -136,12 +136,12 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | //'t.entity'=>array('label'=>$langs->trans("Entity"), 'checked'=>1, 'enabled'=>(! empty($conf->multicompany->enabled) && empty($conf->multicompany->transverse_mode))), |
| 138 | 138 | 't.datec' => array('label' => $langs->trans("DateCreationShort"), |
| 139 | - 'checked' => 0, |
|
| 140 | - 'position' => 500 |
|
| 139 | + 'checked' => 0, |
|
| 140 | + 'position' => 500 |
|
| 141 | 141 | ), |
| 142 | 142 | 't.tms' => array('label' => $langs->trans("DateModificationShort"), |
| 143 | - 'checked' => 0, |
|
| 144 | - 'position' => 500 |
|
| 143 | + 'checked' => 0, |
|
| 144 | + 'position' => 500 |
|
| 145 | 145 | ), |
| 146 | 146 | //'t.statut'=>array('label'=>$langs->trans("Status"), 'checked'=>1, 'position'=>1000), |
| 147 | 147 | ); |
@@ -149,9 +149,9 @@ discard block |
||
| 149 | 149 | if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) { |
| 150 | 150 | foreach ($extrafields->attribute_label as $key => $val) { |
| 151 | 151 | $arrayfields["ef." . $key] = array('label' => $extrafields->attribute_label[$key], |
| 152 | - 'checked' => $extrafields->attribute_list[$key], |
|
| 153 | - 'position' => $extrafields->attribute_pos[$key], |
|
| 154 | - 'enabled' => $extrafields->attribute_perms[$key] |
|
| 152 | + 'checked' => $extrafields->attribute_list[$key], |
|
| 153 | + 'position' => $extrafields->attribute_pos[$key], |
|
| 154 | + 'enabled' => $extrafields->attribute_perms[$key] |
|
| 155 | 155 | ); |
| 156 | 156 | } |
| 157 | 157 | } |
@@ -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){ |
|
| 897 | - print '<td>'.$obj->cost.'€</td>'; |
|
| 898 | - }else{ |
|
| 896 | + if ($user->rights->flightlog->vol->financial || $user->id == $flight->fk_pilot) { |
|
| 897 | + print '<td>' . $obj->cost . '€</td>'; |
|
| 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){ |
| 897 | 929 | print '<td>'.$obj->cost.'€</td>'; |
| 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 | } |
@@ -149,9 +149,9 @@ |
||
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
| 152 | - * @param null $year |
|
| 153 | - * @param null $pilotId |
|
| 154 | - * @param null $quarter |
|
| 152 | + * @param integer $year |
|
| 153 | + * @param integer $pilotId |
|
| 154 | + * @param integer $quarter |
|
| 155 | 155 | * @param bool $groupBy |
| 156 | 156 | * |
| 157 | 157 | * @return string |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | $totalQ4 = 0; |
| 338 | 338 | |
| 339 | 339 | $curMonth = date("m", time()); |
| 340 | - $curQuarter = ceil($curMonth/3); |
|
| 340 | + $curQuarter = ceil($curMonth / 3); |
|
| 341 | 341 | $disableColor = 'style="background-color: lightyellow;" title="N/A" data-toggle="tooltip"'; |
| 342 | 342 | |
| 343 | 343 | foreach ($kmByQuartil as $id => $rembKm) { |
@@ -371,29 +371,29 @@ discard block |
||
| 371 | 371 | print '<td>' . $name . '</td>'; |
| 372 | 372 | print '<td>' . $firstname . '</td>'; |
| 373 | 373 | |
| 374 | - print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . ($flightsQ1) . '</td>'; |
|
| 375 | - print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . ($flightsQ1 * $unitPriceMission) . '€</td>'; |
|
| 376 | - print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . $sumQ1 . '</td>'; |
|
| 377 | - print '<td'.($curQuarter < 1 ? $disableColor: '').'>' . ($sumQ1 * $tauxRemb) . '</td>'; |
|
| 378 | - print '<td'.($curQuarter < 1 ? $disableColor: '').'><b>' . $amoutQ1 . '€</b></td>'; |
|
| 379 | - |
|
| 380 | - print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . ($flightsQ2) . '</td>'; |
|
| 381 | - print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . ($flightsQ2 * $unitPriceMission) . '€</td>'; |
|
| 382 | - print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . $sumQ2 . '</td>'; |
|
| 383 | - print '<td '.($curQuarter < 2 ? $disableColor: '').'>' . ($sumQ2 * $tauxRemb) . '</td>'; |
|
| 384 | - print '<td '.($curQuarter < 2 ? $disableColor: '').'><b>' . $amoutQ2 . '€</b></td>'; |
|
| 385 | - |
|
| 386 | - print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . ($flightsQ3) . '</td>'; |
|
| 387 | - print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . ($flightsQ3 * $unitPriceMission) . '€</td>'; |
|
| 388 | - print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . $sumQ3 . '</td>'; |
|
| 389 | - print '<td '.($curQuarter < 3 ? $disableColor: '').'>' . ($sumQ3 * $tauxRemb) . '</td>'; |
|
| 390 | - print '<td '.($curQuarter < 3 ? $disableColor: '').'><b>' . $amoutQ3 . '€</b></td>'; |
|
| 391 | - |
|
| 392 | - print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . ($flightsQ4) . '</td>'; |
|
| 393 | - print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . ($flightsQ4 * $unitPriceMission) . '€</td>'; |
|
| 394 | - print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . $sumQ4 . '</td>'; |
|
| 395 | - print '<td '.($curQuarter < 4 ? $disableColor: '').'>' . ($sumQ4 * $tauxRemb) . '</td>'; |
|
| 396 | - print '<td '.($curQuarter < 4 ? $disableColor: '').'><b>' . $amoutQ4 . '€</b></td>'; |
|
| 374 | + print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . ($flightsQ1) . '</td>'; |
|
| 375 | + print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . ($flightsQ1 * $unitPriceMission) . '€</td>'; |
|
| 376 | + print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . $sumQ1 . '</td>'; |
|
| 377 | + print '<td' . ($curQuarter < 1 ? $disableColor : '') . '>' . ($sumQ1 * $tauxRemb) . '</td>'; |
|
| 378 | + print '<td' . ($curQuarter < 1 ? $disableColor : '') . '><b>' . $amoutQ1 . '€</b></td>'; |
|
| 379 | + |
|
| 380 | + print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . ($flightsQ2) . '</td>'; |
|
| 381 | + print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . ($flightsQ2 * $unitPriceMission) . '€</td>'; |
|
| 382 | + print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . $sumQ2 . '</td>'; |
|
| 383 | + print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '>' . ($sumQ2 * $tauxRemb) . '</td>'; |
|
| 384 | + print '<td ' . ($curQuarter < 2 ? $disableColor : '') . '><b>' . $amoutQ2 . '€</b></td>'; |
|
| 385 | + |
|
| 386 | + print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . ($flightsQ3) . '</td>'; |
|
| 387 | + print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . ($flightsQ3 * $unitPriceMission) . '€</td>'; |
|
| 388 | + print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . $sumQ3 . '</td>'; |
|
| 389 | + print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '>' . ($sumQ3 * $tauxRemb) . '</td>'; |
|
| 390 | + print '<td ' . ($curQuarter < 3 ? $disableColor : '') . '><b>' . $amoutQ3 . '€</b></td>'; |
|
| 391 | + |
|
| 392 | + print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . ($flightsQ4) . '</td>'; |
|
| 393 | + print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . ($flightsQ4 * $unitPriceMission) . '€</td>'; |
|
| 394 | + print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . $sumQ4 . '</td>'; |
|
| 395 | + print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '>' . ($sumQ4 * $tauxRemb) . '</td>'; |
|
| 396 | + print '<td ' . ($curQuarter < 4 ? $disableColor : '') . '><b>' . $amoutQ4 . '€</b></td>'; |
|
| 397 | 397 | |
| 398 | 398 | print '<td>' . (($sumFlights * $unitPriceMission) + ($sumKm * $tauxRemb)) . '€</td>'; |
| 399 | 399 | |
@@ -401,13 +401,13 @@ discard block |
||
| 401 | 401 | } |
| 402 | 402 | |
| 403 | 403 | print "<td colspan='6'></td>"; |
| 404 | - print "<td>".price($totalQ1)."€</td>"; |
|
| 404 | + print "<td>" . price($totalQ1) . "€</td>"; |
|
| 405 | 405 | print "<td colspan='4'></td>"; |
| 406 | - print "<td>".price($totalQ2)."€</td>"; |
|
| 406 | + print "<td>" . price($totalQ2) . "€</td>"; |
|
| 407 | 407 | print "<td colspan='4'></td>"; |
| 408 | - print "<td>".price($totalQ3)."€</td>"; |
|
| 408 | + print "<td>" . price($totalQ3) . "€</td>"; |
|
| 409 | 409 | print "<td colspan='4'></td>"; |
| 410 | - print "<td>".price($totalQ4)."€</td>"; |
|
| 410 | + print "<td>" . price($totalQ4) . "€</td>"; |
|
| 411 | 411 | print "<td></td>"; |
| 412 | 412 | |
| 413 | 413 | print '</table>'; |
@@ -501,7 +501,9 @@ discard block |
||
| 501 | 501 | if ($withpicto) |
| 502 | 502 | { |
| 503 | 503 | $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); |
| 504 | - if ($withpicto != 2) $result.=' '; |
|
| 504 | + if ($withpicto != 2) { |
|
| 505 | + $result.=' '; |
|
| 506 | + } |
|
| 505 | 507 | } |
| 506 | 508 | $result.= $link . $this->ref . $linkend; |
| 507 | 509 | return $result; |
@@ -532,33 +534,57 @@ discard block |
||
| 532 | 534 | if ($mode == 0) |
| 533 | 535 | { |
| 534 | 536 | $prefix=''; |
| 535 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 536 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 537 | + if ($status == 1) { |
|
| 538 | + return $langs->trans('Enabled'); |
|
| 539 | + } |
|
| 540 | + if ($status == 0) { |
|
| 541 | + return $langs->trans('Disabled'); |
|
| 542 | + } |
|
| 537 | 543 | } |
| 538 | 544 | if ($mode == 1) |
| 539 | 545 | { |
| 540 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 541 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 546 | + if ($status == 1) { |
|
| 547 | + return $langs->trans('Enabled'); |
|
| 548 | + } |
|
| 549 | + if ($status == 0) { |
|
| 550 | + return $langs->trans('Disabled'); |
|
| 551 | + } |
|
| 542 | 552 | } |
| 543 | 553 | if ($mode == 2) |
| 544 | 554 | { |
| 545 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 546 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 555 | + if ($status == 1) { |
|
| 556 | + return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 557 | + } |
|
| 558 | + if ($status == 0) { |
|
| 559 | + return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 560 | + } |
|
| 547 | 561 | } |
| 548 | 562 | if ($mode == 3) |
| 549 | 563 | { |
| 550 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 551 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 564 | + if ($status == 1) { |
|
| 565 | + return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 566 | + } |
|
| 567 | + if ($status == 0) { |
|
| 568 | + return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 569 | + } |
|
| 552 | 570 | } |
| 553 | 571 | if ($mode == 4) |
| 554 | 572 | { |
| 555 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 556 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 573 | + if ($status == 1) { |
|
| 574 | + return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 575 | + } |
|
| 576 | + if ($status == 0) { |
|
| 577 | + return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 578 | + } |
|
| 557 | 579 | } |
| 558 | 580 | if ($mode == 5) |
| 559 | 581 | { |
| 560 | - if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 561 | - if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 582 | + if ($status == 1) { |
|
| 583 | + return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 584 | + } |
|
| 585 | + if ($status == 0) { |
|
| 586 | + return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 587 | + } |
|
| 562 | 588 | } |
| 563 | 589 | |
| 564 | 590 | return ""; |
@@ -41,228 +41,228 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | class Bbctypes extends CommonObject |
| 43 | 43 | { |
| 44 | - /** |
|
| 45 | - * @var string Id to identify managed objects |
|
| 46 | - */ |
|
| 47 | - public $element = 'bbctypes'; |
|
| 48 | - /** |
|
| 49 | - * @var string Name of table without prefix where object is stored |
|
| 50 | - */ |
|
| 51 | - public $table_element = 'bbc_types'; |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * @var BbctypesLine[] Lines |
|
| 55 | - */ |
|
| 56 | - public $lines = array(); |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - */ |
|
| 44 | + /** |
|
| 45 | + * @var string Id to identify managed objects |
|
| 46 | + */ |
|
| 47 | + public $element = 'bbctypes'; |
|
| 48 | + /** |
|
| 49 | + * @var string Name of table without prefix where object is stored |
|
| 50 | + */ |
|
| 51 | + public $table_element = 'bbc_types'; |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * @var BbctypesLine[] Lines |
|
| 55 | + */ |
|
| 56 | + public $lines = array(); |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + */ |
|
| 60 | 60 | |
| 61 | - public $idType; |
|
| 62 | - public $numero; |
|
| 63 | - public $nom; |
|
| 64 | - public $active; |
|
| 65 | - public $fkService; |
|
| 61 | + public $idType; |
|
| 62 | + public $numero; |
|
| 63 | + public $nom; |
|
| 64 | + public $active; |
|
| 65 | + public $fkService; |
|
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * @var Product |
| 69 | 69 | */ |
| 70 | - public $service; |
|
| 71 | - |
|
| 72 | - /** |
|
| 73 | - * Constructor |
|
| 74 | - * |
|
| 75 | - * @param DoliDb $db Database handler |
|
| 76 | - */ |
|
| 77 | - public function __construct(DoliDB $db) |
|
| 78 | - { |
|
| 79 | - $this->db = $db; |
|
| 80 | - } |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * Create object into database |
|
| 84 | - * |
|
| 85 | - * @param User $user User that creates |
|
| 86 | - * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 87 | - * |
|
| 88 | - * @return int <0 if KO, Id of created object if OK |
|
| 89 | - */ |
|
| 90 | - public function create(User $user, $notrigger = false) |
|
| 91 | - { |
|
| 92 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 93 | - |
|
| 94 | - $error = 0; |
|
| 95 | - |
|
| 96 | - // Clean parameters |
|
| 70 | + public $service; |
|
| 71 | + |
|
| 72 | + /** |
|
| 73 | + * Constructor |
|
| 74 | + * |
|
| 75 | + * @param DoliDb $db Database handler |
|
| 76 | + */ |
|
| 77 | + public function __construct(DoliDB $db) |
|
| 78 | + { |
|
| 79 | + $this->db = $db; |
|
| 80 | + } |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * Create object into database |
|
| 84 | + * |
|
| 85 | + * @param User $user User that creates |
|
| 86 | + * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 87 | + * |
|
| 88 | + * @return int <0 if KO, Id of created object if OK |
|
| 89 | + */ |
|
| 90 | + public function create(User $user, $notrigger = false) |
|
| 91 | + { |
|
| 92 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 93 | + |
|
| 94 | + $error = 0; |
|
| 95 | + |
|
| 96 | + // Clean parameters |
|
| 97 | 97 | |
| 98 | - if (isset($this->idType)) { |
|
| 99 | - $this->idType = trim($this->idType); |
|
| 100 | - } |
|
| 101 | - if (isset($this->numero)) { |
|
| 102 | - $this->numero = trim($this->numero); |
|
| 103 | - } |
|
| 104 | - if (isset($this->nom)) { |
|
| 105 | - $this->nom = trim($this->nom); |
|
| 106 | - } |
|
| 107 | - if (isset($this->active)) { |
|
| 108 | - $this->active = trim($this->active); |
|
| 109 | - } |
|
| 110 | - if (isset($this->fkService)) { |
|
| 111 | - $this->fkService = trim($this->fkService); |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - |
|
| 115 | - |
|
| 116 | - // Check parameters |
|
| 117 | - // Put here code to add control on parameters values |
|
| 118 | - |
|
| 119 | - // Insert request |
|
| 120 | - $sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; |
|
| 98 | + if (isset($this->idType)) { |
|
| 99 | + $this->idType = trim($this->idType); |
|
| 100 | + } |
|
| 101 | + if (isset($this->numero)) { |
|
| 102 | + $this->numero = trim($this->numero); |
|
| 103 | + } |
|
| 104 | + if (isset($this->nom)) { |
|
| 105 | + $this->nom = trim($this->nom); |
|
| 106 | + } |
|
| 107 | + if (isset($this->active)) { |
|
| 108 | + $this->active = trim($this->active); |
|
| 109 | + } |
|
| 110 | + if (isset($this->fkService)) { |
|
| 111 | + $this->fkService = trim($this->fkService); |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + |
|
| 115 | + |
|
| 116 | + // Check parameters |
|
| 117 | + // Put here code to add control on parameters values |
|
| 118 | + |
|
| 119 | + // Insert request |
|
| 120 | + $sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; |
|
| 121 | 121 | |
| 122 | - $sql.= 'numero,'; |
|
| 123 | - $sql.= 'nom,'; |
|
| 124 | - $sql.= 'fkService,'; |
|
| 125 | - $sql.= 'active'; |
|
| 122 | + $sql.= 'numero,'; |
|
| 123 | + $sql.= 'nom,'; |
|
| 124 | + $sql.= 'fkService,'; |
|
| 125 | + $sql.= 'active'; |
|
| 126 | 126 | |
| 127 | 127 | |
| 128 | - $sql .= ') VALUES ('; |
|
| 128 | + $sql .= ') VALUES ('; |
|
| 129 | 129 | |
| 130 | - $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; |
|
| 131 | - $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; |
|
| 132 | - $sql .= ' '.(! isset($this->fkService)?'NULL':"'".$this->db->escape($this->fkService)."'").','; |
|
| 133 | - $sql .= ' '.(! isset($this->active)?'NULL':$this->active); |
|
| 130 | + $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; |
|
| 131 | + $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; |
|
| 132 | + $sql .= ' '.(! isset($this->fkService)?'NULL':"'".$this->db->escape($this->fkService)."'").','; |
|
| 133 | + $sql .= ' '.(! isset($this->active)?'NULL':$this->active); |
|
| 134 | 134 | |
| 135 | 135 | |
| 136 | - $sql .= ')'; |
|
| 137 | - |
|
| 138 | - $this->db->begin(); |
|
| 139 | - |
|
| 140 | - $resql = $this->db->query($sql); |
|
| 141 | - if (!$resql) { |
|
| 142 | - $error ++; |
|
| 143 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 144 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 145 | - } |
|
| 146 | - |
|
| 147 | - if (!$error) { |
|
| 148 | - $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element); |
|
| 149 | - |
|
| 150 | - if (!$notrigger) { |
|
| 151 | - // Uncomment this and change MYOBJECT to your own tag if you |
|
| 152 | - // want this action to call a trigger. |
|
| 153 | - |
|
| 154 | - //// Call triggers |
|
| 155 | - //$result=$this->call_trigger('MYOBJECT_CREATE',$user); |
|
| 156 | - //if ($result < 0) $error++; |
|
| 157 | - //// End call triggers |
|
| 158 | - } |
|
| 159 | - } |
|
| 160 | - |
|
| 161 | - // Commit or rollback |
|
| 162 | - if ($error) { |
|
| 163 | - $this->db->rollback(); |
|
| 164 | - |
|
| 165 | - return - 1 * $error; |
|
| 166 | - } else { |
|
| 167 | - $this->db->commit(); |
|
| 168 | - |
|
| 169 | - return $this->id; |
|
| 170 | - } |
|
| 171 | - } |
|
| 172 | - |
|
| 173 | - /** |
|
| 174 | - * Load object in memory from the database |
|
| 175 | - * |
|
| 176 | - * @param int $id Id object |
|
| 177 | - * @param string $ref Ref |
|
| 178 | - * |
|
| 179 | - * @return int <0 if KO, 0 if not found, >0 if OK |
|
| 180 | - */ |
|
| 181 | - public function fetch($id, $ref = null) |
|
| 182 | - { |
|
| 183 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 184 | - |
|
| 185 | - $sql = 'SELECT'; |
|
| 186 | - $sql .= ' t.idType,'; |
|
| 136 | + $sql .= ')'; |
|
| 137 | + |
|
| 138 | + $this->db->begin(); |
|
| 139 | + |
|
| 140 | + $resql = $this->db->query($sql); |
|
| 141 | + if (!$resql) { |
|
| 142 | + $error ++; |
|
| 143 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 144 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 145 | + } |
|
| 146 | + |
|
| 147 | + if (!$error) { |
|
| 148 | + $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element); |
|
| 149 | + |
|
| 150 | + if (!$notrigger) { |
|
| 151 | + // Uncomment this and change MYOBJECT to your own tag if you |
|
| 152 | + // want this action to call a trigger. |
|
| 153 | + |
|
| 154 | + //// Call triggers |
|
| 155 | + //$result=$this->call_trigger('MYOBJECT_CREATE',$user); |
|
| 156 | + //if ($result < 0) $error++; |
|
| 157 | + //// End call triggers |
|
| 158 | + } |
|
| 159 | + } |
|
| 160 | + |
|
| 161 | + // Commit or rollback |
|
| 162 | + if ($error) { |
|
| 163 | + $this->db->rollback(); |
|
| 164 | + |
|
| 165 | + return - 1 * $error; |
|
| 166 | + } else { |
|
| 167 | + $this->db->commit(); |
|
| 168 | + |
|
| 169 | + return $this->id; |
|
| 170 | + } |
|
| 171 | + } |
|
| 172 | + |
|
| 173 | + /** |
|
| 174 | + * Load object in memory from the database |
|
| 175 | + * |
|
| 176 | + * @param int $id Id object |
|
| 177 | + * @param string $ref Ref |
|
| 178 | + * |
|
| 179 | + * @return int <0 if KO, 0 if not found, >0 if OK |
|
| 180 | + */ |
|
| 181 | + public function fetch($id, $ref = null) |
|
| 182 | + { |
|
| 183 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 184 | + |
|
| 185 | + $sql = 'SELECT'; |
|
| 186 | + $sql .= ' t.idType,'; |
|
| 187 | 187 | |
| 188 | - $sql .= " t.numero,"; |
|
| 189 | - $sql .= " t.nom,"; |
|
| 190 | - $sql .= " t.fkService,"; |
|
| 191 | - $sql .= " t.active"; |
|
| 188 | + $sql .= " t.numero,"; |
|
| 189 | + $sql .= " t.nom,"; |
|
| 190 | + $sql .= " t.fkService,"; |
|
| 191 | + $sql .= " t.active"; |
|
| 192 | 192 | |
| 193 | 193 | |
| 194 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; |
|
| 195 | - if (null !== $ref) { |
|
| 196 | - $sql .= ' WHERE t.ref = ' . '\'' . $ref . '\''; |
|
| 197 | - } else { |
|
| 198 | - $sql .= ' WHERE t.idType = ' . $id; |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - $resql = $this->db->query($sql); |
|
| 202 | - if ($resql) { |
|
| 203 | - $numrows = $this->db->num_rows($resql); |
|
| 204 | - if ($numrows) { |
|
| 205 | - $obj = $this->db->fetch_object($resql); |
|
| 206 | - |
|
| 207 | - $this->id = $obj->idType; |
|
| 194 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; |
|
| 195 | + if (null !== $ref) { |
|
| 196 | + $sql .= ' WHERE t.ref = ' . '\'' . $ref . '\''; |
|
| 197 | + } else { |
|
| 198 | + $sql .= ' WHERE t.idType = ' . $id; |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + $resql = $this->db->query($sql); |
|
| 202 | + if ($resql) { |
|
| 203 | + $numrows = $this->db->num_rows($resql); |
|
| 204 | + if ($numrows) { |
|
| 205 | + $obj = $this->db->fetch_object($resql); |
|
| 206 | + |
|
| 207 | + $this->id = $obj->idType; |
|
| 208 | 208 | |
| 209 | - $this->idType = $obj->idType; |
|
| 210 | - $this->numero = $obj->numero; |
|
| 211 | - $this->nom = $obj->nom; |
|
| 212 | - $this->fkService = $obj->fkService; |
|
| 213 | - $this->active = $obj->active; |
|
| 209 | + $this->idType = $obj->idType; |
|
| 210 | + $this->numero = $obj->numero; |
|
| 211 | + $this->nom = $obj->nom; |
|
| 212 | + $this->fkService = $obj->fkService; |
|
| 213 | + $this->active = $obj->active; |
|
| 214 | 214 | |
| 215 | - if($this->fkService){ |
|
| 215 | + if($this->fkService){ |
|
| 216 | 216 | $this->service = new Product($this->db); |
| 217 | 217 | $this->service->fetch($this->fkService); |
| 218 | 218 | } |
| 219 | - } |
|
| 220 | - $this->db->free($resql); |
|
| 221 | - |
|
| 222 | - if ($numrows) { |
|
| 223 | - return 1; |
|
| 224 | - } else { |
|
| 225 | - return 0; |
|
| 226 | - } |
|
| 227 | - } else { |
|
| 228 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 229 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 230 | - |
|
| 231 | - return - 1; |
|
| 232 | - } |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Load object in memory from the database |
|
| 237 | - * |
|
| 238 | - * @param string $sortorder Sort Order |
|
| 239 | - * @param string $sortfield Sort field |
|
| 240 | - * @param int $limit offset limit |
|
| 241 | - * @param int $offset offset limit |
|
| 242 | - * @param array $filter filter array |
|
| 243 | - * @param string $filtermode filter mode (AND or OR) |
|
| 244 | - * |
|
| 245 | - * @return int <0 if KO, >0 if OK |
|
| 246 | - */ |
|
| 247 | - public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') |
|
| 248 | - { |
|
| 249 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 250 | - |
|
| 251 | - $sql = 'SELECT'; |
|
| 252 | - $sql .= " t.idType,"; |
|
| 253 | - $sql .= " t.numero,"; |
|
| 254 | - $sql .= " t.nom,"; |
|
| 255 | - $sql .= " t.fkService,"; |
|
| 256 | - $sql .= " t.active"; |
|
| 219 | + } |
|
| 220 | + $this->db->free($resql); |
|
| 221 | + |
|
| 222 | + if ($numrows) { |
|
| 223 | + return 1; |
|
| 224 | + } else { |
|
| 225 | + return 0; |
|
| 226 | + } |
|
| 227 | + } else { |
|
| 228 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 229 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 230 | + |
|
| 231 | + return - 1; |
|
| 232 | + } |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Load object in memory from the database |
|
| 237 | + * |
|
| 238 | + * @param string $sortorder Sort Order |
|
| 239 | + * @param string $sortfield Sort field |
|
| 240 | + * @param int $limit offset limit |
|
| 241 | + * @param int $offset offset limit |
|
| 242 | + * @param array $filter filter array |
|
| 243 | + * @param string $filtermode filter mode (AND or OR) |
|
| 244 | + * |
|
| 245 | + * @return int <0 if KO, >0 if OK |
|
| 246 | + */ |
|
| 247 | + public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') |
|
| 248 | + { |
|
| 249 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 250 | + |
|
| 251 | + $sql = 'SELECT'; |
|
| 252 | + $sql .= " t.idType,"; |
|
| 253 | + $sql .= " t.numero,"; |
|
| 254 | + $sql .= " t.nom,"; |
|
| 255 | + $sql .= " t.fkService,"; |
|
| 256 | + $sql .= " t.active"; |
|
| 257 | 257 | |
| 258 | 258 | |
| 259 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; |
|
| 259 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; |
|
| 260 | 260 | |
| 261 | - // Manage filter |
|
| 262 | - $sqlwhere = array(); |
|
| 261 | + // Manage filter |
|
| 262 | + $sqlwhere = array(); |
|
| 263 | 263 | |
| 264 | - foreach ($filter as $key => $value) { |
|
| 265 | - if(is_string($value)){ |
|
| 264 | + foreach ($filter as $key => $value) { |
|
| 265 | + if(is_string($value)){ |
|
| 266 | 266 | $sqlwhere [] = $key . ' LIKE \'%' . $this->db->escape($value) . '%\''; |
| 267 | 267 | continue; |
| 268 | 268 | } |
@@ -273,237 +273,237 @@ discard block |
||
| 273 | 273 | } |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - if (count($sqlwhere) > 0) { |
|
| 277 | - $sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); |
|
| 278 | - } |
|
| 276 | + if (count($sqlwhere) > 0) { |
|
| 277 | + $sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); |
|
| 278 | + } |
|
| 279 | 279 | |
| 280 | - if (!empty($sortfield)) { |
|
| 281 | - $sql .= $this->db->order($sortfield,$sortorder); |
|
| 282 | - } |
|
| 283 | - if (!empty($limit)) { |
|
| 284 | - $sql .= ' ' . $this->db->plimit($limit + 1, $offset); |
|
| 285 | - } |
|
| 286 | - $this->lines = array(); |
|
| 287 | - |
|
| 288 | - $resql = $this->db->query($sql); |
|
| 289 | - if ($resql) { |
|
| 290 | - $num = $this->db->num_rows($resql); |
|
| 291 | - |
|
| 292 | - while ($obj = $this->db->fetch_object($resql)) { |
|
| 293 | - $line = new BbctypesLine(); |
|
| 294 | - |
|
| 295 | - $line->id = $obj->idType; |
|
| 296 | - $line->idType = $obj->idType; |
|
| 297 | - $line->numero = $obj->numero; |
|
| 298 | - $line->nom = $obj->nom; |
|
| 299 | - $line->fkService = $obj->fkService; |
|
| 300 | - $line->active = $obj->active; |
|
| 301 | - |
|
| 302 | - $this->lines[$line->id] = $line; |
|
| 303 | - } |
|
| 304 | - $this->db->free($resql); |
|
| 305 | - |
|
| 306 | - return $num; |
|
| 307 | - } else { |
|
| 308 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 309 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 310 | - |
|
| 311 | - return - 1; |
|
| 312 | - } |
|
| 313 | - } |
|
| 314 | - |
|
| 315 | - /** |
|
| 316 | - * Update object into database |
|
| 317 | - * |
|
| 318 | - * @param User $user User that modifies |
|
| 319 | - * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 320 | - * |
|
| 321 | - * @return int <0 if KO, >0 if OK |
|
| 322 | - */ |
|
| 323 | - public function update(User $user, $notrigger = false) |
|
| 324 | - { |
|
| 325 | - $error = 0; |
|
| 326 | - |
|
| 327 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 328 | - |
|
| 329 | - // Clean parameters |
|
| 280 | + if (!empty($sortfield)) { |
|
| 281 | + $sql .= $this->db->order($sortfield,$sortorder); |
|
| 282 | + } |
|
| 283 | + if (!empty($limit)) { |
|
| 284 | + $sql .= ' ' . $this->db->plimit($limit + 1, $offset); |
|
| 285 | + } |
|
| 286 | + $this->lines = array(); |
|
| 287 | + |
|
| 288 | + $resql = $this->db->query($sql); |
|
| 289 | + if ($resql) { |
|
| 290 | + $num = $this->db->num_rows($resql); |
|
| 291 | + |
|
| 292 | + while ($obj = $this->db->fetch_object($resql)) { |
|
| 293 | + $line = new BbctypesLine(); |
|
| 294 | + |
|
| 295 | + $line->id = $obj->idType; |
|
| 296 | + $line->idType = $obj->idType; |
|
| 297 | + $line->numero = $obj->numero; |
|
| 298 | + $line->nom = $obj->nom; |
|
| 299 | + $line->fkService = $obj->fkService; |
|
| 300 | + $line->active = $obj->active; |
|
| 301 | + |
|
| 302 | + $this->lines[$line->id] = $line; |
|
| 303 | + } |
|
| 304 | + $this->db->free($resql); |
|
| 305 | + |
|
| 306 | + return $num; |
|
| 307 | + } else { |
|
| 308 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 309 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 310 | + |
|
| 311 | + return - 1; |
|
| 312 | + } |
|
| 313 | + } |
|
| 314 | + |
|
| 315 | + /** |
|
| 316 | + * Update object into database |
|
| 317 | + * |
|
| 318 | + * @param User $user User that modifies |
|
| 319 | + * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 320 | + * |
|
| 321 | + * @return int <0 if KO, >0 if OK |
|
| 322 | + */ |
|
| 323 | + public function update(User $user, $notrigger = false) |
|
| 324 | + { |
|
| 325 | + $error = 0; |
|
| 326 | + |
|
| 327 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 328 | + |
|
| 329 | + // Clean parameters |
|
| 330 | 330 | |
| 331 | - if (isset($this->idType)) { |
|
| 332 | - $this->idType = trim($this->idType); |
|
| 333 | - } |
|
| 334 | - if (isset($this->numero)) { |
|
| 335 | - $this->numero = trim($this->numero); |
|
| 336 | - } |
|
| 337 | - if (isset($this->nom)) { |
|
| 338 | - $this->nom = trim($this->nom); |
|
| 339 | - } |
|
| 340 | - if (isset($this->fkService)) { |
|
| 341 | - $this->fkService = trim($this->fkService); |
|
| 342 | - } |
|
| 343 | - if (isset($this->active)) { |
|
| 344 | - $this->active = trim($this->active); |
|
| 345 | - } |
|
| 331 | + if (isset($this->idType)) { |
|
| 332 | + $this->idType = trim($this->idType); |
|
| 333 | + } |
|
| 334 | + if (isset($this->numero)) { |
|
| 335 | + $this->numero = trim($this->numero); |
|
| 336 | + } |
|
| 337 | + if (isset($this->nom)) { |
|
| 338 | + $this->nom = trim($this->nom); |
|
| 339 | + } |
|
| 340 | + if (isset($this->fkService)) { |
|
| 341 | + $this->fkService = trim($this->fkService); |
|
| 342 | + } |
|
| 343 | + if (isset($this->active)) { |
|
| 344 | + $this->active = trim($this->active); |
|
| 345 | + } |
|
| 346 | 346 | |
| 347 | 347 | |
| 348 | 348 | |
| 349 | - // Check parameters |
|
| 350 | - // Put here code to add a control on parameters values |
|
| 349 | + // Check parameters |
|
| 350 | + // Put here code to add a control on parameters values |
|
| 351 | 351 | |
| 352 | - // Update request |
|
| 353 | - $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; |
|
| 352 | + // Update request |
|
| 353 | + $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; |
|
| 354 | 354 | |
| 355 | - $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; |
|
| 356 | - $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; |
|
| 357 | - $sql .= ' fkService = '.(isset($this->fkService)?"'".$this->db->escape($this->fkService)."'":"null").','; |
|
| 358 | - $sql .= ' active = '.(isset($this->active)?$this->active:"null"); |
|
| 355 | + $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; |
|
| 356 | + $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; |
|
| 357 | + $sql .= ' fkService = '.(isset($this->fkService)?"'".$this->db->escape($this->fkService)."'":"null").','; |
|
| 358 | + $sql .= ' active = '.(isset($this->active)?$this->active:"null"); |
|
| 359 | 359 | |
| 360 | 360 | |
| 361 | - $sql .= ' WHERE idType=' . $this->id; |
|
| 362 | - |
|
| 363 | - $this->db->begin(); |
|
| 364 | - |
|
| 365 | - $resql = $this->db->query($sql); |
|
| 366 | - if (!$resql) { |
|
| 367 | - $error ++; |
|
| 368 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 369 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 370 | - } |
|
| 371 | - |
|
| 372 | - if (!$error && !$notrigger) { |
|
| 373 | - // Uncomment this and change MYOBJECT to your own tag if you |
|
| 374 | - // want this action calls a trigger. |
|
| 375 | - |
|
| 376 | - //// Call triggers |
|
| 377 | - //$result=$this->call_trigger('MYOBJECT_MODIFY',$user); |
|
| 378 | - //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 379 | - //// End call triggers |
|
| 380 | - } |
|
| 381 | - |
|
| 382 | - // Commit or rollback |
|
| 383 | - if ($error) { |
|
| 384 | - $this->db->rollback(); |
|
| 385 | - |
|
| 386 | - return - 1 * $error; |
|
| 387 | - } else { |
|
| 388 | - $this->db->commit(); |
|
| 389 | - |
|
| 390 | - return 1; |
|
| 391 | - } |
|
| 392 | - } |
|
| 393 | - |
|
| 394 | - /** |
|
| 395 | - * Delete object in database |
|
| 396 | - * |
|
| 397 | - * @param User $user User that deletes |
|
| 398 | - * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 399 | - * |
|
| 400 | - * @return int <0 if KO, >0 if OK |
|
| 401 | - */ |
|
| 402 | - public function delete(User $user, $notrigger = false) |
|
| 403 | - { |
|
| 404 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 405 | - |
|
| 406 | - $error = 0; |
|
| 407 | - |
|
| 408 | - $this->db->begin(); |
|
| 409 | - |
|
| 410 | - if (!$error) { |
|
| 411 | - if (!$notrigger) { |
|
| 412 | - // Uncomment this and change MYOBJECT to your own tag if you |
|
| 413 | - // want this action calls a trigger. |
|
| 414 | - |
|
| 415 | - //// Call triggers |
|
| 416 | - //$result=$this->call_trigger('MYOBJECT_DELETE',$user); |
|
| 417 | - //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 418 | - //// End call triggers |
|
| 419 | - } |
|
| 420 | - } |
|
| 421 | - |
|
| 422 | - if (!$error) { |
|
| 423 | - $sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element; |
|
| 424 | - $sql .= ' WHERE idType=' . $this->id; |
|
| 425 | - |
|
| 426 | - $resql = $this->db->query($sql); |
|
| 427 | - if (!$resql) { |
|
| 428 | - $error ++; |
|
| 429 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 430 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 431 | - } |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - // Commit or rollback |
|
| 435 | - if ($error) { |
|
| 436 | - $this->db->rollback(); |
|
| 437 | - |
|
| 438 | - return - 1 * $error; |
|
| 439 | - } else { |
|
| 440 | - $this->db->commit(); |
|
| 441 | - |
|
| 442 | - return 1; |
|
| 443 | - } |
|
| 444 | - } |
|
| 445 | - |
|
| 446 | - /** |
|
| 447 | - * Load an object from its id and create a new one in database |
|
| 448 | - * |
|
| 449 | - * @param int $fromid Id of object to clone |
|
| 450 | - * |
|
| 451 | - * @return int New id of clone |
|
| 452 | - */ |
|
| 453 | - public function createFromClone($fromid) |
|
| 454 | - { |
|
| 455 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 456 | - |
|
| 457 | - global $user; |
|
| 458 | - $error = 0; |
|
| 459 | - $object = new Bbctypes($this->db); |
|
| 460 | - |
|
| 461 | - $this->db->begin(); |
|
| 462 | - |
|
| 463 | - // Load source object |
|
| 464 | - $object->fetch($fromid); |
|
| 465 | - // Reset object |
|
| 466 | - $object->id = 0; |
|
| 467 | - |
|
| 468 | - // Clear fields |
|
| 469 | - // ... |
|
| 470 | - |
|
| 471 | - // Create clone |
|
| 472 | - $result = $object->create($user); |
|
| 473 | - |
|
| 474 | - // Other options |
|
| 475 | - if ($result < 0) { |
|
| 476 | - $error ++; |
|
| 477 | - $this->errors = $object->errors; |
|
| 478 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 479 | - } |
|
| 480 | - |
|
| 481 | - // End |
|
| 482 | - if (!$error) { |
|
| 483 | - $this->db->commit(); |
|
| 484 | - |
|
| 485 | - return $object->id; |
|
| 486 | - } else { |
|
| 487 | - $this->db->rollback(); |
|
| 488 | - |
|
| 489 | - return - 1; |
|
| 490 | - } |
|
| 491 | - } |
|
| 492 | - |
|
| 493 | - /** |
|
| 494 | - * Return a link to the user card (with optionaly the picto) |
|
| 495 | - * Use this->id,this->lastname, this->firstname |
|
| 496 | - * |
|
| 497 | - * @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto) |
|
| 498 | - * @param string $option On what the link point to |
|
| 361 | + $sql .= ' WHERE idType=' . $this->id; |
|
| 362 | + |
|
| 363 | + $this->db->begin(); |
|
| 364 | + |
|
| 365 | + $resql = $this->db->query($sql); |
|
| 366 | + if (!$resql) { |
|
| 367 | + $error ++; |
|
| 368 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 369 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 370 | + } |
|
| 371 | + |
|
| 372 | + if (!$error && !$notrigger) { |
|
| 373 | + // Uncomment this and change MYOBJECT to your own tag if you |
|
| 374 | + // want this action calls a trigger. |
|
| 375 | + |
|
| 376 | + //// Call triggers |
|
| 377 | + //$result=$this->call_trigger('MYOBJECT_MODIFY',$user); |
|
| 378 | + //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 379 | + //// End call triggers |
|
| 380 | + } |
|
| 381 | + |
|
| 382 | + // Commit or rollback |
|
| 383 | + if ($error) { |
|
| 384 | + $this->db->rollback(); |
|
| 385 | + |
|
| 386 | + return - 1 * $error; |
|
| 387 | + } else { |
|
| 388 | + $this->db->commit(); |
|
| 389 | + |
|
| 390 | + return 1; |
|
| 391 | + } |
|
| 392 | + } |
|
| 393 | + |
|
| 394 | + /** |
|
| 395 | + * Delete object in database |
|
| 396 | + * |
|
| 397 | + * @param User $user User that deletes |
|
| 398 | + * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 399 | + * |
|
| 400 | + * @return int <0 if KO, >0 if OK |
|
| 401 | + */ |
|
| 402 | + public function delete(User $user, $notrigger = false) |
|
| 403 | + { |
|
| 404 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 405 | + |
|
| 406 | + $error = 0; |
|
| 407 | + |
|
| 408 | + $this->db->begin(); |
|
| 409 | + |
|
| 410 | + if (!$error) { |
|
| 411 | + if (!$notrigger) { |
|
| 412 | + // Uncomment this and change MYOBJECT to your own tag if you |
|
| 413 | + // want this action calls a trigger. |
|
| 414 | + |
|
| 415 | + //// Call triggers |
|
| 416 | + //$result=$this->call_trigger('MYOBJECT_DELETE',$user); |
|
| 417 | + //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 418 | + //// End call triggers |
|
| 419 | + } |
|
| 420 | + } |
|
| 421 | + |
|
| 422 | + if (!$error) { |
|
| 423 | + $sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element; |
|
| 424 | + $sql .= ' WHERE idType=' . $this->id; |
|
| 425 | + |
|
| 426 | + $resql = $this->db->query($sql); |
|
| 427 | + if (!$resql) { |
|
| 428 | + $error ++; |
|
| 429 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 430 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 431 | + } |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + // Commit or rollback |
|
| 435 | + if ($error) { |
|
| 436 | + $this->db->rollback(); |
|
| 437 | + |
|
| 438 | + return - 1 * $error; |
|
| 439 | + } else { |
|
| 440 | + $this->db->commit(); |
|
| 441 | + |
|
| 442 | + return 1; |
|
| 443 | + } |
|
| 444 | + } |
|
| 445 | + |
|
| 446 | + /** |
|
| 447 | + * Load an object from its id and create a new one in database |
|
| 448 | + * |
|
| 449 | + * @param int $fromid Id of object to clone |
|
| 450 | + * |
|
| 451 | + * @return int New id of clone |
|
| 452 | + */ |
|
| 453 | + public function createFromClone($fromid) |
|
| 454 | + { |
|
| 455 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 456 | + |
|
| 457 | + global $user; |
|
| 458 | + $error = 0; |
|
| 459 | + $object = new Bbctypes($this->db); |
|
| 460 | + |
|
| 461 | + $this->db->begin(); |
|
| 462 | + |
|
| 463 | + // Load source object |
|
| 464 | + $object->fetch($fromid); |
|
| 465 | + // Reset object |
|
| 466 | + $object->id = 0; |
|
| 467 | + |
|
| 468 | + // Clear fields |
|
| 469 | + // ... |
|
| 470 | + |
|
| 471 | + // Create clone |
|
| 472 | + $result = $object->create($user); |
|
| 473 | + |
|
| 474 | + // Other options |
|
| 475 | + if ($result < 0) { |
|
| 476 | + $error ++; |
|
| 477 | + $this->errors = $object->errors; |
|
| 478 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 479 | + } |
|
| 480 | + |
|
| 481 | + // End |
|
| 482 | + if (!$error) { |
|
| 483 | + $this->db->commit(); |
|
| 484 | + |
|
| 485 | + return $object->id; |
|
| 486 | + } else { |
|
| 487 | + $this->db->rollback(); |
|
| 488 | + |
|
| 489 | + return - 1; |
|
| 490 | + } |
|
| 491 | + } |
|
| 492 | + |
|
| 493 | + /** |
|
| 494 | + * Return a link to the user card (with optionaly the picto) |
|
| 495 | + * Use this->id,this->lastname, this->firstname |
|
| 496 | + * |
|
| 497 | + * @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto) |
|
| 498 | + * @param string $option On what the link point to |
|
| 499 | 499 | * @param integer $notooltip 1=Disable tooltip |
| 500 | 500 | * @param int $maxlen Max length of visible user name |
| 501 | 501 | * @param string $morecss Add more css on link |
| 502 | - * @return string String with URL |
|
| 503 | - */ |
|
| 504 | - function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') |
|
| 505 | - { |
|
| 506 | - global $langs, $conf, $db; |
|
| 502 | + * @return string String with URL |
|
| 503 | + */ |
|
| 504 | + function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') |
|
| 505 | + { |
|
| 506 | + global $langs, $conf, $db; |
|
| 507 | 507 | global $dolibarr_main_authentication, $dolibarr_main_demo; |
| 508 | 508 | global $menumanager; |
| 509 | 509 | |
@@ -518,93 +518,93 @@ discard block |
||
| 518 | 518 | $link = '<a href="'.DOL_URL_ROOT.'/flightlog/card.php?id='.$this->id.'"'; |
| 519 | 519 | $link.= ($notooltip?'':' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss?' '.$morecss:'').'"'); |
| 520 | 520 | $link.= '>'; |
| 521 | - $linkend='</a>'; |
|
| 521 | + $linkend='</a>'; |
|
| 522 | 522 | |
| 523 | 523 | if ($withpicto) |
| 524 | 524 | { |
| 525 | 525 | $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); |
| 526 | 526 | if ($withpicto != 2) $result.=' '; |
| 527 | - } |
|
| 528 | - $result.= $link . $this->ref . $linkend; |
|
| 529 | - return $result; |
|
| 530 | - } |
|
| 527 | + } |
|
| 528 | + $result.= $link . $this->ref . $linkend; |
|
| 529 | + return $result; |
|
| 530 | + } |
|
| 531 | 531 | |
| 532 | - /** |
|
| 533 | - * Retourne le libelle du status d'un user (actif, inactif) |
|
| 534 | - * |
|
| 535 | - * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 536 | - * @return string Label of status |
|
| 537 | - */ |
|
| 538 | - function getLibStatut($mode=0) |
|
| 539 | - { |
|
| 540 | - return $this->LibStatut($this->status,$mode); |
|
| 541 | - } |
|
| 542 | - |
|
| 543 | - /** |
|
| 544 | - * Renvoi le libelle d'un status donne |
|
| 545 | - * |
|
| 546 | - * @param int $status Id status |
|
| 547 | - * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 548 | - * @return string Label of status |
|
| 549 | - */ |
|
| 550 | - function LibStatut($status,$mode=0) |
|
| 551 | - { |
|
| 552 | - global $langs; |
|
| 553 | - |
|
| 554 | - if ($mode == 0) |
|
| 555 | - { |
|
| 556 | - $prefix=''; |
|
| 557 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 558 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 559 | - } |
|
| 560 | - if ($mode == 1) |
|
| 561 | - { |
|
| 562 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 563 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 564 | - } |
|
| 565 | - if ($mode == 2) |
|
| 566 | - { |
|
| 567 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 568 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 569 | - } |
|
| 570 | - if ($mode == 3) |
|
| 571 | - { |
|
| 572 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 573 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 574 | - } |
|
| 575 | - if ($mode == 4) |
|
| 576 | - { |
|
| 577 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 578 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 579 | - } |
|
| 580 | - if ($mode == 5) |
|
| 581 | - { |
|
| 582 | - if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 583 | - if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 584 | - } |
|
| 585 | - |
|
| 586 | - return ""; |
|
| 587 | - } |
|
| 532 | + /** |
|
| 533 | + * Retourne le libelle du status d'un user (actif, inactif) |
|
| 534 | + * |
|
| 535 | + * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 536 | + * @return string Label of status |
|
| 537 | + */ |
|
| 538 | + function getLibStatut($mode=0) |
|
| 539 | + { |
|
| 540 | + return $this->LibStatut($this->status,$mode); |
|
| 541 | + } |
|
| 542 | + |
|
| 543 | + /** |
|
| 544 | + * Renvoi le libelle d'un status donne |
|
| 545 | + * |
|
| 546 | + * @param int $status Id status |
|
| 547 | + * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 548 | + * @return string Label of status |
|
| 549 | + */ |
|
| 550 | + function LibStatut($status,$mode=0) |
|
| 551 | + { |
|
| 552 | + global $langs; |
|
| 553 | + |
|
| 554 | + if ($mode == 0) |
|
| 555 | + { |
|
| 556 | + $prefix=''; |
|
| 557 | + if ($status == 1) return $langs->trans('Enabled'); |
|
| 558 | + if ($status == 0) return $langs->trans('Disabled'); |
|
| 559 | + } |
|
| 560 | + if ($mode == 1) |
|
| 561 | + { |
|
| 562 | + if ($status == 1) return $langs->trans('Enabled'); |
|
| 563 | + if ($status == 0) return $langs->trans('Disabled'); |
|
| 564 | + } |
|
| 565 | + if ($mode == 2) |
|
| 566 | + { |
|
| 567 | + if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 568 | + if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 569 | + } |
|
| 570 | + if ($mode == 3) |
|
| 571 | + { |
|
| 572 | + if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 573 | + if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 574 | + } |
|
| 575 | + if ($mode == 4) |
|
| 576 | + { |
|
| 577 | + if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 578 | + if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 579 | + } |
|
| 580 | + if ($mode == 5) |
|
| 581 | + { |
|
| 582 | + if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 583 | + if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 584 | + } |
|
| 585 | + |
|
| 586 | + return ""; |
|
| 587 | + } |
|
| 588 | 588 | |
| 589 | 589 | |
| 590 | - /** |
|
| 591 | - * Initialise object with example values |
|
| 592 | - * Id must be 0 if object instance is a specimen |
|
| 593 | - * |
|
| 594 | - * @return void |
|
| 595 | - */ |
|
| 596 | - public function initAsSpecimen() |
|
| 597 | - { |
|
| 598 | - $this->id = 0; |
|
| 590 | + /** |
|
| 591 | + * Initialise object with example values |
|
| 592 | + * Id must be 0 if object instance is a specimen |
|
| 593 | + * |
|
| 594 | + * @return void |
|
| 595 | + */ |
|
| 596 | + public function initAsSpecimen() |
|
| 597 | + { |
|
| 598 | + $this->id = 0; |
|
| 599 | 599 | |
| 600 | - $this->idType = ''; |
|
| 601 | - $this->numero = ''; |
|
| 602 | - $this->nom = ''; |
|
| 603 | - $this->fkService = null; |
|
| 604 | - $this->active = ''; |
|
| 600 | + $this->idType = ''; |
|
| 601 | + $this->numero = ''; |
|
| 602 | + $this->nom = ''; |
|
| 603 | + $this->fkService = null; |
|
| 604 | + $this->active = ''; |
|
| 605 | 605 | |
| 606 | 606 | |
| 607 | - } |
|
| 607 | + } |
|
| 608 | 608 | |
| 609 | 609 | /** |
| 610 | 610 | * @return boolean |
@@ -637,14 +637,14 @@ discard block |
||
| 637 | 637 | */ |
| 638 | 638 | class BbctypesLine |
| 639 | 639 | { |
| 640 | - /** |
|
| 641 | - * @var int ID |
|
| 642 | - */ |
|
| 643 | - public $id; |
|
| 644 | - |
|
| 645 | - public $idType; |
|
| 646 | - public $numero; |
|
| 647 | - public $nom; |
|
| 648 | - public $fkService; |
|
| 649 | - public $active; |
|
| 640 | + /** |
|
| 641 | + * @var int ID |
|
| 642 | + */ |
|
| 643 | + public $id; |
|
| 644 | + |
|
| 645 | + public $idType; |
|
| 646 | + public $numero; |
|
| 647 | + public $nom; |
|
| 648 | + public $fkService; |
|
| 649 | + public $active; |
|
| 650 | 650 | } |
@@ -119,18 +119,18 @@ discard block |
||
| 119 | 119 | // Insert request |
| 120 | 120 | $sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; |
| 121 | 121 | |
| 122 | - $sql.= 'numero,'; |
|
| 123 | - $sql.= 'nom,'; |
|
| 124 | - $sql.= 'fkService,'; |
|
| 125 | - $sql.= 'active'; |
|
| 122 | + $sql .= 'numero,'; |
|
| 123 | + $sql .= 'nom,'; |
|
| 124 | + $sql .= 'fkService,'; |
|
| 125 | + $sql .= 'active'; |
|
| 126 | 126 | |
| 127 | 127 | |
| 128 | 128 | $sql .= ') VALUES ('; |
| 129 | 129 | |
| 130 | - $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; |
|
| 131 | - $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; |
|
| 132 | - $sql .= ' '.(! isset($this->fkService)?'NULL':"'".$this->db->escape($this->fkService)."'").','; |
|
| 133 | - $sql .= ' '.(! isset($this->active)?'NULL':$this->active); |
|
| 130 | + $sql .= ' ' . (!isset($this->numero) ? 'NULL' : $this->numero) . ','; |
|
| 131 | + $sql .= ' ' . (!isset($this->nom) ? 'NULL' : "'" . $this->db->escape($this->nom) . "'") . ','; |
|
| 132 | + $sql .= ' ' . (!isset($this->fkService) ? 'NULL' : "'" . $this->db->escape($this->fkService) . "'") . ','; |
|
| 133 | + $sql .= ' ' . (!isset($this->active) ? 'NULL' : $this->active); |
|
| 134 | 134 | |
| 135 | 135 | |
| 136 | 136 | $sql .= ')'; |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | $resql = $this->db->query($sql); |
| 141 | 141 | if (!$resql) { |
| 142 | - $error ++; |
|
| 142 | + $error++; |
|
| 143 | 143 | $this->errors[] = 'Error ' . $this->db->lasterror(); |
| 144 | 144 | dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
| 145 | 145 | } |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | if ($error) { |
| 163 | 163 | $this->db->rollback(); |
| 164 | 164 | |
| 165 | - return - 1 * $error; |
|
| 165 | + return -1 * $error; |
|
| 166 | 166 | } else { |
| 167 | 167 | $this->db->commit(); |
| 168 | 168 | |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | $this->fkService = $obj->fkService; |
| 213 | 213 | $this->active = $obj->active; |
| 214 | 214 | |
| 215 | - if($this->fkService){ |
|
| 215 | + if ($this->fkService) { |
|
| 216 | 216 | $this->service = new Product($this->db); |
| 217 | 217 | $this->service->fetch($this->fkService); |
| 218 | 218 | } |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | $this->errors[] = 'Error ' . $this->db->lasterror(); |
| 229 | 229 | dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
| 230 | 230 | |
| 231 | - return - 1; |
|
| 231 | + return -1; |
|
| 232 | 232 | } |
| 233 | 233 | } |
| 234 | 234 | |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | * |
| 245 | 245 | * @return int <0 if KO, >0 if OK |
| 246 | 246 | */ |
| 247 | - public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') |
|
| 247 | + public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, array $filter = array(), $filtermode = 'AND') |
|
| 248 | 248 | { |
| 249 | 249 | dol_syslog(__METHOD__, LOG_DEBUG); |
| 250 | 250 | |
@@ -256,32 +256,32 @@ discard block |
||
| 256 | 256 | $sql .= " t.active"; |
| 257 | 257 | |
| 258 | 258 | |
| 259 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; |
|
| 259 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; |
|
| 260 | 260 | |
| 261 | 261 | // Manage filter |
| 262 | 262 | $sqlwhere = array(); |
| 263 | 263 | |
| 264 | 264 | foreach ($filter as $key => $value) { |
| 265 | - if(is_string($value)){ |
|
| 265 | + if (is_string($value)) { |
|
| 266 | 266 | $sqlwhere [] = $key . ' LIKE \'%' . $this->db->escape($value) . '%\''; |
| 267 | 267 | continue; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - if(is_int($value)){ |
|
| 271 | - $sqlwhere [] = $key . ' = ' .(int)$value; |
|
| 270 | + if (is_int($value)) { |
|
| 271 | + $sqlwhere [] = $key . ' = ' . (int) $value; |
|
| 272 | 272 | continue; |
| 273 | 273 | } |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | if (count($sqlwhere) > 0) { |
| 277 | - $sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); |
|
| 277 | + $sql .= ' WHERE ' . implode(' ' . $filtermode . ' ', $sqlwhere); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | if (!empty($sortfield)) { |
| 281 | - $sql .= $this->db->order($sortfield,$sortorder); |
|
| 281 | + $sql .= $this->db->order($sortfield, $sortorder); |
|
| 282 | 282 | } |
| 283 | 283 | if (!empty($limit)) { |
| 284 | - $sql .= ' ' . $this->db->plimit($limit + 1, $offset); |
|
| 284 | + $sql .= ' ' . $this->db->plimit($limit + 1, $offset); |
|
| 285 | 285 | } |
| 286 | 286 | $this->lines = array(); |
| 287 | 287 | |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | $this->errors[] = 'Error ' . $this->db->lasterror(); |
| 309 | 309 | dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
| 310 | 310 | |
| 311 | - return - 1; |
|
| 311 | + return -1; |
|
| 312 | 312 | } |
| 313 | 313 | } |
| 314 | 314 | |
@@ -352,10 +352,10 @@ discard block |
||
| 352 | 352 | // Update request |
| 353 | 353 | $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; |
| 354 | 354 | |
| 355 | - $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; |
|
| 356 | - $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; |
|
| 357 | - $sql .= ' fkService = '.(isset($this->fkService)?"'".$this->db->escape($this->fkService)."'":"null").','; |
|
| 358 | - $sql .= ' active = '.(isset($this->active)?$this->active:"null"); |
|
| 355 | + $sql .= ' numero = ' . (isset($this->numero) ? $this->numero : "null") . ','; |
|
| 356 | + $sql .= ' nom = ' . (isset($this->nom) ? "'" . $this->db->escape($this->nom) . "'" : "null") . ','; |
|
| 357 | + $sql .= ' fkService = ' . (isset($this->fkService) ? "'" . $this->db->escape($this->fkService) . "'" : "null") . ','; |
|
| 358 | + $sql .= ' active = ' . (isset($this->active) ? $this->active : "null"); |
|
| 359 | 359 | |
| 360 | 360 | |
| 361 | 361 | $sql .= ' WHERE idType=' . $this->id; |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | |
| 365 | 365 | $resql = $this->db->query($sql); |
| 366 | 366 | if (!$resql) { |
| 367 | - $error ++; |
|
| 367 | + $error++; |
|
| 368 | 368 | $this->errors[] = 'Error ' . $this->db->lasterror(); |
| 369 | 369 | dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
| 370 | 370 | } |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | if ($error) { |
| 384 | 384 | $this->db->rollback(); |
| 385 | 385 | |
| 386 | - return - 1 * $error; |
|
| 386 | + return -1 * $error; |
|
| 387 | 387 | } else { |
| 388 | 388 | $this->db->commit(); |
| 389 | 389 | |
@@ -425,7 +425,7 @@ discard block |
||
| 425 | 425 | |
| 426 | 426 | $resql = $this->db->query($sql); |
| 427 | 427 | if (!$resql) { |
| 428 | - $error ++; |
|
| 428 | + $error++; |
|
| 429 | 429 | $this->errors[] = 'Error ' . $this->db->lasterror(); |
| 430 | 430 | dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
| 431 | 431 | } |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | if ($error) { |
| 436 | 436 | $this->db->rollback(); |
| 437 | 437 | |
| 438 | - return - 1 * $error; |
|
| 438 | + return -1 * $error; |
|
| 439 | 439 | } else { |
| 440 | 440 | $this->db->commit(); |
| 441 | 441 | |
@@ -473,7 +473,7 @@ discard block |
||
| 473 | 473 | |
| 474 | 474 | // Other options |
| 475 | 475 | if ($result < 0) { |
| 476 | - $error ++; |
|
| 476 | + $error++; |
|
| 477 | 477 | $this->errors = $object->errors; |
| 478 | 478 | dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
| 479 | 479 | } |
@@ -486,7 +486,7 @@ discard block |
||
| 486 | 486 | } else { |
| 487 | 487 | $this->db->rollback(); |
| 488 | 488 | |
| 489 | - return - 1; |
|
| 489 | + return -1; |
|
| 490 | 490 | } |
| 491 | 491 | } |
| 492 | 492 | |
@@ -501,7 +501,7 @@ discard block |
||
| 501 | 501 | * @param string $morecss Add more css on link |
| 502 | 502 | * @return string String with URL |
| 503 | 503 | */ |
| 504 | - function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') |
|
| 504 | + function getNomUrl($withpicto = 0, $option = '', $notooltip = 0, $maxlen = 24, $morecss = '') |
|
| 505 | 505 | { |
| 506 | 506 | global $langs, $conf, $db; |
| 507 | 507 | global $dolibarr_main_authentication, $dolibarr_main_demo; |
@@ -512,20 +512,20 @@ discard block |
||
| 512 | 512 | $companylink = ''; |
| 513 | 513 | |
| 514 | 514 | $label = '<u>' . $langs->trans("MyModule") . '</u>'; |
| 515 | - $label.= '<div width="100%">'; |
|
| 516 | - $label.= '<b>' . $langs->trans('Ref') . ':</b> ' . $this->ref; |
|
| 515 | + $label .= '<div width="100%">'; |
|
| 516 | + $label .= '<b>' . $langs->trans('Ref') . ':</b> ' . $this->ref; |
|
| 517 | 517 | |
| 518 | - $link = '<a href="'.DOL_URL_ROOT.'/flightlog/card.php?id='.$this->id.'"'; |
|
| 519 | - $link.= ($notooltip?'':' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss?' '.$morecss:'').'"'); |
|
| 520 | - $link.= '>'; |
|
| 521 | - $linkend='</a>'; |
|
| 518 | + $link = '<a href="' . DOL_URL_ROOT . '/flightlog/card.php?id=' . $this->id . '"'; |
|
| 519 | + $link .= ($notooltip ? '' : ' title="' . dol_escape_htmltag($label, 1) . '" class="classfortooltip' . ($morecss ? ' ' . $morecss : '') . '"'); |
|
| 520 | + $link .= '>'; |
|
| 521 | + $linkend = '</a>'; |
|
| 522 | 522 | |
| 523 | 523 | if ($withpicto) |
| 524 | 524 | { |
| 525 | - $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); |
|
| 526 | - if ($withpicto != 2) $result.=' '; |
|
| 525 | + $result .= ($link . img_object(($notooltip ? '' : $label), 'label', ($notooltip ? '' : 'class="classfortooltip"')) . $linkend); |
|
| 526 | + if ($withpicto != 2) $result .= ' '; |
|
| 527 | 527 | } |
| 528 | - $result.= $link . $this->ref . $linkend; |
|
| 528 | + $result .= $link . $this->ref . $linkend; |
|
| 529 | 529 | return $result; |
| 530 | 530 | } |
| 531 | 531 | |
@@ -535,9 +535,9 @@ discard block |
||
| 535 | 535 | * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
| 536 | 536 | * @return string Label of status |
| 537 | 537 | */ |
| 538 | - function getLibStatut($mode=0) |
|
| 538 | + function getLibStatut($mode = 0) |
|
| 539 | 539 | { |
| 540 | - return $this->LibStatut($this->status,$mode); |
|
| 540 | + return $this->LibStatut($this->status, $mode); |
|
| 541 | 541 | } |
| 542 | 542 | |
| 543 | 543 | /** |
@@ -547,13 +547,13 @@ discard block |
||
| 547 | 547 | * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
| 548 | 548 | * @return string Label of status |
| 549 | 549 | */ |
| 550 | - function LibStatut($status,$mode=0) |
|
| 550 | + function LibStatut($status, $mode = 0) |
|
| 551 | 551 | { |
| 552 | 552 | global $langs; |
| 553 | 553 | |
| 554 | 554 | if ($mode == 0) |
| 555 | 555 | { |
| 556 | - $prefix=''; |
|
| 556 | + $prefix = ''; |
|
| 557 | 557 | if ($status == 1) return $langs->trans('Enabled'); |
| 558 | 558 | if ($status == 0) return $langs->trans('Disabled'); |
| 559 | 559 | } |
@@ -564,23 +564,23 @@ discard block |
||
| 564 | 564 | } |
| 565 | 565 | if ($mode == 2) |
| 566 | 566 | { |
| 567 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 568 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 567 | + if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4') . ' ' . $langs->trans('Enabled'); |
|
| 568 | + if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5') . ' ' . $langs->trans('Disabled'); |
|
| 569 | 569 | } |
| 570 | 570 | if ($mode == 3) |
| 571 | 571 | { |
| 572 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 573 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 572 | + if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4'); |
|
| 573 | + if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5'); |
|
| 574 | 574 | } |
| 575 | 575 | if ($mode == 4) |
| 576 | 576 | { |
| 577 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 578 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 577 | + if ($status == 1) return img_picto($langs->trans('Enabled'), 'statut4') . ' ' . $langs->trans('Enabled'); |
|
| 578 | + if ($status == 0) return img_picto($langs->trans('Disabled'), 'statut5') . ' ' . $langs->trans('Disabled'); |
|
| 579 | 579 | } |
| 580 | 580 | if ($mode == 5) |
| 581 | 581 | { |
| 582 | - if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 583 | - if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 582 | + if ($status == 1) return $langs->trans('Enabled') . ' ' . img_picto($langs->trans('Enabled'), 'statut4'); |
|
| 583 | + if ($status == 0) return $langs->trans('Disabled') . ' ' . img_picto($langs->trans('Disabled'), 'statut5'); |
|
| 584 | 584 | } |
| 585 | 585 | |
| 586 | 586 | return ""; |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | */ |
| 612 | 612 | public function isPaxRequired() |
| 613 | 613 | { |
| 614 | - switch((int)$this->idType){ |
|
| 614 | + switch ((int) $this->idType) { |
|
| 615 | 615 | case 1: |
| 616 | 616 | case 2: |
| 617 | 617 | return true; |
@@ -627,7 +627,7 @@ discard block |
||
| 627 | 627 | */ |
| 628 | 628 | public function isBillingRequired() |
| 629 | 629 | { |
| 630 | - return (int)$this->idType === 2; |
|
| 630 | + return (int) $this->idType === 2; |
|
| 631 | 631 | } |
| 632 | 632 | |
| 633 | 633 | } |
@@ -45,17 +45,17 @@ |
||
| 45 | 45 | * |
| 46 | 46 | * @return TabCollection |
| 47 | 47 | */ |
| 48 | - public function addTab(Tab $tab){ |
|
| 48 | + public function addTab(Tab $tab) { |
|
| 49 | 49 | $this->tabs[] = $tab; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * @return array |
| 54 | 54 | */ |
| 55 | - public function toArray(){ |
|
| 55 | + public function toArray() { |
|
| 56 | 56 | $tabAsArray = []; |
| 57 | 57 | |
| 58 | - foreach ($this->tabs as $tab){ |
|
| 58 | + foreach ($this->tabs as $tab) { |
|
| 59 | 59 | $tabAsArray[] = $tab->toArray(); |
| 60 | 60 | } |
| 61 | 61 | |