-
Notifications
You must be signed in to change notification settings - Fork 3
/
ajouter-demande.php
57 lines (53 loc) · 1.88 KB
/
ajouter-demande.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
session_start();
$serveur="localhost";
$login="root";
$pass="";
$id=$_SESSION['mat'];
$DATE_D=$_POST['dd'];
$DATE_F=$_POST['df'];
$TYPE=$_POST['type'];
$SOLDE=((strtotime($DATE_F) - strtotime($DATE_D))/86400);/*le diviser la durée par 86400 pour avoir le nombre de jours, parce que le résultat est en seconde! (60*60*24)*/
try{
$connexion = new PDO("mysql:host=$serveur;dbname=gestionconge",$login,$pass);
$connexion->setattribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
$requete=$connexion->prepare("SELECT NB_J , POST from AGENT where MATRICULE=$id");
$requete->execute();
$requete=$requete->fetchall();
$NBJ=$requete[0][0];
if ($NBJ==0) {
if ($requete[0][1]==Chef) {
header("location:demanderchef.php?D=0");
}else{header("location:demander.php?D=0");}
}elseif ($SOLDE<=0){
if ($requete[0][1]==Chef) {
header("location:demanderchef.php?D=3");
}else{header("location:demander.php?D=3");}
}elseif($SOLDE>30) {
if ($requete[0][1]==Chef) {
header("location:demanderchef.php?D=1");
}else{header("location:demander.php?D=1");}
}else{
$N_SOLDE=$NBJ-$SOLDE;
if ($N_SOLDE <0) {
if ($requete[0][1]==Chef) {
header("location:demanderchef.php?DD=$NBJ");
}else{header("location:demander.php?DD=$NBJ");}
}else{
$requete1=$connexion->prepare("
INSERT INTO conge (MATRICULE,DATE_DEBUT,DATE_FIN,TYPE_CONGE, SOLDE)
VALUES ('$id','$DATE_D','$DATE_F','$TYPE','$SOLDE')");
$requete1->execute();
$requete2=$connexion->prepare("UPDATE AGENT
SET NB_J=$N_SOLDE where MATRICULE=$id");
$requete2->execute();
if ($requete[0][1]==Chef) {
header("location:demanderchef.php?D=2");
}else{header("location:demander.php?D=2");}
}
}
}
catch(PDOEXEPTION $e){
echo'echec:'.$e->get_message();
}
?>