<?php
if (!$input_failure) {
global $connection;
- $sql_pquery = "select VOLS.NumVol as NumVol, VilleD, DateD, VilleA, DateA, Classe, round(CoutVol*CoeffPrix, 2) as Prix, NumAv
- from VOLS, DEFCLASSES
- where DEFCLASSES.NumVol = VOLS.NumVol and
- DateD >= ? and VilleD = ? and DateA <= ? and VilleA = ?
+ $sql_pquery = "select VOLS.NumVol as NumVol, VilleD, DateD, VilleA, DateA, DEFCLASSES.Classe, round(CoutVol*CoeffPrix, 2) as Prix, CapAv
+ from VOLS join DEFCLASSES on DEFCLASSES.NumVol = VOLS.NumVol
+ join AVIONS on AVIONS.NumAv = VOLS.NumAv
+ where DateD >= ? and VilleD = ? and DateA <= ? and VilleA = ?
order by DateD, NumVol, Prix";
$connection->prepare_query($sql_pquery);
$connection->prepared_query_bind_param("ssss", array($form_departure_date, $form_departure_city, $form_arrival_date, $form_arrival_city));
$connection->run_prepared_query();
$connection->get_pquery_result();
- $rows = $connection->get_result_array();
+ $fligths = $connection->get_result_array();
$connection->close_prepared_query();
- //FIXME: Use NumAv to see if a flight is fully booked.
- //var_dump($rows);
- if (empty($rows)) {
+ //var_dump($fligths);
+ if (empty($fligths)) {
echo "Aucun vol ne correspond aux critères de recherche. <br>";
} else {
if ($action === "return_flight" && isset($_SESSION['return_flight_nb_place'])) {
echo " <th>Prix d'une place</th>\n";
echo " <th>Réserver</th>\n";
echo " </tr>\n";
- foreach ($rows as $row) {
+ foreach ($fligths as $fligth) {
+ $sql_pquery = "select sum(NbPlaces) from RESERVATIONS where NumVol = ?";
+ $connection->prepare_query($sql_pquery);
+ $connection->prepared_query_bind_param("s", array($fligth['NumVol']));
+ $connection->run_prepared_query();
+ $connection->get_pquery_result();
+ $rows = $connection->get_result_array();
+ $connection->close_prepared_query();
+ $booked_places = $rows[0][0];
+ if (is_null($booked_places)) {
+ $booked_places = 0;
+ }
+ if (isset($fligth['CapAv']) && isset($booked_places)) {
+ $free_places = $fligth['CapAv'] - $booked_places;
+ } else {
+ $free_places = "Inconnu";
+ }
echo " <tr>\n";
- echo " <td>" . $row['NumVol'] . "</td>\n";
- echo " <td>" . $row['VilleD'] . "</td>\n";
- echo " <td>" . $row['DateD'] . "</td>\n";
- echo " <td>" . $row['VilleA'] . "</td>\n";
- echo " <td>" . $row['DateA'] . "</td>\n";
- echo " <td>" . $row['Classe'] . "</td>\n";
- echo " <td>" . $row['Prix'] . "€</td>\n";
+ echo " <td>" . $fligth['NumVol'] . "</td>\n";
+ echo " <td>" . $fligth['VilleD'] . "</td>\n";
+ echo " <td>" . $fligth['DateD'] . "</td>\n";
+ echo " <td>" . $fligth['VilleA'] . "</td>\n";
+ echo " <td>" . $fligth['DateA'] . "</td>\n";
+ echo " <td>" . $fligth['Classe'] . "</td>\n";
+ echo " <td>" . $fligth['Prix'] . "€</td>\n";
echo " <td>
+ Places libres : " . $free_places . "
<form action=\"index.php\" id=\"booking\" method=\"post\">
<input type=\"hidden\" name=\"form\" value=\"booking\" />
- <input type=\"hidden\" name=\"flight_id\" value=\"" . $row['NumVol'] . "\" />
- <input type=\"hidden\" name=\"class_name\" value=\"" . $row['Classe'] . "\" />
- <input type=\"hidden\" name=\"place_price\" value=\"" . $row['Prix'] . "\" />
+ <input type=\"hidden\" name=\"flight_id\" value=\"" . $fligth['NumVol'] . "\" />
+ <input type=\"hidden\" name=\"class_name\" value=\"" . $fligth['Classe'] . "\" />
+ <input type=\"hidden\" name=\"place_price\" value=\"" . $fligth['Prix'] . "\" />
<label> Place(s) : </label>
<input type=\"number\" name=\"nb_place\" min=\"1\" max=\"9\" value=\"" . $nb_places . "\" required/>\n";
- if (!($action === "return_flight")) {
+ if ($action !== "return_flight") {
echo " <label> Vol retour : </label>\n";
echo " <input type=\"checkbox\" name=\"return_flight\" checked/>\n";
}
- echo " <input type=\"submit\" value=\"Réserver\">\n";
+ if ($free_places !== 0 || $free_places === "Inconnu") {
+ echo " <input type=\"submit\" value=\"Réserver\">\n";
+ }
echo " </form>
</td>\n";
echo " </tr>\n";