Fiche de dispo->done AND début de la selection des gardes pour le chef
This commit is contained in:
parent
5d06dc1486
commit
22149c3f1f
@ -13,7 +13,7 @@ class PdoBD
|
|||||||
private static $serveur = 'mysql:host=localhost';
|
private static $serveur = 'mysql:host=localhost';
|
||||||
private static $bdd = 'dbname=sdis29';
|
private static $bdd = 'dbname=sdis29';
|
||||||
private static $user = 'root';
|
private static $user = 'root';
|
||||||
private static $mdp = '';
|
private static $mdp = 'root';
|
||||||
private static $monPdo;
|
private static $monPdo;
|
||||||
private static $monPdoBD = null;
|
private static $monPdoBD = null;
|
||||||
|
|
||||||
@ -109,11 +109,11 @@ class PdoBD
|
|||||||
afficherErreurSQL("Probleme lors de la mise à jour de l'activité dans la base de données.", $existedTranche, PdoBD::$monPdo->errorInfo());
|
afficherErreurSQL("Probleme lors de la mise à jour de l'activité dans la base de données.", $existedTranche, PdoBD::$monPdo->errorInfo());
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
if (count($rs->fetch()) !== 2) {
|
if ($rs->fetch() === false) {
|
||||||
$req = 'INSERT INTO activite (aCis, aPompier, aDateGarde, aTranche, aDisponibilite, aGarde)
|
$req = 'INSERT INTO activite (aCis, aPompier, aDateGarde, aTranche, aDisponibilite, aGarde)
|
||||||
VALUES (' . $cis . ',
|
VALUES (' . $cis . ',
|
||||||
' . $idUser . ',
|
' . $idUser . ',
|
||||||
' . $jour . ',
|
"' . $jour . '",
|
||||||
' . $tranche . ',
|
' . $tranche . ',
|
||||||
' . $newDispo . ', 0);';
|
' . $newDispo . ', 0);';
|
||||||
} else {
|
} else {
|
||||||
@ -261,10 +261,10 @@ class PdoBD
|
|||||||
'g2' => 0,
|
'g2' => 0,
|
||||||
'g3' => 0,
|
'g3' => 0,
|
||||||
'g4' => 0,
|
'g4' => 0,
|
||||||
'c1' => 'gray',
|
'c1' => 'red',
|
||||||
'c2' => 'gray',
|
'c2' => 'red',
|
||||||
'c3' => 'gray',
|
'c3' => 'red',
|
||||||
'c4' => 'gray'
|
'c4' => 'red'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -293,10 +293,10 @@ class PdoBD
|
|||||||
'g2' => 0,
|
'g2' => 0,
|
||||||
'g3' => 0,
|
'g3' => 0,
|
||||||
'g4' => 0,
|
'g4' => 0,
|
||||||
'c1' => 'gray',
|
'c1' => 'red',
|
||||||
'c2' => 'gray',
|
'c2' => 'red',
|
||||||
'c3' => 'gray',
|
'c3' => 'red',
|
||||||
'c4' => 'gray'
|
'c4' => 'red'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -281,17 +281,17 @@ $(document).on('click', '.select-dispo', function () {
|
|||||||
|
|
||||||
dateDispo = $(this).attr('id').split('/')[0]
|
dateDispo = $(this).attr('id').split('/')[0]
|
||||||
tranche = $(this).attr('id').split('/')[1]
|
tranche = $(this).attr('id').split('/')[1]
|
||||||
dispo = 1;
|
dispo = 0;
|
||||||
|
|
||||||
if ($(this).css('background-color') == "rgb(255, 0, 0)") { //rgb(255, 0, 0) = red
|
if ($(this).css('background-color') == "rgb(255, 0, 0)") { //rgb(255, 0, 0) = red
|
||||||
$(this).css('background-color', 'green');
|
$(this).css('background-color', 'green');
|
||||||
dispo = 2;
|
dispo = 1;
|
||||||
} else if ($(this).css('background-color') == 'rgb(0, 128, 0)') { //rgb(0, 128, 0) = green
|
} else if ($(this).css('background-color') == 'rgb(0, 128, 0)') { //rgb(0, 128, 0) = green
|
||||||
$(this).css('background-color', 'yellow');
|
$(this).css('background-color', 'yellow');
|
||||||
dispo = 3;
|
dispo = 2;
|
||||||
} else {
|
} else {
|
||||||
$(this).css('background-color', 'red');
|
$(this).css('background-color', 'red');
|
||||||
dispo = 1;
|
dispo = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
var tableauDeDonnees = {
|
var tableauDeDonnees = {
|
||||||
@ -310,3 +310,18 @@ $(document).on('click', '.select-dispo', function () {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gere l'ajout des gardes
|
||||||
|
*/
|
||||||
|
$(document).on('click', '.click-garde', function () {
|
||||||
|
//console.log($(this).css('background-color'))
|
||||||
|
console.log($(this).html);
|
||||||
|
if ($(this).html() == 'X') {
|
||||||
|
$(this).html() = "";
|
||||||
|
} else if ($(this).html() == ""){
|
||||||
|
$(this).html() = "X";
|
||||||
|
} else {
|
||||||
|
$(this).html() = "X";
|
||||||
|
}
|
||||||
|
})
|
3
requeteUtile.txt
Normal file
3
requeteUtile.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Garde de michel Rouat a tel date
|
||||||
|
|
||||||
|
SELECT * FROM `activite` WHERE aCis = 2901 AND aPompier = 1 AND aDateGarde = "2023-09-22";
|
@ -583,7 +583,7 @@ table.listeLegere td {
|
|||||||
padding: 1px;
|
padding: 1px;
|
||||||
margin: 1px;
|
margin: 1px;
|
||||||
border-spacing: 2px;
|
border-spacing: 2px;
|
||||||
border-color: gray;
|
border-color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tableau td.semaine {
|
.tableau td.semaine {
|
||||||
|
@ -11,14 +11,16 @@
|
|||||||
</head>
|
</head>
|
||||||
<?php
|
<?php
|
||||||
//version du code : le 18 septembre 2023 -------------------------------------
|
//version du code : le 18 septembre 2023 -------------------------------------
|
||||||
|
$formulaire = '';
|
||||||
|
$champ = '';
|
||||||
if (isset($_REQUEST['zFormulaire'])) {
|
if (isset($_REQUEST['zFormulaire'])) {
|
||||||
$formulaire=$_REQUEST['zFormulaire'];
|
$formulaire = $_REQUEST['zFormulaire'];
|
||||||
}
|
}
|
||||||
if (isset($_REQUEST['zChamp'])) {
|
if (isset($_REQUEST['zChamp'])) {
|
||||||
$champ = $_REQUEST['zChamp'];
|
$champ = $_REQUEST['zChamp'];
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<body onload="donner_focus('<?= $formulaire."','".$champ;?>');">
|
<body onload="donner_focus('<?= $formulaire . ',' . $champ;?>');">
|
||||||
<div id="page">
|
<div id="page">
|
||||||
<div id="entete">
|
<div id="entete">
|
||||||
<img src="./images/logo.png" id="logo" alt="SDIS29" title="SDIS 29" />
|
<img src="./images/logo.png" id="logo" alt="SDIS29" title="SDIS 29" />
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
<!-- affichage de la feuille de gardes / Derniere modification le 18/09/2023 à 16h50 par Pascal Blain -->
|
<!-- affichage de la feuille de gardes / Derniere modification le 18/09/2023 à 16h50 par Pascal Blain -->
|
||||||
<div style='display: block;' class='unOnglet' id='contenuOnglet1'>
|
<div style='display: block;' class='unOnglet' id='contenuOnglet1'>
|
||||||
<fieldset><legend>Feuille de gardes</legend>
|
<fieldset>
|
||||||
|
<legend>Feuille de gardes</legend>
|
||||||
<form name="frmDispos" action="index.php?choixTraitement=gardes&action=voir" method="post">
|
<form name="frmDispos" action="index.php?choixTraitement=gardes&action=voir" method="post">
|
||||||
<input type="hidden" name="zSemaine" value='<?php echo $semaine;?>'>
|
<input type="hidden" name="zSemaine" value='<?php echo $semaine; ?>'>
|
||||||
<input type="hidden" name="zAnnee" value='<?php echo $annee;?>'>
|
<input type="hidden" name="zAnnee" value='<?php echo $annee; ?>'>
|
||||||
<input type="hidden" name="ztLaDate" value="">
|
<input type="hidden" name="ztLaDate" value="">
|
||||||
<input type="hidden" name="ztLaTranche" value="">
|
<input type="hidden" name="ztLaTranche" value="">
|
||||||
<input type="hidden" name="ztExGarde" value="">
|
<input type="hidden" name="ztExGarde" value="">
|
||||||
@ -12,53 +13,52 @@
|
|||||||
<table id="tableau" class="tableau">
|
<table id="tableau" class="tableau">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th><input id="sPrecedente" name="gauche" title="semaine précédente" src="images/gauche.gif" onclick="autreSemaine('<?php echo date('W',strtotime("-7 days",$premierJour))."', '".date('Y',strtotime("-7 days",$premierJour))?>')" onmouseover="document.gauche.src='images/gauche_.gif'" onmouseout="document.gauche.src='images/gauche.gif'"type="image"></th>
|
<th><input id="sPrecedente" name="gauche" title="semaine précédente" src="images/gauche.gif"
|
||||||
|
onclick="autreSemaine('<?= date('W', strtotime("-7 days", $premierJour)) . "', '" . date('Y', strtotime("-7 days", $premierJour)) ?>')"
|
||||||
|
onmouseover="document.gauche.src='images/gauche_.gif'"
|
||||||
|
onmouseout="document.gauche.src='images/gauche.gif'" type="image"></th>
|
||||||
|
|
||||||
<th colspan="27"><b><big>Semaine <?php echo $semaine." : du lundi ".date('d/m/Y',$premierJour)." au dimanche ".date('d/m/Y',strtotime("6 days",$premierJour))."</big></b></th>";?>
|
<th colspan="27"><b><big>Semaine
|
||||||
|
<?= $semaine . " : du lundi " . date('d/m/Y', $premierJour) . " au dimanche " . date('d/m/Y', strtotime("6 days", $premierJour)) . "</big></b></th>"; ?>
|
||||||
|
|
||||||
<th><input id="sSuivante" name="droite" title="semaine suivante" src="images/droite.gif" onclick="autreSemaine('<?php echo date('W',strtotime("+7 day",$premierJour))."', '".date('Y',strtotime("+7 day",$premierJour));?>')" onmouseover="document.droite.src='images/droite_.gif'" onmouseout="document.droite.src='images/droite.gif'"type="image"></th>
|
<th><input id="sSuivante" name="droite" title="semaine suivante" src="images/droite.gif"
|
||||||
|
onclick="autreSemaine('<?= date('W', strtotime("+7 day", $premierJour)) . "', '" . date('Y', strtotime("+7 day", $premierJour)); ?>')"
|
||||||
|
onmouseover="document.droite.src='images/droite_.gif'"
|
||||||
|
onmouseout="document.droite.src='images/droite.gif'" type="image"></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr><th> </th>
|
<tr>
|
||||||
|
<th> </th>
|
||||||
<?php
|
<?php
|
||||||
$nomJour = array('Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi','Dimanche');
|
$nomJour = array('Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi', 'Dimanche');
|
||||||
for($jour=0; $jour<= 6; $jour++)
|
|
||||||
{
|
for ($jour = 0; $jour <= 6; $jour++) {
|
||||||
echo ('<th colspan="4">'.$nomJour[$jour].' '.date('d/m',strtotime('+'.$jour.' day',$premierJour)).'</th>');
|
echo ('<th colspan="4">' . $nomJour[$jour] . ' ' . date('d/m', strtotime('+' . $jour . ' day', $premierJour)) . '</th>');
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "</tr>".PHP_EOL." <tr><th width='100'>Volontaires</th>";
|
echo "</tr>" . PHP_EOL . " <tr><th width='100'>Volontaires</th>";
|
||||||
for($jour=0; $jour<= 6; $jour++)
|
|
||||||
{
|
for ($jour = 0; $jour <= 6; $jour++) {
|
||||||
foreach ($lesTranches as $uneTranche)
|
foreach ($lesTranches as $uneTranche) {
|
||||||
{echo '<th class="semaine" style="text-align : center;">'.$uneTranche["pIndice"].'</th>';}
|
echo '<th class="semaine" style="text-align : center;">' . $uneTranche["pIndice"] . '</th>';
|
||||||
}
|
}
|
||||||
echo PHP_EOL." </tr>";
|
|
||||||
|
|
||||||
foreach ($lesPompiers as $unPompier)
|
|
||||||
{
|
|
||||||
echo "<tr><td><small><small>".$unPompier['pNom']." ".$unPompier['pPrenom']."</small></small></td>";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
echo "</tr>".PHP_EOL." ";
|
|
||||||
}
|
}
|
||||||
?>
|
echo PHP_EOL . " </tr>";
|
||||||
|
|
||||||
|
foreach ($lesPompiers as $unPompier) {
|
||||||
|
echo "
|
||||||
|
<tr>
|
||||||
|
<td><small><small>" . $unPompier['pNom'] . " " . $unPompier['pPrenom'] . "</small></small></td>";
|
||||||
|
|
||||||
|
for ($jour = 0; $jour <= 6; $jour++) {
|
||||||
|
for ($tranche = 0; $tranche <= 3; $tranche++) {
|
||||||
|
echo '<td style="border: 1px solid grey; cursor:pointer;" class="click-garde"></td>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
echo ("</tr>" . PHP_EOL . " ");
|
||||||
|
// TODO POUR AFFICHER LES GARDES
|
||||||
|
}
|
||||||
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user