Compare commits
6 Commits
v0.0.2.a-p
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
7d09299dcb | ||
|
6f165b76f2 | ||
|
062e417a9c | ||
|
591b6a0d41 | ||
|
443c0225ae | ||
|
aa0701334e |
@ -3,8 +3,6 @@ session_start();
|
|||||||
|
|
||||||
include (__DIR__ . '/../include/class.pdo.php');
|
include (__DIR__ . '/../include/class.pdo.php');
|
||||||
|
|
||||||
var_dump($_POST);
|
|
||||||
|
|
||||||
$pdo = PdoBD::getPdoBD();
|
$pdo = PdoBD::getPdoBD();
|
||||||
|
|
||||||
if (isset($_REQUEST['option']) && $_REQUEST['option'] == 'garde') {
|
if (isset($_REQUEST['option']) && $_REQUEST['option'] == 'garde') {
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
$pdo
|
|
@ -9,44 +9,72 @@
|
|||||||
// Auteur : pascal-blain@wanadoo.fr '
|
// Auteur : pascal-blain@wanadoo.fr '
|
||||||
//*****************************************'
|
//*****************************************'
|
||||||
$action = $_REQUEST['action'];
|
$action = $_REQUEST['action'];
|
||||||
switch($action)
|
switch ($action) {
|
||||||
{
|
case 'voir': {
|
||||||
case 'voir':
|
include("vues/v_entete.php");
|
||||||
{
|
|
||||||
include("vues/v_entete.php");
|
|
||||||
if(!isset($_REQUEST['zSemaine'])){$_REQUEST['zSemaine'] = date('W');}
|
|
||||||
$semaine = $_REQUEST['zSemaine'];
|
|
||||||
if(!isset($_REQUEST['zAnnee'])){$_REQUEST['zAnnee'] = date('Y');}
|
|
||||||
$annee = $_REQUEST['zAnnee'];
|
|
||||||
$premierJour = strtotime("+$semaine weeks",mktime(0,0,0,1,1,$annee));
|
|
||||||
if (date('w',$premierJour) != 1){$premierJour = strtotime("last monday",$premierJour);}
|
|
||||||
$lesTranches = $pdo->getParametre("tranche");
|
|
||||||
$lesTypesDispos = $pdo->getParametre("dispo");
|
|
||||||
$titre="CIS"; //Centre d'incendie et de secours :";
|
|
||||||
$lesCasernes = $pdo->getLesCasernes($_SESSION["adr1"]);
|
|
||||||
include("vues/v_choixCaserne.php");
|
|
||||||
$lesPompiers = $pdo->getLesPompiers($choix);
|
|
||||||
$lesInterventions=$pdo->getLesInterventions($choix);
|
|
||||||
$intervention=1;
|
|
||||||
$lesParticipants= $pdo->getLesParticipants($choix, $intervention);
|
|
||||||
include("vues/v_Intervention.php");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
//-----------------------------------------
|
|
||||||
case 'majGarde':
|
|
||||||
{
|
|
||||||
$pdo->majGarde($_REQUEST["ztLaDate"], $_REQUEST["ztLaTranche"], $_REQUEST["ztExGarde"], $_REQUEST["ztPompier"]);
|
|
||||||
header ('location: index.php?choixTraitement=gardes&action=voir&zSemaine='.$_REQUEST["zSemaine"].'&zAnnee='.$_REQUEST["zAnnee"]);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
//-----------------------------------------
|
include("vues/v_Intervention.php");
|
||||||
default :
|
break;
|
||||||
{
|
}
|
||||||
echo 'erreur d\'aiguillage !'.$action;
|
case 'nouvelle': {
|
||||||
|
include("vues/v_entete.php");
|
||||||
|
$lesCasernes = $pdo->getLesCasernes($_SESSION["adr1"]);
|
||||||
|
$lesMotifs = $pdo->motifIntervention();
|
||||||
|
|
||||||
|
$tranche = $pdo->getCurrentTranche();
|
||||||
|
$date = date('Y-m-d');
|
||||||
|
|
||||||
|
$lesPompiers = $pdo->getPompiersDispo($date, $tranche, 2904);
|
||||||
|
|
||||||
|
include("vues/v_nouvelleIntervention.php");
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'listePompier':
|
||||||
|
require_once ("../include/class.pdo.php");
|
||||||
|
|
||||||
|
$pdo = PdoBD::getPdoBD();
|
||||||
|
|
||||||
|
$tranche = $pdo->getCurrentTranche();
|
||||||
|
$date = date('Y-m-d');
|
||||||
|
|
||||||
|
$lesPompiers = $pdo->getPompiersDispo($date, $tranche, $_GET['cis']);
|
||||||
|
|
||||||
|
echo(json_encode($lesPompiers));
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
case 'nouvelleInter':
|
||||||
|
require_once ("../include/class.pdo.php");
|
||||||
|
|
||||||
|
$pdo = PdoBD::getPdoBD();
|
||||||
|
//var_dump($_REQUEST);
|
||||||
|
|
||||||
|
$listePompier = $_POST['listePompier'];
|
||||||
|
$data = $_POST['dataForm'];
|
||||||
|
|
||||||
|
$pdo->newIntervention(
|
||||||
|
intval($data['motif']),
|
||||||
|
intval($data['caserne']),
|
||||||
|
$data['adresse'],
|
||||||
|
$data['commentaire'],
|
||||||
|
$listePompier
|
||||||
|
);
|
||||||
|
//var_dump($listePompier);
|
||||||
|
|
||||||
|
break;
|
||||||
|
//-----------------------------------------
|
||||||
|
case 'majGarde': {
|
||||||
|
$pdo->majGarde($_REQUEST["ztLaDate"], $_REQUEST["ztLaTranche"], $_REQUEST["ztExGarde"], $_REQUEST["ztPompier"]);
|
||||||
|
header('location: index.php?choixTraitement=gardes&action=voir&zSemaine=' . $_REQUEST["zSemaine"] . '&zAnnee=' . $_REQUEST["zAnnee"]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------
|
||||||
|
default: {
|
||||||
|
echo 'erreur d\'aiguillage !' . $action;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
table equipe:
|
table equipe:
|
||||||
|
@ -65,14 +65,13 @@ switch ($action) {
|
|||||||
break;
|
break;
|
||||||
case 'validerAjouter':
|
case 'validerAjouter':
|
||||||
case 'validerModifier': {
|
case 'validerModifier': {
|
||||||
var_dump($_REQUEST);
|
|
||||||
|
|
||||||
if (!isset($pdo)) {
|
if (!isset($pdo)) {
|
||||||
require_once ("../include/class.pdo.php");
|
require_once ("../include/class.pdo.php");
|
||||||
$pdo = PdoBD::getPdoBD();
|
$pdo = PdoBD::getPdoBD();
|
||||||
}
|
}
|
||||||
|
|
||||||
$pId = $_REQUEST['pId'];
|
$pId = isset($_REQUEST['pId']) ? $_REQUEST['pId'] : $pdo->getLastId($_REQUEST['zCis']);
|
||||||
$nom = addslashes($_REQUEST['ztNom']);
|
$nom = addslashes($_REQUEST['ztNom']);
|
||||||
$prenom = addslashes($_REQUEST['ztPrenom']);
|
$prenom = addslashes($_REQUEST['ztPrenom']);
|
||||||
$type = $_REQUEST['lstType'];
|
$type = $_REQUEST['lstType'];
|
||||||
@ -80,7 +79,8 @@ switch ($action) {
|
|||||||
$statut = $_REQUEST['lstStatut'];
|
$statut = $_REQUEST['lstStatut'];
|
||||||
$cis = $_REQUEST['zCis'];
|
$cis = $_REQUEST['zCis'];
|
||||||
$mail = $_REQUEST['ztMail'];
|
$mail = $_REQUEST['ztMail'];
|
||||||
$login = strtolower($_REQUEST['ztPrenom'][0]) . strtoupper($_REQUEST['ztNom']);
|
// $login = strtolower($_REQUEST['ztPrenom'][0]) . strtoupper($_REQUEST['ztNom']);
|
||||||
|
$login = $_REQUEST['ztLogin'];
|
||||||
$mdp = md5($login);
|
$mdp = md5($login);
|
||||||
//$mdp = md5($_REQUEST['ztMdp']);
|
//$mdp = md5($_REQUEST['ztMdp']);
|
||||||
// if ($_REQUEST['brMdp'] == 0 and $action === "validerModifier") {
|
// if ($_REQUEST['brMdp'] == 0 and $action === "validerModifier") {
|
||||||
@ -104,10 +104,19 @@ switch ($action) {
|
|||||||
}
|
}
|
||||||
$commentaire = addslashes($_REQUEST['ztObservation']);
|
$commentaire = addslashes($_REQUEST['ztObservation']);
|
||||||
|
|
||||||
if ($action === "validerAjouter") {
|
if (
|
||||||
$pdo->ajoutPompier($cis, $pId, $nom, $prenom, $statut, $mail, $login, $mdp, $grade, $type, $adresse, $cp, $ville, $tel, $commentaire);
|
$action === "validerAjouter"
|
||||||
|
&& $pdo->verifDataAjoutPompier($nom, $prenom, $tel, $mail, $login) === true
|
||||||
|
) {
|
||||||
|
//$pdo->ajoutPompier($cis, $pId, $nom, $prenom, $statut, $mail, $login, $mdp, $grade, $type, $adresse, $cp, $ville, $tel, $commentaire);
|
||||||
|
echo(json_encode(array("success"=> "Ajout effectuée")));
|
||||||
|
|
||||||
} elseif ($action === "validerModifier") {
|
} elseif ($action === "validerModifier") {
|
||||||
$pdo->majPompier($cis, $pId, $nom, $prenom, $statut, $mail, $login, $mdp, $grade, $type, $adresse, $cp, $ville, $tel, $commentaire);
|
$pdo->majPompier($cis, $pId, $nom, $prenom, $statut, $mail, $login, $mdp, $grade, $type, $adresse, $cp, $ville, $tel, $commentaire);
|
||||||
|
echo(json_encode(array("success"=> "Modification effectuée")));
|
||||||
|
|
||||||
|
} else {
|
||||||
|
echo(json_encode(array("error"=> "Merci de remplir tous les champs")));
|
||||||
}
|
}
|
||||||
//header('location: index.php?choixTraitement=pompiers&action=voir&lstPompiers=' . $valeur);
|
//header('location: index.php?choixTraitement=pompiers&action=voir&lstPompiers=' . $valeur);
|
||||||
break;
|
break;
|
||||||
|
@ -63,7 +63,7 @@ class PdoBD
|
|||||||
{
|
{
|
||||||
$req = "SELECT pCis, pId, pNom, pPrenom, pStatut
|
$req = "SELECT pCis, pId, pNom, pPrenom, pStatut
|
||||||
FROM pompier
|
FROM pompier
|
||||||
WHERE pCis=" . $cis . "
|
WHERE pCis = " . $cis . "
|
||||||
ORDER BY pNom;";
|
ORDER BY pNom;";
|
||||||
$rs = PdoBD::$monPdo->query($req);
|
$rs = PdoBD::$monPdo->query($req);
|
||||||
if ($rs === false) {
|
if ($rs === false) {
|
||||||
@ -79,10 +79,10 @@ class PdoBD
|
|||||||
public function getInfosPompier($login, $mdp)
|
public function getInfosPompier($login, $mdp)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
$req = "SELECT pCis, pId as id, pNom as nom, pPrenom as prenom, pStatut, pMail, pLogin, pMdp, pGrade, pAdresse, pCp, pVille, pBip, pCommentaire,
|
$req = "SELECT pCis, pId as id, pNom as nom, pPrenom as prenom, pStatut, pMail, pLogin, pMdp, pGrade, pAdresse, pCp, pVille, pBip, pCommentaire,
|
||||||
'la caserne' as cNom, 'adresse' as cAdresse, 'telephone' as cTel, 'le groupement' as cGroupement, 'le grade' as wGrade, 'le statut' as wStatut, 'le type' as wType
|
'la caserne' as cNom, 'adresse' as cAdresse, 'telephone' as cTel, 'le groupement' as cGroupement, 'le grade' as wGrade, 'le statut' as wStatut, 'le type' as wType
|
||||||
FROM pompier";
|
FROM pompier";
|
||||||
*/
|
*/
|
||||||
$req = "SELECT
|
$req = "SELECT
|
||||||
pCis,
|
pCis,
|
||||||
pId as id,
|
pId as id,
|
||||||
@ -102,7 +102,7 @@ class PdoBD
|
|||||||
INNER JOIN caserne ON pompier.pCis = caserne.cId
|
INNER JOIN caserne ON pompier.pCis = caserne.cId
|
||||||
INNER JOIN parametre AS a ON a.pType = 'typePer' AND pompier.pType = a.pIndice
|
INNER JOIN parametre AS a ON a.pType = 'typePer' AND pompier.pType = a.pIndice
|
||||||
INNER JOIN parametre AS b ON b.pType = 'grade' AND pompier.pGrade = b.pIndice
|
INNER JOIN parametre AS b ON b.pType = 'grade' AND pompier.pGrade = b.pIndice
|
||||||
INNER JOIN parametre AS c ON c.pType = 'statAgt' AND pompier.pStatut = c.pIndice;";
|
INNER JOIN parametre AS c ON c.pType = 'statAgt' AND pompier.pStatut = c.pIndice";
|
||||||
if ($login === "*") {
|
if ($login === "*") {
|
||||||
$req .= " WHERE pCis=" . $_SESSION['cis'] . " AND pId = $mdp";
|
$req .= " WHERE pCis=" . $_SESSION['cis'] . " AND pId = $mdp";
|
||||||
} else {
|
} else {
|
||||||
@ -125,7 +125,6 @@ class PdoBD
|
|||||||
$existedTranche = 'SELECT aDisponibilite FROM activite
|
$existedTranche = 'SELECT aDisponibilite FROM activite
|
||||||
WHERE aCis = ' . $cis . ' AND aDateGarde = "' . $jour . '" AND aTranche = ' . $tranche . ' AND aPompier = ' . $idUser . ';';
|
WHERE aCis = ' . $cis . ' AND aDateGarde = "' . $jour . '" AND aTranche = ' . $tranche . ' AND aPompier = ' . $idUser . ';';
|
||||||
$rs = PdoBD::$monPdo->query($existedTranche);
|
$rs = PdoBD::$monPdo->query($existedTranche);
|
||||||
var_dump($rs);
|
|
||||||
|
|
||||||
if ($rs === false) {
|
if ($rs === false) {
|
||||||
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());
|
||||||
@ -146,7 +145,6 @@ class PdoBD
|
|||||||
AND aDateGarde = "' . $jour . '"
|
AND aDateGarde = "' . $jour . '"
|
||||||
AND aTranche = ' . $tranche . ';';
|
AND aTranche = ' . $tranche . ';';
|
||||||
}
|
}
|
||||||
var_dump($req);
|
|
||||||
$rs = PdoBD::$monPdo->exec($req);
|
$rs = PdoBD::$monPdo->exec($req);
|
||||||
|
|
||||||
if ($rs === false) {
|
if ($rs === false) {
|
||||||
@ -195,8 +193,6 @@ class PdoBD
|
|||||||
pCommentaire ='$commentaire', pDateModif ='$dateUpdate'
|
pCommentaire ='$commentaire', pDateModif ='$dateUpdate'
|
||||||
WHERE pCis='$cis' AND pId = '$pId'
|
WHERE pCis='$cis' AND pId = '$pId'
|
||||||
;";
|
;";
|
||||||
var_dump($req);
|
|
||||||
die;
|
|
||||||
$rs = PdoBD::$monPdo->exec($req);
|
$rs = PdoBD::$monPdo->exec($req);
|
||||||
if ($rs === false) {
|
if ($rs === false) {
|
||||||
afficherErreurSQL("Probleme lors de la mise à jour du pompier dans la base de données.", $req, PdoBD::$monPdo->errorInfo());
|
afficherErreurSQL("Probleme lors de la mise à jour du pompier dans la base de données.", $req, PdoBD::$monPdo->errorInfo());
|
||||||
@ -220,12 +216,19 @@ class PdoBD
|
|||||||
/**
|
/**
|
||||||
* ajoute une ligne dans la table pompier
|
* ajoute une ligne dans la table pompier
|
||||||
*/
|
*/
|
||||||
public function ajoutPompier($cis, $valeur, $nom, $prenom, $statut, $mail, $login, $mdp, $grade, $type, $adresse, $cp, $ville, $tel, $commentaire)
|
public function ajoutPompier($cis, $id, $nom, $prenom, $statut, $mail, $login, $mdp, $grade, $type, $adresse, $cp, $ville, $tel, $commentaire)
|
||||||
{
|
{
|
||||||
$req = "INSERT INTO pompier
|
$req = "INSERT INTO pompier
|
||||||
(pCis,pId,pNom,pPrenom,pStatut,pMail,pLogin,pMdp,pGrade,pType, pAdresse,pCp,pVille,pBip,pCommentaire,pDateEnreg,pDateModif)
|
(pCis,pId,pNom,pPrenom,pStatut,pMail,pLogin,pMdp,pGrade,pType, pAdresse,pCp,pVille,pBip,pCommentaire, pNbGardes, pDateEnreg, pDateModif)
|
||||||
VALUES
|
VALUES
|
||||||
(
|
(" . $cis . ", " . $id . ",
|
||||||
|
'" . $nom . "', '" . $prenom . "',
|
||||||
|
" . $statut . ", '" . $mail . "',
|
||||||
|
'" . $login . "', '" . $mdp . "',
|
||||||
|
" . $grade . ", " . $type . ",
|
||||||
|
'" . $adresse . "', " . $cp . ",
|
||||||
|
'" . $ville . "', '" . $tel . "',
|
||||||
|
'" . $commentaire . "',0 ,CURRENT_DATE, CURRENT_DATE
|
||||||
);";
|
);";
|
||||||
$rs = PdoBD::$monPdo->exec($req);
|
$rs = PdoBD::$monPdo->exec($req);
|
||||||
if ($rs === false) {
|
if ($rs === false) {
|
||||||
@ -355,8 +358,8 @@ class PdoBD
|
|||||||
$lesDispos[$pompier][$laDate][$couleur] = $uneLigne['dCouleur'];
|
$lesDispos[$pompier][$laDate][$couleur] = $uneLigne['dCouleur'];
|
||||||
}
|
}
|
||||||
/* echo "<PRE>";
|
/* echo "<PRE>";
|
||||||
print_r($lesDispos);
|
print_r($lesDispos);
|
||||||
echo "</PRE>";*/
|
echo "</PRE>";*/
|
||||||
return $lesDispos;
|
return $lesDispos;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -540,6 +543,240 @@ class PdoBD
|
|||||||
return $lesLignes;
|
return $lesLignes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getLastId($pCis): int
|
||||||
|
{
|
||||||
|
$req = "SELECT MAX(pId) + 1 as id FROM pompier WHERE pCis =" . $pCis . ";";
|
||||||
|
$rs = PdoBD::$monPdo->query($req);
|
||||||
|
if ($rs === false) {
|
||||||
|
afficherErreurSQL("Erreur de lma requete pour l'id ajouter", $req, PdoBD::$monPdo->errorInfo());
|
||||||
|
}
|
||||||
|
$id = $rs->fetch();
|
||||||
|
return $id["id"];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function verifDataAjoutPompier(
|
||||||
|
string $nom,
|
||||||
|
string $prenom,
|
||||||
|
string $tel,
|
||||||
|
string $mail,
|
||||||
|
string $login
|
||||||
|
): bool {
|
||||||
|
|
||||||
|
if (empty($nom) || empty($prenom) || empty($tel) || empty($mail) || empty($login)) {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PARTIE INTERVENTION
|
||||||
|
*/
|
||||||
|
public function motifIntervention()
|
||||||
|
{
|
||||||
|
$req = "SELECT pIndice, pLibelle
|
||||||
|
FROM `parametre`
|
||||||
|
WHERE pType = 'cateInt'
|
||||||
|
ORDER BY pLibelle;";
|
||||||
|
$cat = PdoBD::$monPdo->query($req);
|
||||||
|
$cat = $cat->fetchAll();
|
||||||
|
|
||||||
|
//Valeur : nbUtilisation
|
||||||
|
//Plancher : Time
|
||||||
|
//Plafond: nbPompier estimé
|
||||||
|
$reqType = "SELECT pIndice, pLibelle, pValeur, pPlancher, pPlafond
|
||||||
|
FROM parametre
|
||||||
|
WHERE pType = 'typeInt'
|
||||||
|
ORDER BY pLibelle;";
|
||||||
|
$type = PdoBD::$monPdo->query($reqType);
|
||||||
|
$type = $type->fetchAll();
|
||||||
|
|
||||||
|
$response = [];
|
||||||
|
|
||||||
|
foreach ($cat as $uneCat) {
|
||||||
|
$table = [];
|
||||||
|
foreach ($type as $row) {
|
||||||
|
if (substr($row['pIndice'], -3, 1) === $uneCat['pIndice']) {
|
||||||
|
array_push($table, $row);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$response[$uneCat['pLibelle']] = $table;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPompiersDispo(string $date, int $tranche, int $caserne)
|
||||||
|
{
|
||||||
|
$req = "SELECT pompier.pId, pompier.pNom, pompier.pPrenom, g.pLibelle AS statut, 0 AS enIntervention, p.pLibelle, p.pValeur
|
||||||
|
FROM `pompier`
|
||||||
|
INNER JOIN activite ON pompier.pId = activite.aPompier
|
||||||
|
AND activite.aCis = pompier.pCis
|
||||||
|
INNER JOIN parametre p ON p.pType = 'dispo' AND p.pIndice = activite.aDisponibilite
|
||||||
|
INNER JOIN parametre g ON g.pType = 'grade' AND g.pIndice = pompier.pGrade
|
||||||
|
WHERE activite.aGarde = 1
|
||||||
|
AND pCis = :caserne
|
||||||
|
AND activite.aDateGarde = :date
|
||||||
|
AND activite.aTranche = :tranche
|
||||||
|
AND pompier.pId NOT IN(SELECT ePompier
|
||||||
|
FROM equipe
|
||||||
|
INNER JOIN intervention on intervention.iId = equipe.eIntervention AND intervention.iCis = equipe.eCis
|
||||||
|
WHERE intervention.iHeureFin is null
|
||||||
|
AND intervention.iDate = :date
|
||||||
|
AND intervention.iTranche = :tranche
|
||||||
|
AND intervention.iCis = :caserne
|
||||||
|
)
|
||||||
|
|
||||||
|
UNION
|
||||||
|
|
||||||
|
SELECT pompier.pId, pompier.pNom, pompier.pPrenom, g.pLibelle AS statut, 1 AS enIntervention, p.pLibelle, 'grey'
|
||||||
|
FROM equipe
|
||||||
|
INNER JOIN pompier on equipe.ePompier = pompier.pId
|
||||||
|
AND equipe.eCis = pompier.pCis
|
||||||
|
INNER JOIN intervention on intervention.iId = equipe.eIntervention
|
||||||
|
AND intervention.iCis = equipe.eCis
|
||||||
|
INNER JOIN activite on pompier.pId = activite.aPompier
|
||||||
|
AND activite.aCis = pompier.pCis
|
||||||
|
AND activite.aDateGarde = intervention.iDate
|
||||||
|
AND activite.aTranche = intervention.iTranche
|
||||||
|
INNER JOIN parametre p ON p.pType = 'dispo' AND p.pIndice = activite.aDisponibilite
|
||||||
|
INNER JOIN parametre g ON g.pType = 'grade' AND g.pIndice = pompier.pGrade
|
||||||
|
WHERE intervention.iHeureFin is null
|
||||||
|
AND intervention.iTranche = :tranche
|
||||||
|
AND intervention.iDate = :date
|
||||||
|
AND equipe.eCis = :caserne;";
|
||||||
|
|
||||||
|
$result = PdoBD::$monPdo->prepare($req);
|
||||||
|
$result->bindParam(':date', $date); // 2023-09-23
|
||||||
|
$result->bindParam(':tranche', $tranche); //2
|
||||||
|
$result->bindParam(':caserne', $caserne); //2924
|
||||||
|
|
||||||
|
$result->execute();
|
||||||
|
return $result->fetchAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCurrentTranche()
|
||||||
|
{
|
||||||
|
$req = "SELECT pIndice
|
||||||
|
FROM parametre
|
||||||
|
WHERE pType = 'tranche' AND :heure >= pPlancher AND :heure < pPlafond;";
|
||||||
|
|
||||||
|
$result = PdoBD::$monPdo->prepare($req);
|
||||||
|
$hour = date("H");
|
||||||
|
$result->bindParam(':heure', $hour);
|
||||||
|
$result->execute();
|
||||||
|
$result = $result->fetch();
|
||||||
|
|
||||||
|
return $result['pIndice'];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLastIdIntervention(int $cis)
|
||||||
|
{
|
||||||
|
$req = "SELECT iId
|
||||||
|
FROM `intervention`
|
||||||
|
WHERE iCis = :cis;";
|
||||||
|
|
||||||
|
$result = PdoBD::$monPdo->prepare($req);
|
||||||
|
$result->bindParam(':cis', $cis);
|
||||||
|
$result->execute();
|
||||||
|
$result = $result->fetch();
|
||||||
|
$id = isset($result['iId']) ? $result['iId'] : 0;
|
||||||
|
return $id;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Crée une nouvelle intervention
|
||||||
|
*/
|
||||||
|
public function newIntervention(
|
||||||
|
int $motif,
|
||||||
|
int $caserne,
|
||||||
|
string $adresse,
|
||||||
|
string $description,
|
||||||
|
array $pompier
|
||||||
|
) {
|
||||||
|
/**
|
||||||
|
* Nouvelle intervention
|
||||||
|
*/
|
||||||
|
$req = " INSERT INTO intervention
|
||||||
|
VALUES(:caserne, :id, :adresse, :description,
|
||||||
|
NOW(), :tranche, NOW(), NULL, :motif, :nbPompier);";
|
||||||
|
|
||||||
|
$result = PdoBD::$monPdo->prepare($req);
|
||||||
|
$result->bindParam(':caserne', $caserne);
|
||||||
|
$result->bindParam(':adresse', $adresse);
|
||||||
|
$result->bindParam(':description', $description);
|
||||||
|
$result->bindParam(':motif', $motif);
|
||||||
|
|
||||||
|
$nbPompier = count($pompier);
|
||||||
|
$result->bindParam(':nbPompier', $nbPompier);
|
||||||
|
|
||||||
|
$tranche = $this->getCurrentTranche();
|
||||||
|
$result->bindParam(':tranche', $tranche);
|
||||||
|
|
||||||
|
$idIntervention = $this->getLastIdIntervention($caserne) + 1;
|
||||||
|
$result->bindParam(':id', $idIntervention);
|
||||||
|
|
||||||
|
$result->execute();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nouvelle équipe
|
||||||
|
*/
|
||||||
|
foreach ($pompier as $value) {
|
||||||
|
var_dump($value);
|
||||||
|
foreach ($value as $key => $value) {
|
||||||
|
$req2 = "INSERT INTO equipe
|
||||||
|
VALUES (:caserne, :pompier, :intervention)";
|
||||||
|
$result2 = PdoBD::$monPdo->prepare($req2);
|
||||||
|
$result2->bindParam('caserne', $caserne);
|
||||||
|
$result2->bindParam('intervention', $idIntervention);
|
||||||
|
|
||||||
|
if ($value == 0) {
|
||||||
|
$result2->bindParam('pompier', $key);
|
||||||
|
|
||||||
|
$result2->execute();
|
||||||
|
} else {
|
||||||
|
$currentIntervention = "SELECT iId
|
||||||
|
FROM intervention
|
||||||
|
LEFT OUTER JOIN equipe on intervention.iId = equipe.eIntervention AND intervention.iCis = equipe.eCis
|
||||||
|
WHERE iHeureFin IS NULL AND equipe.ePompier = :pompier AND equipe.eCis = :caserne;";
|
||||||
|
$curentId = PdoBD::$monPdo->prepare($currentIntervention);
|
||||||
|
$curentId->bindParam('pompier', $key);
|
||||||
|
$curentId->bindParam('caserne', $caserne);
|
||||||
|
$curentId->execute();
|
||||||
|
$curentId = $curentId->fetch();
|
||||||
|
|
||||||
|
|
||||||
|
$reqSuprInter = "DELETE FROM equipe
|
||||||
|
WHERE eCis = :caserne AND ePompier = :pompier AND eIntervention = :intervention";
|
||||||
|
$suprInter = PdoBD::$monPdo->prepare($reqSuprInter);
|
||||||
|
$suprInter->bindParam('caserne', $caserne);
|
||||||
|
$suprInter->bindParam('pompier', $key);
|
||||||
|
$suprInter->bindParam('intervention', $currentId['iId']);
|
||||||
|
$suprInter->execute();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
SELECT pompier.*, 0 AS enIntervention, activite.aDisponibilite
|
||||||
|
FROM `pompier`
|
||||||
|
INNER JOIN activite ON pompier.pId = activite.aPompier AND activite.aCis = pompier.pCis
|
||||||
|
WHERE pCis = 2924 AND activite.aDateGarde = '2023-09-23' AND activite.aTranche = 2 AND activite.aGarde = 1
|
||||||
|
AND pompier.pId NOT IN(SELECT ePompier
|
||||||
|
FROM equipe
|
||||||
|
INNER JOIN intervention on intervention.iId = equipe.eIntervention AND intervention.iCis = equipe.eCis
|
||||||
|
WHERE intervention.iDate = '2023-09-23' AND intervention.iTranche = 2 AND intervention.iHeureFin is null)
|
||||||
|
|
||||||
|
UNION
|
||||||
|
|
||||||
|
SELECT pompier.*, 1 AS enIntervention, activite.aDisponibilite
|
||||||
|
FROM equipe
|
||||||
|
INNER JOIN pompier on equipe.ePompier = pompier.pId AND equipe.eCis = pompier.pCis
|
||||||
|
INNER JOIN activite on pompier.pId = activite.aPompier AND activite.aCis = pompier.pCis
|
||||||
|
INNER JOIN intervention on intervention.iId = equipe.eIntervention AND intervention.iCis = equipe.eCis
|
||||||
|
WHERE intervention.iDate = '2023-09-23' AND intervention.iTranche = 2 AND intervention.iHeureFin is null;
|
||||||
|
*/
|
||||||
?>
|
?>
|
@ -125,7 +125,9 @@ function estTableauEntiers($tabEntiers)
|
|||||||
$ok = true;
|
$ok = true;
|
||||||
foreach($tabEntiers as $unEntier)
|
foreach($tabEntiers as $unEntier)
|
||||||
{
|
{
|
||||||
if(!estEntierPositif($unEntier)){$ok=false;}
|
if(!estEntierPositif($unEntier)){
|
||||||
|
$ok=false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $ok;
|
return $ok;
|
||||||
}
|
}
|
||||||
|
113
include/gestionInterventions.js
Normal file
113
include/gestionInterventions.js
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
formulaire = $('.formulaire')
|
||||||
|
date = Date.now()
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
|
||||||
|
$('#motifInter').change(function (e) {
|
||||||
|
let nbPompier = $(this).find(":selected").attr('data-effectif');
|
||||||
|
$('#nbPompierCons').html("Nombre de pompiers conseillé: " + nbPompier);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$('#caserneInter').change(function () {
|
||||||
|
caserne = $(this).val();
|
||||||
|
//cis
|
||||||
|
$.ajax({
|
||||||
|
url: "./../controleurs/c_interventions.php?action=listePompier&cis=" + caserne,
|
||||||
|
method: "POST", // Méthode HTTP (GET, POST, etc.)
|
||||||
|
dataType: "json", // Type de données attendu
|
||||||
|
error: function (status, error) {
|
||||||
|
// Gérer les erreurs de la requête AJAX
|
||||||
|
console.error("Erreur lors de la requête AJAX :", status, error);
|
||||||
|
},
|
||||||
|
success: function (result) {
|
||||||
|
$('#pompierDispo').html(' ');
|
||||||
|
result.forEach(element => {
|
||||||
|
var ligne = '<div id='
|
||||||
|
+ element['pId']
|
||||||
|
+ ' class="' + element['pLibelle']
|
||||||
|
+ '" data-intervention="' + element['enIntervention']
|
||||||
|
+ '" style = "background-color: ' + element['pValeur'] + ';" draggable = "true" ondragstart = "dragstartHandler(event)" >'
|
||||||
|
+ element['pPrenom'] + ' ' + element['pNom']
|
||||||
|
+ ' (' + element['statut'] + ')'
|
||||||
|
+ '</div> ';
|
||||||
|
|
||||||
|
$('#pompierDispo').append(ligne)
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
function dragstartHandler(ev) {
|
||||||
|
// Add the target element's id to the data transfer object
|
||||||
|
ev.dataTransfer.setData("application/my-app", ev.target.id);
|
||||||
|
ev.dataTransfer.effectAllowed = "move";
|
||||||
|
}
|
||||||
|
function dragoverHandler(ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
ev.dataTransfer.dropEffect = "move";
|
||||||
|
}
|
||||||
|
function dropHandler(ev) {
|
||||||
|
ev.preventDefault();
|
||||||
|
// Get the id of the target and add the moved element to the target's DOM
|
||||||
|
const data = ev.dataTransfer.getData("application/my-app");
|
||||||
|
if (ev.target.id === "target" || ev.target.parentNode.id === "target") {
|
||||||
|
trgt = document.getElementById('target');
|
||||||
|
} else if (ev.target.id === "pompierDispo" || ev.target.parentNode.id === "pompierDispo") {
|
||||||
|
trgt = document.getElementById('pompierDispo');
|
||||||
|
}
|
||||||
|
trgt.appendChild(document.getElementById(data));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PREPARATION DE L'ENVOIE DU FORMULAIRE
|
||||||
|
*/
|
||||||
|
$(document).on('submit', '#formulaireInter', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
})
|
||||||
|
|
||||||
|
$(document).on('click', '#sendInter', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
//var data = $('#formulaireInter').serialize();
|
||||||
|
var data = {
|
||||||
|
motif: $('#formulaireInter select[name=motif]').val(),
|
||||||
|
adresse: $('#formulaireInter input[name=adresse]').val(),
|
||||||
|
caserne: $('#formulaireInter select[name=caserne]').val(),
|
||||||
|
commentaire: $('#formulaireInter textarea[name=commentaire]').val()
|
||||||
|
};
|
||||||
|
|
||||||
|
let listePompier = [];
|
||||||
|
$('.pompierIntervenant div').each(function(index){
|
||||||
|
num = $(this).attr('id');
|
||||||
|
dispo = $(this).attr('data-intervention');
|
||||||
|
|
||||||
|
var obj = {};
|
||||||
|
obj[num] = dispo
|
||||||
|
listePompier.push(obj)
|
||||||
|
})
|
||||||
|
|
||||||
|
var sendingData = {
|
||||||
|
"dataForm" : data,
|
||||||
|
"listePompier" : listePompier
|
||||||
|
};
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: "./../controleurs/c_interventions.php?action=nouvelleInter",
|
||||||
|
method: "POST", // Méthode HTTP (GET, POST, etc.)
|
||||||
|
data: sendingData,
|
||||||
|
dataType: "json", // Type de données attendu
|
||||||
|
error: function (status, error) {
|
||||||
|
// Gérer les erreurs de la requête AJAX
|
||||||
|
console.error("Erreur lors de la requête AJAX :", status, error);
|
||||||
|
},
|
||||||
|
success: function (result) {
|
||||||
|
//COMPLETE
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
})
|
@ -358,11 +358,17 @@ $(document).on('click', '.click-garde', function () {
|
|||||||
$(document).on('click', '.btn-modif', function (e) {
|
$(document).on('click', '.btn-modif', function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
if ($('.infoPompier').attr('disabled') == 'disabled') {
|
if ($(this).attr('id') == 'zModifChef'){ //si le bouton modifier est celui du chef ou nom
|
||||||
$('.infoPompier').attr('disabled', false);
|
element = $('.infoPompier-chef')
|
||||||
|
} else {
|
||||||
|
element = $('.infoPompier')
|
||||||
|
}
|
||||||
|
|
||||||
|
if (element.attr('disabled') == 'disabled') {
|
||||||
|
element.attr('disabled', false);
|
||||||
$('.btn-valid-modif').css('display', 'block');
|
$('.btn-valid-modif').css('display', 'block');
|
||||||
} else {
|
} else {
|
||||||
$('.infoPompier').attr('disabled', true);
|
element.attr('disabled', true);
|
||||||
$('.btn-valid-modif').css('display', 'none');
|
$('.btn-valid-modif').css('display', 'none');
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -385,7 +391,48 @@ $(document).on('click', '.btn-valid-modif', function (e) {
|
|||||||
console.error("Erreur lors de la requête AJAX :", status, error);
|
console.error("Erreur lors de la requête AJAX :", status, error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ajout d'un pompier
|
||||||
|
*/
|
||||||
|
$(document).on('submit', '.dataPompierAjout', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('#inputDisabled').attr('disabled', false);
|
||||||
|
|
||||||
|
data = $('.dataPompierAjout').serialize()
|
||||||
|
$('#inputDisabled').attr('disabled', true);
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: "/controleurs/c_pompiers.php?action=validerAjouter",
|
||||||
|
method: "POST", // Méthode HTTP (GET, POST, etc.)
|
||||||
|
dataType: "json", // Type de données attendu
|
||||||
|
data : data,
|
||||||
|
error: function(xhr, status, error) {
|
||||||
|
// Gérer les erreurs de la requête AJAX
|
||||||
|
console.error("Erreur lors de la requête AJAX :", status, error);
|
||||||
|
},
|
||||||
|
success: function(result) {
|
||||||
|
$('.dataPompierAjout').trigger("reset"); ;
|
||||||
|
$('.notif-ajout').html(result['success'])
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
$(document).on('click', '.btAnnulerAjout', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
window.location.href = "http://sdis29-1/index.php?choixTraitement=pompiers&action=voir&type=a";
|
||||||
|
})
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('#newName, #newUsername').change(function() {
|
||||||
|
newUserName = $('#newUsername').val()[0].toLowerCase();
|
||||||
|
if (newUserName == undefined) {
|
||||||
|
newUserName = '';
|
||||||
|
}
|
||||||
|
newName = $('#newName').val().toUpperCase();
|
||||||
|
|
||||||
|
$('#newLogin').val(newUserName+newName)
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
@ -17,7 +17,9 @@ $pdo = PdoBD::getPdoBD();
|
|||||||
$estConnecte = estConnecte();
|
$estConnecte = estConnecte();
|
||||||
|
|
||||||
// on vérifie que le pompier est authentifié
|
// on vérifie que le pompier est authentifié
|
||||||
if(!isset($_REQUEST['choixTraitement']) || !$estConnecte){$_REQUEST['choixTraitement'] = 'connexion';}
|
if(!isset($_REQUEST['choixTraitement']) || !$estConnecte){
|
||||||
|
$_REQUEST['choixTraitement'] = 'connexion';
|
||||||
|
}
|
||||||
|
|
||||||
// on analyse le cas d'utilisation en cours ...
|
// on analyse le cas d'utilisation en cours ...
|
||||||
$choixTraitement= $_REQUEST['choixTraitement'];
|
$choixTraitement= $_REQUEST['choixTraitement'];
|
||||||
@ -33,7 +35,5 @@ switch($choixTraitement)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
include("vues/v_pied.php") ;
|
|
||||||
|
|
||||||
var_dump($_SESSION);
|
include("vues/v_pied.php") ;
|
||||||
?>
|
|
||||||
|
@ -3,38 +3,40 @@
|
|||||||
#navigation {
|
#navigation {
|
||||||
position: relative;
|
position: relative;
|
||||||
float: right;
|
float: right;
|
||||||
top : -2.75em;
|
top: -2.75em;
|
||||||
right: 2em;
|
right: 2em;
|
||||||
padding: 0em;
|
padding: 0em;
|
||||||
color: rgb(0,85,227);
|
color: rgb(0, 85, 227);
|
||||||
}
|
|
||||||
#sommaire {
|
|
||||||
float: right;
|
|
||||||
margin-top : 20px;
|
|
||||||
margin-right: -20px;
|
|
||||||
padding: 0em;
|
|
||||||
color: rgb(0,85,227);
|
|
||||||
}
|
|
||||||
#sommaire ul {
|
|
||||||
padding:0;
|
|
||||||
margin:0;
|
|
||||||
list-style-type:none;
|
|
||||||
}
|
|
||||||
#sommaire li
|
|
||||||
{
|
|
||||||
vertical-align: middle;
|
|
||||||
margin-left:2px;
|
|
||||||
float:left; /*pour IE*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#sommaire ul li a
|
#sommaire {
|
||||||
{
|
float: right;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-right: -20px;
|
||||||
|
padding: 0em;
|
||||||
|
color: rgb(0, 85, 227);
|
||||||
|
}
|
||||||
|
|
||||||
|
#sommaire ul {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sommaire li {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
display:block;
|
margin-left: 2px;
|
||||||
float:left;
|
float: left;
|
||||||
width:80px;
|
/*pour IE*/
|
||||||
text-decoration:none;
|
}
|
||||||
text-align:center;
|
|
||||||
|
#sommaire ul li a {
|
||||||
|
vertical-align: middle;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
width: 80px;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
/*background-color:#6495ED;
|
/*background-color:#6495ED;
|
||||||
color:black;
|
color:black;
|
||||||
//padding:5px;
|
//padding:5px;
|
||||||
@ -42,216 +44,251 @@
|
|||||||
border-style:solid;
|
border-style:solid;
|
||||||
border-color:#DCDCDC #696969 #696969 #DCDCDC; /*pour avoir un effet "outset" avec IE */
|
border-color:#DCDCDC #696969 #696969 #DCDCDC; /*pour avoir un effet "outset" avec IE */
|
||||||
}
|
}
|
||||||
#sommaire ul li a:hover
|
|
||||||
{
|
#sommaire ul li a:hover {
|
||||||
color: purple; /*rgb(0,85,227);*/
|
color: #881600;
|
||||||
|
/*rgb(0,85,227);*/
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
/*background-color:#D3D3D3;
|
/*background-color:#D3D3D3;
|
||||||
border-color: #696969 #DCDCDC #DCDCDC #696969; */
|
border-color: #696969 #DCDCDC #DCDCDC #696969; */
|
||||||
}
|
}
|
||||||
|
|
||||||
#sommaire ul li ul {
|
#sommaire ul li ul {
|
||||||
display:none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sommaire ul li:hover ul {
|
#sommaire ul li:hover ul {
|
||||||
display:block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sommaire li:hover ul li {
|
#sommaire li:hover ul li {
|
||||||
float:none;
|
float: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sommaire li ul {
|
#sommaire li ul {
|
||||||
position:absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
#stats {
|
#stats {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 1em;
|
top: 1em;
|
||||||
left: 0.5em;
|
left: 0.5em;
|
||||||
background-color: #ffff00;
|
background-color: #ffff00;
|
||||||
font-size:0.75em;
|
font-size: 0.75em;
|
||||||
}
|
}
|
||||||
body{
|
|
||||||
background-color: #77AADD;
|
body {
|
||||||
|
background-color: white;
|
||||||
/* //background-image: url(imgs/FONDGLOBAL.jpg); */
|
/* //background-image: url(imgs/FONDGLOBAL.jpg); */
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
margin:0% 0%;
|
margin: 0% 0%;
|
||||||
padding : 0.6em;
|
font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||||
font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
|
font-size: 0.8em;
|
||||||
font-size:0.8em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#page {
|
#page {
|
||||||
background-color:white;
|
background-color: white;
|
||||||
width : 65%;
|
width: 95%;
|
||||||
margin : auto ;
|
margin: auto;
|
||||||
border : 0.2em solid black;
|
border: 1px solid black;
|
||||||
padding : 0.1em;
|
|
||||||
}
|
}
|
||||||
#entete{
|
|
||||||
background-color:rgb(72,198,236);
|
#entete {
|
||||||
color : #980101;
|
background-color: #8B93A7;
|
||||||
border: solid 0.1em #980101;
|
color: #881600;
|
||||||
|
border: solid 2px #881600;
|
||||||
|
border-left: 0;
|
||||||
|
border-right: 0;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
padding: 0em;
|
padding: 0 100px;
|
||||||
border-collapse: separate;
|
|
||||||
}
|
}
|
||||||
#pied{
|
|
||||||
clear : both;
|
#pied {
|
||||||
border : solid 0.2em #980101;
|
clear: both;
|
||||||
margin-left : 18%;
|
border: solid 0.2em #881600;
|
||||||
margin-top : 1em;
|
margin-left: 18%;
|
||||||
padding:0.4em;
|
margin-top: 1em;
|
||||||
|
padding: 0.4em;
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
}
|
}
|
||||||
#menu{
|
|
||||||
|
#menu {
|
||||||
position: relative;
|
position: relative;
|
||||||
float:right;
|
float: right;
|
||||||
right: 0px;
|
right: 0px;
|
||||||
margin-top : -240px;
|
margin-top: -240px;
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
padding: 0em;
|
padding: 0em;
|
||||||
background-color:transparent;
|
background-color: transparent;
|
||||||
color: rgb(0,85,227);
|
color: rgb(0, 85, 227);
|
||||||
width: 80px;
|
width: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu{
|
#contenu {
|
||||||
border: none;
|
border: none;
|
||||||
padding: 1.1em;
|
padding: 1.1em;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-left : groove 0.8em #980101;
|
border-left: groove 0.8em #881600;
|
||||||
margin-top : 1.1em;
|
margin-top: 1.1em;
|
||||||
margin-left: 82px; /*162px; /*18%; */
|
margin-left: 82px;
|
||||||
/* permet de fixer une hauteur mini sur les navigateurs modernes */
|
/*162px; /*18%; */
|
||||||
min-height:27em;
|
/* permet de fixer une hauteur mini sur les navigateurs modernes */
|
||||||
/* pour obtenir le même effet sur IE, sachant que si le contenu dépasse, il "poussera" la hauteur en ne respectant pas la norme. On se joue de ses lacunes */
|
min-height: 27em;
|
||||||
height:27em;
|
/* pour obtenir le même effet sur IE, sachant que si le contenu dépasse, il "poussera" la hauteur en ne respectant pas la norme. On se joue de ses lacunes */
|
||||||
|
height: 27em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
a:visited,
|
||||||
|
a:hover {
|
||||||
|
color: #881600;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* pour rétablir le mauvais effet sur les nav. modernes */
|
/* pour rétablir le mauvais effet sur les nav. modernes */
|
||||||
html>body #contenu{
|
html>body #contenu {
|
||||||
height:auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* style à appliquer à la balise ul d'identifiant menulist */
|
/* style à appliquer à la balise ul d'identifiant menulist */
|
||||||
ul#menuList{
|
ul#menuList {
|
||||||
list-style:none;
|
list-style: none;
|
||||||
margin:0px;
|
margin: 0px;
|
||||||
padding:0px;
|
padding: 0px;
|
||||||
width:98%;
|
width: 98%;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* style à appliquer aux éléments de la balise ul d'identifiant menulist */
|
/* style à appliquer aux éléments de la balise ul d'identifiant menulist */
|
||||||
ul#menuList li {
|
ul#menuList li {
|
||||||
position:relative;
|
position: relative;
|
||||||
margin:0px;
|
margin: 0px;
|
||||||
padding:0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* apparences des liens dans listes et sous-listes non numérotées */
|
/* apparences des liens dans listes et sous-listes non numérotées */
|
||||||
ul#menuList a {
|
ul#menuList a {
|
||||||
color:rgb(0,85,227);
|
color: rgb(0, 85, 227);
|
||||||
display:block;
|
display: block;
|
||||||
text-decoration:none;
|
text-decoration: none;
|
||||||
width:100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul#menuList a:hover {
|
ul#menuList a:hover {
|
||||||
background: rgb(0,85,227);
|
background: rgb(0, 85, 227);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
#entete #logo {
|
#entete #logo {
|
||||||
float : left;
|
float: left;
|
||||||
width : 74px;
|
width: 74px;
|
||||||
height : 100px;
|
height: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#entete h1 {
|
#entete h1 {
|
||||||
margin-top : 50px;
|
margin-top: 50px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
font-size : x-large;
|
font-size: x-large;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu pre {
|
#contenu pre {
|
||||||
width:95%;
|
width: 95%;
|
||||||
overflow : scroll;
|
overflow: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu h2 {
|
#contenu h2 {
|
||||||
font-size : large;
|
font-size: large;
|
||||||
text-align:left;
|
text-align: left;
|
||||||
margin:0;
|
margin: 0;
|
||||||
margin-bottom:0.5em;
|
margin-bottom: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logoValidW3c {
|
.logoValidW3c {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
#libValidW3c{
|
|
||||||
display : inline;
|
#libValidW3c {
|
||||||
vertical-align:middle;
|
display: inline;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Style des formulaires */
|
/* Style des formulaires */
|
||||||
.corpsForm {
|
.corpsForm {
|
||||||
border : solid 0.1em #000;
|
border: solid 0.1em #000;
|
||||||
border-bottom-width:1px;
|
border-bottom-width: 1px;
|
||||||
margin-bottom : 0em;
|
margin-bottom: 0em;
|
||||||
width : 95%;
|
width: 95%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.piedForm {
|
.piedForm {
|
||||||
border-bottom-width : 0.1em;
|
border-bottom-width: 0.1em;
|
||||||
border-left-width : 0.1em;
|
border-left-width: 0.1em;
|
||||||
border-right-width : 0.1em;
|
border-right-width: 0.1em;
|
||||||
border-top-width : 0em;
|
border-top-width: 0em;
|
||||||
border-style : solid;
|
border-style: solid;
|
||||||
border-color : #000;
|
border-color: #000;
|
||||||
text-align:right ;
|
text-align: right;
|
||||||
width : 95%;
|
width: 95%;
|
||||||
margin-top:0em;
|
margin-top: 0em;
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
margin-bottom:1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.corpsForm legend {
|
.corpsForm legend {
|
||||||
font-weight:bold;
|
font-weight: bold;
|
||||||
font-size:1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
.corpsForm label{
|
|
||||||
|
.corpsForm label {
|
||||||
float: left;
|
float: left;
|
||||||
text-align:right;
|
text-align: right;
|
||||||
width:33%;
|
width: 33%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0 .5em 0 0;
|
padding: 0 .5em 0 0;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
}
|
}
|
||||||
input, button, textarea, select{
|
|
||||||
font-family:"Trebuchet MS", sans-serif;
|
input,
|
||||||
font-size : 1em;
|
button,
|
||||||
|
textarea,
|
||||||
|
select {
|
||||||
|
font-family: "Trebuchet MS", sans-serif;
|
||||||
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:focus{
|
input:focus {
|
||||||
background-color: #ECB2E4;
|
background-color: #ECB2E4;
|
||||||
}
|
}
|
||||||
button{
|
|
||||||
width : 60px;
|
button {
|
||||||
height : 30px;
|
width: 60px;
|
||||||
text-align:center;
|
height: 30px;
|
||||||
vertical-align:middle;
|
text-align: center;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
input:hover, textarea:hover, select:hover{
|
|
||||||
background-color : #FAFAE6;
|
input:hover,
|
||||||
cursor : pointer;
|
textarea:hover,
|
||||||
|
select:hover {
|
||||||
|
background-color: #FAFAE6;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.controle {
|
.controle {
|
||||||
width:75px;
|
width: 75px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.controleLong {
|
.controleLong {
|
||||||
width:195px;
|
width: 195px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stNb {
|
.stNb {
|
||||||
width:40px;
|
width: 40px;
|
||||||
text-align:center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stNb a:link {
|
.stNb a:link {
|
||||||
@ -260,153 +297,160 @@ input:hover, textarea:hover, select:hover{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.stTitre {
|
.stTitre {
|
||||||
width:40px;
|
width: 40px;
|
||||||
text-align:center;
|
text-align: center;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stTitre2 {
|
.stTitre2 {
|
||||||
width:80px;
|
width: 80px;
|
||||||
text-align:center;
|
text-align: center;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Le texte des messages d'erreur est de couleur rose sur fond ocre et de
|
/* Le texte des messages d'erreur est de couleur rose sur fond ocre et de
|
||||||
taille de caractères légèrement supérieure à la normale */
|
taille de caractères légèrement supérieure à la normale */
|
||||||
.erreur{
|
.erreur {
|
||||||
background-color:rgb(237,210,229);
|
background-color: rgb(237, 210, 229);
|
||||||
color:rgb(203,28,128);
|
color: rgb(203, 28, 128);
|
||||||
font-size:1.1em;
|
font-size: 1.1em;
|
||||||
margin-left:200px;
|
margin-left: 200px;
|
||||||
width:75%;
|
width: 75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.centre {
|
.centre {
|
||||||
text-align:center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
background-color:rgb(178,207,81);
|
background-color: rgb(178, 207, 81);
|
||||||
color : white;
|
color: white;
|
||||||
font-size:1.1em;
|
font-size: 1.1em;
|
||||||
width : 95%
|
width: 95%
|
||||||
}
|
}
|
||||||
|
|
||||||
.encadre {
|
.encadre {
|
||||||
border : solid 0.1em #000;
|
border: solid 0.1em #000;
|
||||||
width : 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Style pour les liens de la page principale */
|
/* Style pour les liens de la page principale */
|
||||||
#contenu .corpsTexte {
|
#contenu .corpsTexte {
|
||||||
width:80%;
|
width: 80%;
|
||||||
font-size:1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Style pour les liens de la page principale */
|
/* Style pour les liens de la page principale */
|
||||||
#contenu a {
|
#contenu a {
|
||||||
font-size : 1.1em;
|
font-size: 1.1em;
|
||||||
color:gray;
|
color: gray;
|
||||||
text-decoration:none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu a:hover {
|
#contenu a:hover {
|
||||||
text-decoration:underline;
|
text-decoration: underline;
|
||||||
background-color : #D9BB7A;
|
background-color: #D9BB7A;
|
||||||
font-size : 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Style pour les parties importantes de la page principale */
|
/* Style pour les parties importantes de la page principale */
|
||||||
#contenu strong {
|
#contenu strong {
|
||||||
font-weight:bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Styles pour les tableaux de la page principale */
|
/* Styles pour les tableaux de la page principale */
|
||||||
#contenu table {
|
#contenu table {
|
||||||
background-color:#FFF;
|
background-color: #FFF;
|
||||||
border : 0.1em solid #777777;
|
border: 0.1em solid #777777;
|
||||||
color:black;
|
color: black;
|
||||||
margin-right : auto ;
|
margin-right: auto;
|
||||||
margin-left:0.2em;
|
margin-left: 0.2em;
|
||||||
border-collapse : collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Style pour les lignes d'en-tête des tableaux */
|
/* Style pour les lignes d'en-tête des tableaux */
|
||||||
#contenu th {
|
#contenu th {
|
||||||
background-color:#E9F1FE;
|
background-color: #E9F1FE;
|
||||||
/* //bleu clair ou bleu plus soutenu : #77AADD; */
|
/* //bleu clair ou bleu plus soutenu : #77AADD; */
|
||||||
width: 130px;
|
width: 130px;
|
||||||
height: 21px;
|
height: 21px;
|
||||||
/* //text-align: left; */
|
/* //text-align: left; */
|
||||||
vertical-align:top;
|
vertical-align: top;
|
||||||
/*font-weight:bold;*/
|
/*font-weight:bold;*/
|
||||||
border-bottom:0.1em solid #777777;
|
border-bottom: 0.1em solid #777777;
|
||||||
/* //font-size:1.1em; */
|
/* //font-size:1.1em; */
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu td {
|
#contenu td {
|
||||||
border :1px solid #777777;
|
border: 1px solid #777777;
|
||||||
/* //font-size:1.1em; */
|
/* //font-size:1.1em; */
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu h3 {
|
#contenu h3 {
|
||||||
font-size : 1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
table{
|
table {
|
||||||
width:100%;
|
width: 100%;
|
||||||
border-collapse:collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
fieldset{
|
|
||||||
border-radius : 12px;
|
fieldset {
|
||||||
border:2px solid ;
|
border-radius: 12px;
|
||||||
border-color: purple;
|
border: 2px solid;
|
||||||
|
border-color: purple;
|
||||||
}
|
}
|
||||||
legend{
|
|
||||||
font-size: 20px;
|
legend {
|
||||||
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.listeLegere {
|
table.listeLegere {
|
||||||
margin-bottom : 0.3em;
|
margin-bottom: 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.stats {
|
table.stats {
|
||||||
width: 80px;
|
width: 80px;
|
||||||
/* //150px; */
|
/* //150px; */
|
||||||
border-collapse:collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.stats th {
|
table.stats th {
|
||||||
border : dotted rgb(178,207,81) 0.1em;
|
border: dotted rgb(178, 207, 81) 0.1em;
|
||||||
background-color:#E9F1FE;
|
background-color: #E9F1FE;
|
||||||
/* //bleu clair */
|
/* //bleu clair */
|
||||||
padding: 0em;
|
padding: 0em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align : top;
|
vertical-align: top;
|
||||||
witdh: 33%;
|
witdh: 33%;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.stats td {
|
table.stats td {
|
||||||
border : dotted rgb(178,207,81) 0.1em;
|
border: dotted rgb(178, 207, 81) 0.1em;
|
||||||
padding: 0em;
|
padding: 0em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align : top;
|
vertical-align: top;
|
||||||
witdh: 33%;
|
witdh: 33%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tableaux quadrillés utilisés pour l'affichage de listes avec contenu léger*/
|
/* Tableaux quadrillés utilisés pour l'affichage de listes avec contenu léger*/
|
||||||
table.listeLegere th, table.listeLegere td {
|
table.listeLegere th,
|
||||||
border : dotted rgb(178,207,81) 0.1em;
|
table.listeLegere td {
|
||||||
padding:0.2em;
|
border: dotted rgb(178, 207, 81) 0.1em;
|
||||||
vertical-align : top;
|
padding: 0.2em;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.listeLegere caption {
|
table.listeLegere caption {
|
||||||
font-size : 1.1em;
|
font-size: 1.1em;
|
||||||
text-align : left;
|
text-align: left;
|
||||||
margin-bottom : 0.2em;
|
margin-bottom: 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.listeLegere td {
|
table.listeLegere td {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
vertical-align:top;
|
vertical-align: top;
|
||||||
font-weight:normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu h2 {
|
#contenu h2 {
|
||||||
@ -415,94 +459,97 @@ table.listeLegere td {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #1D2941;
|
color: #1D2941;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border : 1px solid #6988BE;
|
border: 1px solid #6988BE;
|
||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
background-color: #E9F1FE;
|
background-color: #E9F1FE;
|
||||||
height : 28px;
|
height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu img {
|
#contenu img {
|
||||||
height : 21px;
|
height: 21px;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
float : left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#contenu li img:hover {
|
#contenu li img:hover {
|
||||||
height : 26px;
|
height: 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lesOnglets
|
.lesOnglets {
|
||||||
{
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding:0 0 0 5px;
|
padding: 0 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.unOnglet
|
.unOnglet {
|
||||||
{
|
background-color: white;
|
||||||
background-color:white;
|
margin-top: -1px;
|
||||||
margin-top:-1px;
|
padding: 5px;
|
||||||
padding:5px;
|
display: none;
|
||||||
display:none;
|
border: 1px solid #AAA;
|
||||||
border:1px solid #AAA;
|
border-radius: 4px;
|
||||||
border-radius:4px;
|
-webkit-border-radius: 4px;
|
||||||
-webkit-border-radius:4px;
|
-moz-border-radius: 4px;
|
||||||
-moz-border-radius:4px;
|
color: #555;
|
||||||
color:#555;
|
|
||||||
cursor: text;
|
cursor: text;
|
||||||
}
|
}
|
||||||
.onglet
|
|
||||||
{
|
.onglet {
|
||||||
display:inline-block;
|
display: inline-block;
|
||||||
margin:5px 2px 0 2px;
|
margin: 5px 2px 0 2px;
|
||||||
padding:5px 10px ;
|
padding: 5px 10px;
|
||||||
border:1px solid #AAA;
|
border: 1px solid #AAA;
|
||||||
border-bottom:none;
|
border-bottom: none;
|
||||||
border-radius:5px 5px 0 0;
|
border-radius: 5px 5px 0 0;
|
||||||
-webkit-border-radius:4px 4px 0 0;
|
-webkit-border-radius: 4px 4px 0 0;
|
||||||
-moz-border-radius:4px 4px 0 0;
|
-moz-border-radius: 4px 4px 0 0;
|
||||||
color:#555;
|
color: #555;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-weight:bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.inactif
|
|
||||||
{
|
.inactif {
|
||||||
background:#EEE;
|
background: #EEE;
|
||||||
}
|
}
|
||||||
.inactif:hover
|
|
||||||
{
|
.inactif:hover {
|
||||||
background:#AAA;
|
background: #AAA;
|
||||||
}
|
}
|
||||||
.actif
|
|
||||||
{
|
.actif {
|
||||||
background:white;
|
background: white;
|
||||||
border-bottom:2px solid white;
|
border-bottom: 2px solid white;
|
||||||
padding-bottom:4px;
|
padding-bottom: 4px;
|
||||||
cursor:text;
|
cursor: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fdroite {
|
.fdroite {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-bottom: 7px solid #FFFFFF;
|
border-bottom: 7px solid #FFFFFF;
|
||||||
border-top: 7px solid #FFFFFF;
|
border-top: 7px solid #FFFFFF;
|
||||||
border-left: 10px solid #9743CC;
|
border-left: 10px solid #9743CC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fbas {
|
.fbas {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-left: 7px solid #FFFFFF;
|
border-left: 7px solid #FFFFFF;
|
||||||
border-right: 7px solid #FFFFFF;
|
border-right: 7px solid #FFFFFF;
|
||||||
border-top: 10px solid #AABBCC;
|
border-top: 10px solid #AABBCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fgauche {
|
.fgauche {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-bottom: 7px solid #FFFFFF;
|
border-bottom: 7px solid #FFFFFF;
|
||||||
border-right: 10px solid #9743CC;
|
border-right: 10px solid #9743CC;
|
||||||
border-top: 7px solid #FFFFFF;
|
border-top: 7px solid #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fhaut {
|
.fhaut {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-bottom: 10px solid #AABBCC;
|
border-bottom: 10px solid #AABBCC;
|
||||||
border-left: 7px solid #FFFFFF;
|
border-left: 7px solid #FFFFFF;
|
||||||
border-right: 7px solid #FFFFFF;
|
border-right: 7px solid #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.boite {
|
.boite {
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
-webkit-border-radius: 5px;
|
-webkit-border-radius: 5px;
|
||||||
@ -523,7 +570,7 @@ table.listeLegere td {
|
|||||||
|
|
||||||
#tableau th.semaine {
|
#tableau th.semaine {
|
||||||
color: #666666;
|
color: #666666;
|
||||||
text-align : center;
|
text-align: center;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
background-color: #fafae0;
|
background-color: #fafae0;
|
||||||
}
|
}
|
||||||
@ -548,6 +595,7 @@ table.listeLegere td {
|
|||||||
background-color: #ffe9e5;
|
background-color: #ffe9e5;
|
||||||
color: #000080;
|
color: #000080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tableau {
|
.tableau {
|
||||||
background-color: #ebeff2;
|
background-color: #ebeff2;
|
||||||
border-color: #3DA9C9;
|
border-color: #3DA9C9;
|
||||||
@ -572,6 +620,7 @@ table.listeLegere td {
|
|||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-color: gray;
|
border-color: gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tableau th div {
|
.tableau th div {
|
||||||
width: 25px;
|
width: 25px;
|
||||||
}
|
}
|
||||||
@ -613,7 +662,8 @@ table.listeLegere td {
|
|||||||
background-color: #ffe9e5;
|
background-color: #ffe9e5;
|
||||||
color: #000080;
|
color: #000080;
|
||||||
}
|
}
|
||||||
#pompiers{
|
|
||||||
|
#pompiers {
|
||||||
background-color: #ebeff2;
|
background-color: #ebeff2;
|
||||||
border-color: #3DA9C9;
|
border-color: #3DA9C9;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
@ -632,7 +682,92 @@ table.listeLegere td {
|
|||||||
padding: 0px 0px 0px 0px;
|
padding: 0px 0px 0px 0px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
.select-dispo{
|
|
||||||
|
.select-dispo {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
PARTIE DES INTERVENTIONS
|
||||||
|
*/
|
||||||
|
.nouvelleInter {
|
||||||
|
margin: 0 20px;
|
||||||
|
overflow: auto;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.formulaire {
|
||||||
|
width: 50%;
|
||||||
|
border-right: solid 1px black;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nouvelleInter .formulaire {
|
||||||
|
/* float: right; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.selectionPompier {
|
||||||
|
margin: 0 30px;
|
||||||
|
overflow: auto;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pompierDispo {
|
||||||
|
background-color: #8B93A7;
|
||||||
|
width: 40%;
|
||||||
|
height: 80%;
|
||||||
|
margin: 0 20px;
|
||||||
|
padding: 5px;
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pompierDispo div,
|
||||||
|
.pompierIntervenant div {
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
padding: 3px;
|
||||||
|
margin: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pompierIntervenant {
|
||||||
|
background-color: red;
|
||||||
|
width: 40%;
|
||||||
|
height: 200px;
|
||||||
|
margin: 0 20px;
|
||||||
|
padding: 5px;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sendInter {
|
||||||
|
width: auto;
|
||||||
|
text-align: center;
|
||||||
|
margin: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.infobulle {
|
||||||
|
position: relative;
|
||||||
|
/* les .infobulle deviennent référents */
|
||||||
|
cursor: help;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* on génère un élément :after lors du survol et du focus :*/
|
||||||
|
|
||||||
|
.infobulle:hover::after,
|
||||||
|
.infobulle:focus::after {
|
||||||
|
content: attr(aria-label);
|
||||||
|
/* on affiche aria-label */
|
||||||
|
position: absolute;
|
||||||
|
top: -2.4em;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
/* on centre horizontalement */
|
||||||
|
z-index: 1;
|
||||||
|
/* pour s'afficher au dessus des éléments en position relative */
|
||||||
|
white-space: nowrap;
|
||||||
|
/* on interdit le retour à la ligne */
|
||||||
|
}
|
@ -44,7 +44,7 @@ echo ('
|
|||||||
if ($_SESSION['statut'] == 2) {?>
|
if ($_SESSION['statut'] == 2) {?>
|
||||||
|
|
||||||
<input type="image" id="zNouveau" title="Ajouter" src="images/ajout.gif" onclick="faire('choixP', 'ajouter')">
|
<input type="image" id="zNouveau" title="Ajouter" src="images/ajout.gif" onclick="faire('choixP', 'ajouter')">
|
||||||
<input type="image" class="btn-modif" id="zModif" title="Modifier" src="images/modif.gif">
|
<input type="image" class="btn-modif" id="zModifChef" title="Modifier" src="images/modif.gif">
|
||||||
<input type="image" id="zSupprime" title="Supprimer" src="images/supprimer.gif" onclick="faire('choixP', 'supprimer')">
|
<input type="image" id="zSupprime" title="Supprimer" src="images/supprimer.gif" onclick="faire('choixP', 'supprimer')">
|
||||||
<input type="image" id="zPremier" title="premier" src="images/goPremier.gif" onclick="premier('choixP','lstPompiers')">
|
<input type="image" id="zPremier" title="premier" src="images/goPremier.gif" onclick="premier('choixP','lstPompiers')">
|
||||||
<input type="image" id="zPrecedent" title="précédent" src="images/goPrecedent.gif" onclick="precedent('choixP','lstPompiers')">
|
<input type="image" id="zPrecedent" title="précédent" src="images/goPrecedent.gif" onclick="precedent('choixP','lstPompiers')">
|
||||||
@ -54,13 +54,18 @@ if ($_SESSION['statut'] == 2) {?>
|
|||||||
<input type="image" id="zSuivant" title="suivant" src="images/goSuivant.gif" onclick="suivant('choixP','lstPompiers')">
|
<input type="image" id="zSuivant" title="suivant" src="images/goSuivant.gif" onclick="suivant('choixP','lstPompiers')">
|
||||||
<input type="image" id="zDernier" title="dernier" src="images/goDernier.gif" onclick="dernier('choixP','lstPompiers')">
|
<input type="image" id="zDernier" title="dernier" src="images/goDernier.gif" onclick="dernier('choixP','lstPompiers')">
|
||||||
<?php
|
<?php
|
||||||
} else {
|
} else {
|
||||||
echo '
|
echo '
|
||||||
<input type="image" class="btn-modif" id="zModif" title="Modifier" src="images/modif.gif">';
|
<input type="image" class="btn-modif" id="zModif" title="Modifier" src="images/modif.gif">';
|
||||||
}?>
|
}?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="hidden" name="action" value="<?php if($_REQUEST['action']=="liste") {echo "voir";} else {echo $_REQUEST['action'];}?>">
|
<input type="hidden" name="action" value="<?php
|
||||||
|
if($_REQUEST['action'] == "liste") {
|
||||||
|
echo "voir";
|
||||||
|
} else {
|
||||||
|
echo $_REQUEST['action'];
|
||||||
|
}?>">
|
||||||
<input type="hidden" name="type" value="<?= isset($_REQUEST['type']) ? $_REQUEST['type'] : '';?>">
|
<input type="hidden" name="type" value="<?= isset($_REQUEST['type']) ? $_REQUEST['type'] : '';?>">
|
||||||
<input type="hidden" name="zType" value="*">
|
<input type="hidden" name="zType" value="*">
|
||||||
<input type="hidden" name="zIndice" value="*">
|
<input type="hidden" name="zIndice" value="*">
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>SDIS29</title>
|
<title>SDIS29</title>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||||
|
|
||||||
<link href="./styles/styles.css" rel="stylesheet" type="text/css" />
|
<link href="./styles/styles.css" rel="stylesheet" type="text/css" />
|
||||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="./images/favicon.ico" />
|
<link rel="shortcut icon" type="image/x-icon" href="./images/favicon.ico" />
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!-- 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>
|
<fieldset style='width:80%; margin: 0 auto;'>
|
||||||
<legend>Feuille de gardes</legend>
|
<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; ?>'>
|
||||||
|
@ -1,62 +1,63 @@
|
|||||||
|
|
||||||
<!-- affichage du detail de la fiche pompier / Derniere modification le 18 septembre 2023 par Pascal Blain -->
|
<!-- affichage du detail de la fiche pompier / Derniere modification le 18 septembre 2023 par Pascal Blain -->
|
||||||
<!-- ------------------------------------------------ fenetre modale en CSS -->
|
<!-- ------------------------------------------------ fenetre modale en CSS -->
|
||||||
<style>
|
<style>
|
||||||
.fModale {
|
.fModale {
|
||||||
position : fixed;
|
position: fixed;
|
||||||
font-family : Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
top : 0;
|
top: 0;
|
||||||
right : 0;
|
right: 0;
|
||||||
bottom : 0;
|
bottom: 0;
|
||||||
left : 0;
|
left: 0;
|
||||||
background : rgba(0,0,0,0.8);
|
background: rgba(0, 0, 0, 0.8);
|
||||||
z-index : 99999;
|
z-index: 99999;
|
||||||
//display : none;
|
//display : none;
|
||||||
opacity : 0;
|
opacity: 0;
|
||||||
-webkit-transition: opacity 400ms ease-in;
|
-webkit-transition: opacity 400ms ease-in;
|
||||||
-moz-transition: opacity 400ms ease-in;
|
-moz-transition: opacity 400ms ease-in;
|
||||||
transition : opacity 400ms ease-in;
|
transition: opacity 400ms ease-in;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fModale:target {
|
.fModale:target {
|
||||||
//display : block;
|
//display : block;
|
||||||
opacity : 1;
|
opacity: 1;
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fModale > div {
|
.fModale>div {
|
||||||
width : 200px;
|
width: 200px;
|
||||||
position : relative;
|
position: relative;
|
||||||
margin : 10% auto;
|
margin: 10% auto;
|
||||||
padding : 5px 20px 13px 20px;
|
padding: 5px 20px 13px 20px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background : #fff;
|
background: #fff;
|
||||||
background : -moz-linear-gradient(#fff, #999);
|
background: -moz-linear-gradient(#fff, #999);
|
||||||
background : -webkit-linear-gradient(#fff, #999);
|
background: -webkit-linear-gradient(#fff, #999);
|
||||||
background : -o-linear-gradient(#fff, #999);
|
background: -o-linear-gradient(#fff, #999);
|
||||||
}
|
}
|
||||||
|
|
||||||
.fermer {
|
.fermer {
|
||||||
background : #606061;
|
background: #606061;
|
||||||
color : #FFFFFF;
|
color: #FFFFFF;
|
||||||
line-height : 25px;
|
line-height: 25px;
|
||||||
position : absolute;
|
position: absolute;
|
||||||
right : -12px;
|
right: -12px;
|
||||||
text-align : center;
|
text-align: center;
|
||||||
top : -10px;
|
top: -10px;
|
||||||
width : 24px;
|
width: 24px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight : bold;
|
font-weight: bold;
|
||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
-moz-border-radius: 12px;
|
-moz-border-radius: 12px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
-moz-box-shadow: 1px 1px 3px #000;
|
-moz-box-shadow: 1px 1px 3px #000;
|
||||||
-webkit-box-shadow: 1px 1px 3px #000;
|
-webkit-box-shadow: 1px 1px 3px #000;
|
||||||
box-shadow : 1px 1px 3px #000;
|
box-shadow: 1px 1px 3px #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fermer:hover { background: #00d9ff; }
|
.fermer:hover {
|
||||||
|
background: #00d9ff;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<?php
|
<?php
|
||||||
/*-----------------------------------------------------------------
|
/*-----------------------------------------------------------------
|
||||||
@ -86,95 +87,102 @@ echo ('
|
|||||||
echo ("
|
echo ("
|
||||||
<div style='display: block;' class='unOnglet' id='contenuOnglet1'>
|
<div style='display: block;' class='unOnglet' id='contenuOnglet1'>
|
||||||
<fieldset><legend>X indique une garde</legend>"); ?>
|
<fieldset><legend>X indique une garde</legend>"); ?>
|
||||||
<!-- div class="boite" style="margin: 0px 10px;" -->
|
<!-- div class="boite" style="margin: 0px 10px;" -->
|
||||||
|
|
||||||
<form name="frmDispos" action="index.php?choixTraitement=pompiers&action=voir" method="post">
|
<form name="frmDispos" action="index.php?choixTraitement=pompiers&action=voir" method="post">
|
||||||
<input type="hidden" maxlength="2" name="zSemaine" value='<?php echo $semaine;?>'>
|
<input type="hidden" maxlength="2" name="zSemaine" value='<?php echo $semaine; ?>'>
|
||||||
<input type="hidden" maxlength="2" name="zAnnee" value='<?php echo $annee;?>'>
|
<input type="hidden" maxlength="2" name="zAnnee" value='<?php echo $annee; ?>'>
|
||||||
</form>
|
</form>
|
||||||
<table id="tableau" class="tableau">
|
<table id="tableau" class="tableau">
|
||||||
<tbody>
|
<tbody>
|
||||||
<!-- PARTIE SELCTION SEMAINE -->
|
<!-- PARTIE SELCTION SEMAINE -->
|
||||||
<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('<?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 colspan="26"><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="26"><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><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"
|
||||||
</tr>
|
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>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<!-- PARTIE AFFICHAGE DES JOURS -->
|
<!-- PARTIE AFFICHAGE DES JOURS -->
|
||||||
<tr>
|
<tr>
|
||||||
<?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">'
|
echo ('<th colspan="4">'
|
||||||
. $nomJour[$jour] . ' '
|
. $nomJour[$jour] . ' '
|
||||||
. date('d/m', strtotime('+' . $jour . ' day', $premierJour)) . '</th>'
|
. date('d/m', strtotime('+' . $jour . ' day', $premierJour)) . '</th>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<!-- PARTIE AFFICHAGE DES TRANCHES DANS CHAQUE JOURS -->
|
<!-- PARTIE AFFICHAGE DES TRANCHES DANS CHAQUE JOURS -->
|
||||||
<tr>
|
<tr>
|
||||||
<?php
|
|
||||||
for($jour = 0; $jour <= 6; $jour++) {
|
|
||||||
for($tranche = 1; $tranche <= 4; $tranche++) {
|
|
||||||
echo '<th class="semaine" style="text-align : center;">' . $tranche . '</th>';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<!-- PARTIE SELCTION DES DISPO -->
|
|
||||||
<tr>
|
|
||||||
<?php
|
<?php
|
||||||
foreach ($lesDispos as $uneLigne) { // $pdo->getDisposHebdo() return les dispo
|
for ($jour = 0; $jour <= 6; $jour++) {
|
||||||
for($jour = 0; $jour <= 6; $jour++) {
|
for ($tranche = 1; $tranche <= 4; $tranche++) {
|
||||||
|
echo '<th class="semaine" style="text-align : center;">' . $tranche . '</th>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<!-- PARTIE SELCTION DES DISPO -->
|
||||||
|
<tr>
|
||||||
|
<?php
|
||||||
|
foreach ($lesDispos as $uneLigne) { // $pdo->getDisposHebdo() return les dispo
|
||||||
|
for ($jour = 0; $jour <= 6; $jour++) {
|
||||||
$leJour = date('Y-m-d', strtotime('+' . $jour . ' day', $premierJour));
|
$leJour = date('Y-m-d', strtotime('+' . $jour . ' day', $premierJour));
|
||||||
$dateTab = date('d/m/Y', strtotime('+' . $jour . ' day', $premierJour));
|
$dateTab = date('d/m/Y', strtotime('+' . $jour . ' day', $premierJour));
|
||||||
for($tranche = 1; $tranche <= 4; $tranche++){
|
for ($tranche = 1; $tranche <= 4; $tranche++) {
|
||||||
$couleur = 'c' . $tranche;
|
$couleur = 'c' . $tranche;
|
||||||
$garde = 'g' . $tranche;
|
$garde = 'g' . $tranche;
|
||||||
$dispo = 'd' . $tranche;
|
$dispo = 'd' . $tranche;
|
||||||
echo('
|
echo ('
|
||||||
<td style="height: 20px; background-color: ' . $uneLigne[$dateTab][$couleur] . ';" class="select-dispo" id="' . $leJour . '/' . $tranche . '">' . (($uneLigne[$dateTab][$garde] == 1) ? 'X' : '') . '</td>
|
<td style="height: 20px; background-color: ' . $uneLigne[$dateTab][$couleur] . ';" class="select-dispo" id="' . $leJour . '/' . $tranche . '">' . (($uneLigne[$dateTab][$garde] == 1) ? 'X' : '') . '</td>
|
||||||
');
|
');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<div id="fenetreDispo" class="fModale">
|
<div id="fenetreDispo" class="fModale">
|
||||||
<div>
|
<div>
|
||||||
<a href="#" title="Fermer" class="fermer">X</a>
|
<a href="#" title="Fermer" class="fermer">X</a>
|
||||||
<h2>ma disponibilité<br>pour le <label id="ztJour"> </label></h2>
|
<h2>ma disponibilité<br>pour le <label id="ztJour"> </label></h2>
|
||||||
<form name="frmActivites" action="index.php?choixTraitement=pompiers&action=majActivite" method="post">
|
<form name="frmActivites" action="index.php?choixTraitement=pompiers&action=majActivite" 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="ztExDispo" value=''>
|
<input type="hidden" name="ztExDispo" value=''>
|
||||||
<br>
|
<br>
|
||||||
<?php
|
<?php
|
||||||
$i=0;
|
$i = 0;
|
||||||
foreach ($lesTypesDispos as $uneLigne)
|
foreach ($lesTypesDispos as $uneLigne) {
|
||||||
{
|
if ($uneLigne["pIndice"] <> 3) {
|
||||||
if ($uneLigne["pIndice"]<>3) {
|
echo '<input type="radio" name="brDispo" id="brDispo' . $i . '" value="' . $uneLigne["pIndice"] . '"/><label for="brDispo' . $i . '">' . $uneLigne["pLibelle"] . '</label><br>';
|
||||||
echo '<input type="radio" name="brDispo" id="brDispo'.$i.'" value="'.$uneLigne["pIndice"].'"/><label for="brDispo'.$i.'">'.$uneLigne["pLibelle"].'</label><br>';}
|
|
||||||
$i++;
|
|
||||||
}
|
}
|
||||||
?>
|
$i++;
|
||||||
<br>
|
}
|
||||||
<button onclick="document.forms['frmActivites'].submit()">Valider</button>
|
?>
|
||||||
<button href="#contenuOnglet1">Annuler</button>
|
<br>
|
||||||
</form>
|
<button onclick="document.forms['frmActivites'].submit()">Valider</button>
|
||||||
</div>
|
<button href="#contenuOnglet1">Annuler</button>
|
||||||
</div>
|
</form>
|
||||||
<!-- /div -->
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- /div -->
|
||||||
<?php
|
<?php
|
||||||
echo ("
|
echo ("
|
||||||
</fieldset>
|
</fieldset>
|
||||||
@ -183,38 +191,44 @@ echo ("
|
|||||||
echo ("
|
echo ("
|
||||||
<div style='display: none;' class='unOnglet' id='contenuOnglet2'>
|
<div style='display: none;' class='unOnglet' id='contenuOnglet2'>
|
||||||
<fieldset><legend>Gardes réalisées ");
|
<fieldset><legend>Gardes réalisées ");
|
||||||
if (count($lesGardes)==0) {echo "<i>(aucune garde enregistrée)</i></legend>";} else
|
if (count($lesGardes) == 0) {
|
||||||
{
|
echo "<i>(aucune garde enregistrée)</i></legend>";
|
||||||
echo ("<i>(".count($lesGardes)." gardes)</i></legend>
|
} else {
|
||||||
|
echo ("<i>(" . count($lesGardes) . " gardes)</i></legend>
|
||||||
<table style='border: 0px solid white;'>
|
<table style='border: 0px solid white;'>
|
||||||
<tr><th class='controleLong'>Date de la garde</th>");
|
<tr><th class='controleLong'>Date de la garde</th>");
|
||||||
foreach ($lesTranches as $uneLigne) { echo ("<th>".$uneLigne['pLibelle']."</th>");}
|
foreach ($lesTranches as $uneLigne) {
|
||||||
$dateGarde="premiere";
|
echo ("<th>" . $uneLigne['pLibelle'] . "</th>");
|
||||||
$colonne=1;
|
}
|
||||||
|
$dateGarde = "premiere";
|
||||||
|
$colonne = 1;
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
|
|
||||||
foreach ($lesGardes as $uneLigne)
|
foreach ($lesGardes as $uneLigne) {
|
||||||
{
|
if ($dateGarde != $uneLigne['wDate']) {
|
||||||
if ($dateGarde != $uneLigne['wDate'])
|
if ($dateGarde != "premiere") {
|
||||||
{
|
while ($colonne <= count($lesTranches)) {
|
||||||
if ($dateGarde != "premiere")
|
echo "<td class='controle' style='text-align : center;'> </td>";
|
||||||
{
|
$colonne++;
|
||||||
while ($colonne <= count($lesTranches)) {
|
}
|
||||||
echo "<td class='controle' style='text-align : center;'> </td>";
|
echo "</tr>
|
||||||
$colonne++;
|
|
||||||
}
|
|
||||||
echo "</tr>
|
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
echo "<tr><td class='controle' style='text-align : center;'>".$uneLigne['wDate']."</td>";
|
echo "<tr><td class='controle' style='text-align : center;'>" . $uneLigne['wDate'] . "</td>";
|
||||||
$dateGarde = $uneLigne['wDate'];
|
$dateGarde = $uneLigne['wDate'];
|
||||||
$colonne=1;
|
$colonne = 1;
|
||||||
|
}
|
||||||
|
while ($colonne < $uneLigne['aTranche']) {
|
||||||
|
echo "<td class='controle' style='text-align : center;'> </td>";
|
||||||
|
$colonne++;
|
||||||
}
|
}
|
||||||
while ($colonne<$uneLigne['aTranche']) {echo "<td class='controle' style='text-align : center;'> </td>"; $colonne++;}
|
|
||||||
echo ("<td class='controle' style='text-align : center;background-color : lime;'> </td>");
|
echo ("<td class='controle' style='text-align : center;background-color : lime;'> </td>");
|
||||||
$colonne=$uneLigne['aTranche']+1;
|
$colonne = $uneLigne['aTranche'] + 1;
|
||||||
|
}
|
||||||
|
while ($colonne <= count($lesTranches)) {
|
||||||
|
echo "<td class='controle' style='text-align : center;'> </td>";
|
||||||
|
$colonne++;
|
||||||
}
|
}
|
||||||
while ($colonne<=count($lesTranches)) {echo "<td class='controle' style='text-align : center;'> </td>"; $colonne++;}
|
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
echo ("</table>");
|
echo ("</table>");
|
||||||
}
|
}
|
||||||
@ -222,7 +236,7 @@ echo ("
|
|||||||
</fieldset>
|
</fieldset>
|
||||||
</div>");
|
</div>");
|
||||||
/*================================================================================================== COORDONNEES (3) */
|
/*================================================================================================== COORDONNEES (3) */
|
||||||
echo ("
|
echo ("
|
||||||
<div style='display: none;' class='unOnglet' id='contenuOnglet3'>
|
<div style='display: none;' class='unOnglet' id='contenuOnglet3'>
|
||||||
<form class='dataPompier' method='post'>
|
<form class='dataPompier' method='post'>
|
||||||
<table style='border: 0px solid white;'>
|
<table style='border: 0px solid white;'>
|
||||||
@ -230,15 +244,15 @@ echo ("
|
|||||||
<td style='border :0px;'>
|
<td style='border :0px;'>
|
||||||
<fieldset><legend>Coordonnées</legend>
|
<fieldset><legend>Coordonnées</legend>
|
||||||
<table>
|
<table>
|
||||||
<tr><th style='width:130px;'>Nom</th> <td style='width:130px;'><input name='ztNom' type='text' class='infoPompier' value='".$lesInfosPompier['nom']."' disabled></td> </tr>
|
<tr><th style='width:130px;'>Nom</th> <td style='width:130px;'><input name='ztNom' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['nom'] . "' disabled></td> </tr>
|
||||||
<tr><th>Prénom</th> <td> <input name='ztPrenom' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['prenom']."' disabled></td> </tr>
|
<tr><th>Prénom</th> <td> <input name='ztPrenom' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['prenom'] . "' disabled></td> </tr>
|
||||||
<tr><th>Adresse</th> <td> <input name='ztAdresse' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pAdresse']."' disabled></td> </tr>
|
<tr><th>Adresse</th> <td> <input name='ztAdresse' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pAdresse'] . "' disabled></td> </tr>
|
||||||
<tr><th>Code postal</th> <td> <input name='ztCodePostal' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pCp']."' disabled></td> </tr>
|
<tr><th>Code postal</th> <td> <input name='ztCodePostal' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pCp'] . "' disabled></td> </tr>
|
||||||
<tr><th>Ville</th> <td> <input name='ztVille' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pVille']."' disabled></td> </tr>
|
<tr><th>Ville</th> <td> <input name='ztVille' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pVille'] . "' disabled></td> </tr>
|
||||||
<tr><th>Téléphone</th> <td> <input name='ztTel' type='text' class='infoPompier-chef' value='" . $lesInfosPompier['pBip']."' disabled></td> </tr>
|
<tr><th>Téléphone</th> <td> <input name='ztTel' type='text' class='infoPompier-chef' value='" . $lesInfosPompier['pBip'] . "' disabled></td> </tr>
|
||||||
<tr><th>Adresse électronique</th> <td> <input name='ztMail' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pMail']."' disabled></td> </tr>
|
<tr><th>Adresse électronique</th> <td> <input name='ztMail' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pMail'] . "' disabled></td> </tr>
|
||||||
<tr><th>Nom de compte</th> <td>" . $lesInfosPompier['pLogin'] . "</td></tr>
|
<tr><th>Nom de compte</th> <td>" . $lesInfosPompier['pLogin'] . "</td></tr>
|
||||||
<input name='pId' type='hidden' class='infoPompier' value='" . $lesInfosPompier['id']."' disabled>
|
<input name='pId' type='hidden' class='infoPompier' value='" . $lesInfosPompier['id'] . "' disabled>
|
||||||
<br />");
|
<br />");
|
||||||
echo ("
|
echo ("
|
||||||
</table>
|
</table>
|
||||||
@ -256,9 +270,45 @@ echo ("
|
|||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset><legend>Fonction</legend>
|
<fieldset><legend>Fonction</legend>
|
||||||
<table>
|
<table>
|
||||||
<tr><th>Type</th> <td> <input name='lstType' type='text' class='infoPompier-chef' value='" . $lesInfosPompier['wType'] . "' disabled></td> </tr>
|
<tr><th>Type</th> <td>
|
||||||
<tr><th>Grade</th> <td> <input name='lstGrade' type='text' class='infoPompier-chef' value='" . $lesInfosPompier['wGrade'] . "' disabled></td> </tr>
|
<select name='lstType' class='infoPompier-chef' disabled>");
|
||||||
<tr><th>Statut</th> <td> <input name='lstStatut' type='text' class='infoPompier-chef' value='" . $lesInfosPompier['wStatut'] . "' disabled></td> </tr>
|
foreach ($pdo->getParametre('typePer') as $key => $value) {
|
||||||
|
if ($lesInfosPompier['wType'] == $value['pLibelle']) {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . " selected> " . $value['pLibelle'] . "</option>");
|
||||||
|
} else {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
echo ("</td> </tr>
|
||||||
|
|
||||||
|
<tr><th>Grade</th> <td>
|
||||||
|
<select name='lstGrade' class='infoPompier-chef' disabled>");
|
||||||
|
foreach ($pdo->getParametre('grade') as $key => $value) {
|
||||||
|
if ($lesInfosPompier['wGrade'] == $value['pLibelle']) {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . " selected> " . $value['pLibelle'] . "</option>");
|
||||||
|
} else {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
echo ("</td> </tr>
|
||||||
|
|
||||||
|
<tr><th>Statut</th> <td>
|
||||||
|
<select name='lstStatut' class='infoPompier-chef' disabled>");
|
||||||
|
foreach ($pdo->getParametre('statAgt') as $key => $value) {
|
||||||
|
if ($lesInfosPompier['wStatut'] == $value['pLibelle']) {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . " selected> " . $value['pLibelle'] . "</option>");
|
||||||
|
} else {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
echo ("</td> </tr>
|
||||||
|
</td> </tr>
|
||||||
</table>
|
</table>
|
||||||
</fieldset></td>
|
</fieldset></td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -267,15 +317,15 @@ echo ("
|
|||||||
<fieldset><legend>Observations</legend>
|
<fieldset><legend>Observations</legend>
|
||||||
<table style='border: 0px solid white;'>
|
<table style='border: 0px solid white;'>
|
||||||
<tr>
|
<tr>
|
||||||
<td> <input name='ztObservation' type='text' class='infoPompier' value='" . $lesInfosPompier['pCommentaire'] . "' disabled></td></td>
|
<td> <input name='ztObservation' type='text' class='infoPompier infoPompier-chef' value='" . $lesInfosPompier['pCommentaire'] . "' disabled></td></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
<input type='image' class='btn-valid-modif' id='validModif' title='Modifier' src='images/valider.jpg' style='display:none; margin: 0 auto;'>
|
||||||
<input type='image' class='btn-valid-modif' id='validModif' title='Modifier' src='images/valider.jpg' style='display:none; margin: 0 auto;'>
|
|
||||||
");
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
");
|
||||||
/*================================================================================================== Onglet X */
|
/*================================================================================================== Onglet X */
|
||||||
echo ("
|
echo ("
|
||||||
<div style='display: none;' class='unOnglet' id='contenuOngletX'>
|
<div style='display: none;' class='unOnglet' id='contenuOngletX'>
|
||||||
|
@ -1,98 +1,25 @@
|
|||||||
|
|
||||||
<!-- affichage d'une intervention / Derniere modification le 23 mai 2019 par Pascal Blain -->
|
<!-- affichage d'une intervention / Derniere modification le 23 mai 2019 par Pascal Blain -->
|
||||||
<?php
|
<div class="lesInterventions" style="height: 200px;">
|
||||||
$nbi=count($lesInterventions);
|
<table>
|
||||||
|
<th>
|
||||||
|
<td>Date</td>
|
||||||
|
<td>Caserne</td>
|
||||||
|
<td>Motif</td>
|
||||||
|
<td>Lieu</td>
|
||||||
|
<td>Heure de début</td>
|
||||||
|
<td>Heure de fin</td>
|
||||||
|
</th>
|
||||||
|
|
||||||
$titre="Ajout";
|
<?php
|
||||||
echo ('
|
foreach ($variable as $key => $value) {
|
||||||
<div id="fiche">
|
# code...
|
||||||
<ul class="lesOnglets">
|
}
|
||||||
<li class="actif onglet" id="onglet1" onclick="javascript:Affiche(\'1\',3);">'.$titre.'</li>
|
?>
|
||||||
<li class="inactif onglet" id="onglet2" onclick="javascript:Affiche(\'2\',3);">onglet 2</li>
|
</table>
|
||||||
<li class="inactif onglet" id="onglet3" onclick="javascript:Affiche(\'3\',3);">onglet 3</li>
|
|
||||||
</ul>');
|
|
||||||
|
|
||||||
/*================================================================================================== nouvelle intervention (1) */
|
|
||||||
echo("
|
|
||||||
<div style='display: block;' class='unOnglet' id='contenuOnglet1'>
|
|
||||||
<fieldset><legend>Nouvelle intervention</legend>
|
|
||||||
<table>
|
|
||||||
<tr><th style='width:180px;'>Description</th><th>Date</th><th>Lieu</th><th>Horaires</th></th></tr>
|
|
||||||
<tr><td>".$infosIntervention['iDescription']."</td><td>".$infosIntervention['iDdate']."</td><td>".$infosIntervention['iLieu']."</td><td>de ".$infosIntervention['iHeureDebut']." à ".$infosIntervention['iHeureFin']."</td></tr>
|
|
||||||
<tr><td colspan='4'>".$infosIntervention['programme1']."</td></tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
<table style='border: 0px solid white;'>
|
|
||||||
<tr>
|
|
||||||
<td style='border :0px;'>
|
|
||||||
<fieldset><legend><a href='index.php?uc=intervention&action=ajouterIntervenants&atelier=20132115&reunion=1' title='ajouter les participants'><img alt='ajouter des intervenants' src='images/group.png'>Intervenants</a></legend>
|
|
||||||
<table>");
|
|
||||||
$numPa = 0;
|
|
||||||
|
|
||||||
foreach ($lesParticipants as $unParticipant) {
|
|
||||||
if ( $unParticipant['rOrdre'] == 1 AND $numPa < 7) {
|
|
||||||
$numPa = $numPa+1;
|
|
||||||
$participant=$unParticipant['uNom'] . " " . $unParticipant['uPrenom'];
|
|
||||||
echo("<tr> <th style='width:180px;'>" . $participant . "</th> <td>x</td> </tr>");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
echo(" </table>
|
|
||||||
</fieldset></td>
|
|
||||||
<td style='border :0px;'>
|
|
||||||
<fieldset><legend>(suite)</legend>
|
|
||||||
<table>");
|
|
||||||
$numP = 0;
|
|
||||||
foreach ($lesParticipants as $unParticipant) {
|
|
||||||
if ($unParticipant['rOrdre'] == 1 ) {
|
|
||||||
$numP = $numP+1;
|
|
||||||
if ($numP > 7) {
|
|
||||||
$participant = $unParticipant['uNom'] . " " . $unParticipant['uPrenom'];
|
|
||||||
echo("<tr> <th style='width:180px;'>".$participant."</th> <td>x</td> </tr>");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
while ($numP<14) {
|
|
||||||
echo("<tr> <th>...</th>
|
|
||||||
|
|
||||||
<td> </td> </tr>");
|
<p>Lorem Elsass ipsum réchime amet non <span class="infobulle" aria-label="texte de l'infobulle">Choucroute</span>
|
||||||
$numP = $numP+1;
|
Picon bière Coopé knack tchao bissame hopla</p>
|
||||||
}
|
|
||||||
echo(" </table>
|
|
||||||
</fieldset>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<fieldset><legend>Observations</legend>
|
|
||||||
<table style='border: 0px solid white;'>
|
|
||||||
<tr>
|
|
||||||
<td>".$infosIntervention['commentaire1']."</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>");
|
|
||||||
/*================================================================================================== Onglet (2) */
|
|
||||||
|
|
||||||
echo ("
|
</div>
|
||||||
<div style='display: none;' class='unOnglet' id='contenuOnglet2'>
|
|
||||||
<fieldset><legend>XXXX</legend>
|
|
||||||
<table>
|
|
||||||
<tr><th style='width:130px;'>.....</th></tr>
|
|
||||||
<tr><td>xxxx</td></tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>");
|
|
||||||
|
|
||||||
/*================================================================================================== Onglet 3 */
|
|
||||||
echo ("
|
|
||||||
<div style='display: none;' class='unOnglet' id='contenuOnglet3'>
|
|
||||||
<fieldset><legend>XXXX</legend>
|
|
||||||
<table>
|
|
||||||
<tr><th style='width:130px;'>.....</th></tr>
|
|
||||||
<tr><td>xxxx</td></tr>
|
|
||||||
</table>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>");
|
|
||||||
?>
|
|
74
vues/v_nouvelleIntervention.php
Normal file
74
vues/v_nouvelleIntervention.php
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<div class="nouvelleInter">
|
||||||
|
<h1>Nouvelle intervention</h1>
|
||||||
|
<div class="formulaire" >
|
||||||
|
<form action="" id="formulaireInter">
|
||||||
|
|
||||||
|
<label for="motif">Motif de l'intervention : </label>
|
||||||
|
<select name="motif" id="motifInter">
|
||||||
|
<?php
|
||||||
|
foreach ($lesMotifs as $key => $type) {
|
||||||
|
echo '<optgroup label="' . $key . '">';
|
||||||
|
foreach ($type as $motif) {
|
||||||
|
echo ' <option value="' . $motif['pIndice']
|
||||||
|
. '" data-time="' . $motif['pPlancher']
|
||||||
|
. '" data-effectif="' . $motif['pPlafond'] .'" >'
|
||||||
|
. $motif['pLibelle'] . '</option>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<label for="adresse">Adresse de l'intervention : </label>
|
||||||
|
<input type="text" id="adresse" name="adresse">
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<label for="caserne">Caserne la plus proche : </label>
|
||||||
|
<select name="caserne" id="caserneInter">
|
||||||
|
<?php
|
||||||
|
foreach ($lesCasernes as $uneCaserne) {
|
||||||
|
echo '<option value="' . $uneCaserne['cId'] . '">' . $uneCaserne['cNom'] . ' - ' . $uneCaserne['cAdresse'] . '</option>\n';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<label for="commentaire">Commentaire sur l'intervention : </label>
|
||||||
|
<textarea name="commentaire" id="" cols="auto" rows="5"></textarea>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="selectionPompier">
|
||||||
|
<div id="pompierDispo" class="pompierDispo" ondrop="dropHandler(event)" ondragover="dragoverHandler(event)">
|
||||||
|
<!-- Liste des pompiers appelable -->
|
||||||
|
<?php
|
||||||
|
$pCis = isset($_GET['caserne']) ? $_GET['caserne'] : 2904;
|
||||||
|
foreach ($lesPompiers as $key => $pompier):
|
||||||
|
?>
|
||||||
|
<div id="<?= $pompier['pId'] ?>" class="<?= $pompier['pLibelle'] ?>"
|
||||||
|
style="background-color: <?= $pompier['pValeur'] ?>" draggable="true"
|
||||||
|
data-intervention="<?= $pompier['enIntervention'] ?>" ondragstart="dragstartHandler(event)">
|
||||||
|
<?= $pompier['pPrenom'] ?>
|
||||||
|
<?= $pompier['pNom'] ?>
|
||||||
|
(
|
||||||
|
<?= $pompier['statut'] ?>)
|
||||||
|
</div>
|
||||||
|
<?php endforeach ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="target" ondrop="dropHandler(event)" ondragover="dragoverHandler(event)"
|
||||||
|
ondragstart="dragstartHandler(event)" class="pompierIntervenant">
|
||||||
|
<p id="nbPompierCons">Nombre de pompiers conseillé: 4</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<center><button type="submit" id="sendInter">Envoyer l'intervention</button></center>
|
||||||
|
|
||||||
|
<script src="include/gestionInterventions.js" type="text/javascript"></script>
|
@ -1,9 +1,16 @@
|
|||||||
<!-- Derniere modification le 18/09/2023 par Pascal Blain -->
|
<!-- Derniere modification le 18/09/2023 par Pascal Blain -->
|
||||||
<!-- Division pour le pied de page -->
|
<!-- Division pour le pied de page -->
|
||||||
|
<a href="index.php?choixTraitement=interventions&action=nouvelle">
|
||||||
|
<button type="button" style="margin: 0 auto; display: block; width: auto; background-color: green;"> Nouvelle
|
||||||
|
intervention</button>
|
||||||
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<hr /><p style="text-align:center;">
|
<hr />
|
||||||
<img src="images/castel.png" style="vertical-align: middle;">
|
<p style="text-align:center;">
|
||||||
<?php echo "Lycée Le Castel à Dijon - BTS SIO - <img src='images/copyleft.png' style='text-align: center; vertical-align: middle;'> 2023 Pierre Renaudot";?></p>
|
<img src="images/castel.png" style="vertical-align: middle;">
|
||||||
|
<?php echo "Lycée Le Castel à Dijon - BTS SIO - <img src='images/copyleft.png' style='text-align: center; vertical-align: middle;'> 2023 Pierre Renaudot"; ?>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -19,13 +19,23 @@
|
|||||||
<?php
|
<?php
|
||||||
echo (" <table>
|
echo (" <table>
|
||||||
<tr> <th>Indice</th> <td>");
|
<tr> <th>Indice</th> <td>");
|
||||||
if ($action==="ajouter") {echo "<input class='controle' type='text' name='valeur' value='".$infosParam['pIndice']."'>";}
|
if ($action === "ajouter") {
|
||||||
else {echo $infosParam['pIndice'];}
|
echo "<input class='controle' type='text' name='valeur' value='" . $infosParam['pIndice'] . "'>";
|
||||||
|
} else {
|
||||||
|
echo $infosParam['pIndice'];
|
||||||
|
}
|
||||||
echo (" </td> </tr>
|
echo (" </td> </tr>
|
||||||
<tr> <th>Valeur</th> <td>");
|
<tr> <th>Valeur</th> <td>");
|
||||||
if ($action==="ajouter") {echo "<input class='controle' type='text' name='zLibelle'>";$actif=null;}
|
if ($action === "ajouter") {
|
||||||
if ($action==="modifier") {echo "<input class='controleLong' type='text' name='zLibelle' value='".$infosParam['pLibelle']."'>";$actif=null;}
|
echo "<input class='controle' type='text' name='zLibelle'>";
|
||||||
if ($action==="supprimer") {echo $infosParam['pLibelle'];$actif="disabled='disabled'";}
|
$actif = null;
|
||||||
|
} else if ($action === "modifier") {
|
||||||
|
echo "<input class='controleLong' type='text' name='zLibelle' value='" . $infosParam['pLibelle'] . "'>";
|
||||||
|
$actif = null;
|
||||||
|
} else if ($action === "supprimer") {
|
||||||
|
echo $infosParam['pLibelle'];
|
||||||
|
$actif = "disabled='disabled'";
|
||||||
|
}
|
||||||
echo (" </td> </tr>");
|
echo (" </td> </tr>");
|
||||||
echo ("
|
echo ("
|
||||||
<tr> <th>Plancher</th> <td><input class='controle' type='text' name='zPlancher' value='".$infosParam['pPlancher']."'></td> </tr>
|
<tr> <th>Plancher</th> <td><input class='controle' type='text' name='zPlancher' value='".$infosParam['pPlancher']."'></td> </tr>
|
||||||
@ -39,7 +49,7 @@ echo ("
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p align="right">
|
<p style='margin: 0 auto;'>
|
||||||
<input type="hidden" name="zOk" value="OK">
|
<input type="hidden" name="zOk" value="OK">
|
||||||
<input type="image" name="btValider" alt="Valider" src="images/valider.jpg" onclick="this.form.submit();">
|
<input type="image" name="btValider" alt="Valider" src="images/valider.jpg" onclick="this.form.submit();">
|
||||||
<input type="image" name="btAnnuler" alt="Annuler" src="images/annuler.jpg" onclick="annuler('frmParam');">
|
<input type="image" name="btAnnuler" alt="Annuler" src="images/annuler.jpg" onclick="annuler('frmParam');">
|
||||||
|
@ -1,22 +1,21 @@
|
|||||||
<!-- v_unPompier.php / Derniere modification le 18 septembre 2023 par Pascal Blain -->
|
<!-- v_unPompier.php / Derniere modification le 18 septembre 2023 par Pascal Blain -->
|
||||||
<div id="contenu">
|
<div id="contenu">
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Boutons d'action a coté du nom
|
* Boutons d'action a coté du nom
|
||||||
* *lesInfosPompiers = pdo->getInfosPompier());
|
* *lesInfosPompiers = pdo->getInfosPompier());
|
||||||
*/
|
*/
|
||||||
if ($_REQUEST['action'] == "supprimer") {
|
if ($_REQUEST['action'] == "supprimer") {
|
||||||
echo '<h2>SUPPRESSION DU POMPIER '.$lesInfosPompier['nom'].' '.$lesInfosPompier['prenom'].'</h2>';
|
echo '<h2>SUPPRESSION DU POMPIER ' . $lesInfosPompier['nom'] . ' ' . $lesInfosPompier['prenom'] . '</h2>';
|
||||||
echo (
|
echo (
|
||||||
'<form name="frmA" action="index.php?choixTraitement=pompiers&action=validerSupprimer&type='
|
'<form name="frmA" action="index.php?choixTraitement=pompiers&action=validerSupprimer&type='
|
||||||
. $lesInfosPompier['pType']
|
. $lesInfosPompier['pType']
|
||||||
. '&agent=' . $lesInfosPompier['id']
|
. '&agent=' . $lesInfosPompier['id']
|
||||||
. '&caserne=' . $lesInfosPompier['pCis']
|
. '&caserne=' . $lesInfosPompier['pCis']
|
||||||
. '" method="post">');
|
. '" method="post">');
|
||||||
}
|
}
|
||||||
if ($_REQUEST['action'] == "modifier") {
|
if ($_REQUEST['action'] == "modifier") {
|
||||||
var_dump($lesInfosPompier);
|
echo ('
|
||||||
echo ('
|
|
||||||
<h2>MODIFICATION DU POMPIER '
|
<h2>MODIFICATION DU POMPIER '
|
||||||
. $lesInfosPompier['nom'] . ' '
|
. $lesInfosPompier['nom'] . ' '
|
||||||
. $lesInfosPompier['prenom'] . '</h2>'
|
. $lesInfosPompier['prenom'] . '</h2>'
|
||||||
@ -29,21 +28,24 @@
|
|||||||
. '" method="post">'
|
. '" method="post">'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if ($_REQUEST['action'] == "ajouter") {
|
if ($_REQUEST['action'] == "ajouter") {
|
||||||
echo "<h2>AJOUT D'UN NOUVEAU POMPIER</h2>";
|
echo "<h2>AJOUT D'UN NOUVEAU POMPIER</h2>";
|
||||||
echo '
|
|
||||||
<form name="frmA" action="index.php?choixTraitement=pompiers&action=validerAjouter&type='
|
//action = index.php?choixTraitement=pompiers&action=validerAjouter&type=''
|
||||||
. $lesInfosPompier['pType'].'" method="post" onsubmit="return valider(this)">';
|
//onsubmit="return valider(this)">
|
||||||
}
|
echo('
|
||||||
echo ("
|
<form class="dataPompierAjout" name="frmA" action="index.php?choixTraitement=pompiers&action=validerAjouter&type="
|
||||||
|
method="post"
|
||||||
|
');
|
||||||
|
echo ("
|
||||||
<table style='border: 0px solid white;'>
|
<table style='border: 0px solid white;'>
|
||||||
<tr>
|
<tr>
|
||||||
<td style='border :0px;'>
|
<td style='border :0px;'>
|
||||||
<fieldset><legend>Coordonnées</legend>
|
<fieldset><legend>Coordonnées</legend>
|
||||||
<table>
|
<table>
|
||||||
");
|
");
|
||||||
if ($_REQUEST['action'] == "supprimer"){ //-------------------------------------------------------- cas suppression
|
if ($_REQUEST['action'] == "supprimer") { //-------------------------------------------------------- cas suppression
|
||||||
echo ("
|
echo ("
|
||||||
<div style='display: none;' class='unOnglet' id='contenuOnglet3'>
|
<div style='display: none;' class='unOnglet' id='contenuOnglet3'>
|
||||||
<table style='border: 0px solid white;'>
|
<table style='border: 0px solid white;'>
|
||||||
<tr>
|
<tr>
|
||||||
@ -51,37 +53,93 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
");
|
");
|
||||||
}
|
}
|
||||||
//------------------------------------------------------------------------------------ cas ajout ou modification
|
//------------------------------------------------------------------------------------ cas ajout ou modification
|
||||||
|
|
||||||
if ($_REQUEST['action'] == "modifier") {
|
if ($_REQUEST['action'] == "modifier") {
|
||||||
echo (" <tr>
|
echo (" <tr>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
");
|
");
|
||||||
}
|
}
|
||||||
if ($_REQUEST['action'] == "ajouter") {
|
if ($_REQUEST['action'] == "ajouter") {
|
||||||
echo (" <tr><th style='width:130px;'>Nom</th> <td style='width:130px;'><input id='ztNom' type='text' name='ztNom'></td> </tr>
|
// <input name='pId' class='infoPompier' value='" . $lesInfosPompier['id'] . "' >
|
||||||
|
|
||||||
|
echo ("
|
||||||
|
<tr><th style='width:130px;'>Nom*</th> <td style='width:130px;'><input name='ztNom' id='newName' type='text' class='infoPompier' required></td> </tr>
|
||||||
|
<tr><th>Prénom*</th> <td> <input name='ztPrenom' id='newUsername' type='text' class='infoPompier infoPompier-chef' required></td> </tr>
|
||||||
|
<tr><th>Adresse</th> <td> <input name='ztAdresse' type='text' class='infoPompier infoPompier-chef' ></td> </tr>
|
||||||
|
<tr><th>Code postal</th> <td> <input name='ztCodePostal' type='text' class='infoPompier infoPompier-chef' ></td> </tr>
|
||||||
|
<tr><th>Ville</th> <td> <input name='ztVille' type='text' class='infoPompier infoPompier-chef' ></td> </tr>
|
||||||
|
<tr><th>Téléphone*</th> <td> <input name='ztTel' type='text' class='infoPompier-chef' required></td> </tr>
|
||||||
|
<tr><th>Adresse électronique*</th> <td> <input name='ztMail' type='text' class='infoPompier infoPompier-chef' required></td> </tr>
|
||||||
|
<tr><th>Nom de compte*</th> <td><input name='ztLogin' id='newLogin' type='text' class='infoPompier infoPompier-chef' required></td></tr>
|
||||||
|
<tr><th style='width:130px;'>Code</th> <td><input name='zCis' id='inputDisabled' type='text' class='infoPompier-chef' value='" . $lesInfosPompier['pCis'] . "' disabled></td> </tr>
|
||||||
|
<tr><th>Nom</th> <td>" . $lesInfosPompier['cNom'] . "</td> </tr>
|
||||||
|
<tr><th>Adresse</th> <td>" . $lesInfosPompier['cAdresse'] . "</td> </tr>
|
||||||
|
<tr><th>Téléphone</th> <td>" . $lesInfosPompier['cTel'] . "</td> </tr>
|
||||||
|
<tr><th>Groupement</th> <td>" . $lesInfosPompier['cGroupement'] . "</td> </tr>
|
||||||
|
|
||||||
|
<tr><th>Type</th> <td>
|
||||||
|
<select name='lstType' class='infoPompier-chef'>");
|
||||||
|
foreach ($pdo->getParametre('typePer') as $key => $value) {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
||||||
|
}
|
||||||
|
echo ("</td> </tr>
|
||||||
|
<tr><th>Grade</th> <td>
|
||||||
|
<select name='lstGrade' class='infoPompier-chef'>");
|
||||||
|
foreach ($pdo->getParametre('grade') as $key => $value) {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
echo ("</td> </tr>
|
||||||
|
|
||||||
|
<tr><th>Statut</th> <td>
|
||||||
|
<select name='lstStatut' class='infoPompier-chef'>");
|
||||||
|
foreach ($pdo->getParametre('statAgt') as $key => $value) {
|
||||||
|
echo ("<option value=" . $value['pIndice'] . "> " . $value['pLibelle'] . "</option>");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
echo ("</td> </tr>
|
||||||
<br />");
|
<br />");
|
||||||
}
|
|
||||||
?>
|
|
||||||
<table style='border: 0px solid white; '>
|
|
||||||
<tr>
|
|
||||||
<td style='border: 0px solid white;'>
|
|
||||||
<fieldset><legend>Observations</legend>
|
|
||||||
<textarea name='ztObs' cols='70' rows='1'></textarea>
|
|
||||||
</fieldset>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<input type="image" name="btValider" alt="Valider" src="images/valider.jpg" value="OK" >
|
|
||||||
<input type="image" name="btAnnuler" alt="Annuler" src="images/annuler.jpg" value="nonOK" onclick="annuler('frmA');">
|
|
||||||
</td>
|
|
||||||
<td style='border: 0px solid white; witdh:130px; text-align:right;'>
|
|
||||||
<input type="hidden" name="zTypeAdm" value="<?php// if ($type=="adm") {echo ("true");} else {echo ("false");} ?>">
|
|
||||||
<input type="hidden" name="zOk" value="OK">
|
|
||||||
|
|
||||||
</td>
|
echo ("
|
||||||
</tr>
|
</td> </tr>
|
||||||
</table>
|
</table>
|
||||||
</form>
|
</fieldset></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<fieldset><legend>Observations</legend>
|
||||||
|
<table style='border: 0px solid white;'>
|
||||||
|
<tr>
|
||||||
|
<td> <input name='ztObservation' type='text' class='infoPompier' value='" . $lesInfosPompier['pCommentaire'] . "' ></td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</fieldset>
|
||||||
|
<div style='text-align:center; '>
|
||||||
|
<p class='notif-ajout' style:'margin: 10px'></p>
|
||||||
|
<input type= 'image' class='btAnnulerAjout' alt='Annuler' src= 'images/Annuler.jpg'>
|
||||||
|
<input type= 'image' class='validerAjout' alt='Valider' src= 'images/Valider.jpg'>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<input type='image' class='btn-valid-modif' id='validModif' title='Modifier' src='images/valider.jpg' style='display:none; margin: 0 auto;'>
|
||||||
|
");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<table style='border: 0px solid white; '>
|
||||||
|
<tr>
|
||||||
|
<td style='border: 0px solid white; witdh:130px; text-align:right;'>
|
||||||
|
<input type="hidden" name="zTypeAdm"
|
||||||
|
value="">
|
||||||
|
<? // if ($type=="adm") {echo ("true");} else {echo ("false");} ?>
|
||||||
|
<input type="hidden" name="zOk" value="OK">
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</form>
|
Loading…
x
Reference in New Issue
Block a user