@@ -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 | |
@@ -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 ""; |
@@ -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 | |
@@ -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>'; |
@@ -613,9 +613,12 @@ |
||
| 613 | 613 | |
| 614 | 614 | <?php if ($year >= $currentYear || !$t1->service || !$t2->service || !$t3->service || !$t4->service || !$t5->service || !$t6->service || !$t7->service) : ?> |
| 615 | 615 | <a class="butActionRefused" href="#">Générer</a> |
| 616 | - <?php else: ?> |
|
| 616 | + <?php else { |
|
| 617 | + : ?> |
|
| 617 | 618 | <button class="butAction" type="submit">Générer</button> |
| 618 | - <?php endif; ?> |
|
| 619 | + <?php endif; |
|
| 620 | +} |
|
| 621 | +?> |
|
| 619 | 622 | |
| 620 | 623 | </form> |
| 621 | 624 | |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | $adherent = new Adherent($db); |
| 129 | 129 | $adherent->fetch($expenseNoteUser->fk_member); |
| 130 | 130 | |
| 131 | - $addBonus = (int)$additionalBonus[$currentMissionUserId]; |
|
| 131 | + $addBonus = (int) $additionalBonus[$currentMissionUserId]; |
|
| 132 | 132 | if ($addBonus < 0) { |
| 133 | 133 | dol_htmloutput_mesg("Facture ignorée " . $adherent->getFullName($langs), '', 'warning'); |
| 134 | 134 | continue; |
@@ -350,7 +350,7 @@ discard block |
||
| 350 | 350 | $object->insert_discount($discountid); |
| 351 | 351 | |
| 352 | 352 | //Instructeur / examinateur |
| 353 | - if($value['orga_T6']['count'] > 0){ |
|
| 353 | + if ($value['orga_T6']['count'] > 0) { |
|
| 354 | 354 | $pu_ht = price2num($value['orga_T6']['count'] * 50, 'MU'); |
| 355 | 355 | $desc = $year . " - Vols dont vous êtes instructeur/examinateur - (" . $value['orga_T6']['count'] . " * 50)"; |
| 356 | 356 | |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | } |
| 360 | 360 | |
| 361 | 361 | //Additional bonus |
| 362 | - if ((int)$addBonus > 0) { |
|
| 362 | + if ((int) $addBonus > 0) { |
|
| 363 | 363 | |
| 364 | 364 | $pu_ht = price2num($addBonus, 'MU'); |
| 365 | 365 | |