-
Notifications
You must be signed in to change notification settings - Fork 3
/
Modifieragent2.php
75 lines (73 loc) · 2.82 KB
/
Modifieragent2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
session_start();
$serveur="localhost";
$login="root";
$pass="";
$id=$_SESSION['idcng'];
$mat=$_SESSION['mat'];
$N_DATE_D=strtotime($_POST["ndd"]);
$N_DATE_F=strtotime($_POST["ndf"]);
$N_TYPE=$_POST['typeC'];
$N_SOLDE=(($N_DATE_F - $N_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)*/
$N_DATE_D = date('Y-m-d H:i:s', $N_DATE_D);
$N_DATE_F = date('Y-m-d H:i:s', $N_DATE_F);
try{
$connexion = new PDO("mysql:host=$serveur;dbname=gestionconge",$login,$pass);
$connexion->setattribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
$requete0=$connexion->prepare("SELECT NB_J , POST from AGENT where MATRICULE=$mat");
$requete0->execute();
$requete0=$requete0->fetchall();
$NBJ=$requete0[0][0];
$requete1=$connexion->prepare("SELECT SOLDE from CONGE where ID_CONGE=$id");
$requete1->execute();
$requete1=$requete1->fetchall();
$SOLDE=$requete1[0][0];
if ($N_SOLDE<=0){
if ($requete[0][1]==Chef) {
header("location:Modifierchef.php?Z=2 & D=$id");
}else{header("location:Modifieragent.php?Z=2 & D=$id");}
}elseif ($N_SOLDE>$SOLDE) {
if ($NBJ==0) {
if ($requete0[0][1]==Chef) {
header("location:Modifierchef.php?Z=0 & D=$id");
}else{
header("location:Modifieragent.php?Z=0 & D=$id");}
}elseif ($N_SOLDE>30) {
if ($requete0[0][1]==Chef) {
header("location:Modifierchef.php?Z=1 & D=$id");
}else{
header("location:Modifieragent.php?Z=1 & D=$id");}
}else{
$NN_SOLDE=$NBJ-$N_SOLDE;
if ($NN_SOLDE <0) {
if ($requete0[0][1]==Chef) {
header("location:Modifierchef.php?Z=$NBJ & D=$id");
}else{
header("location:Modifieragent.php?Z=$NBJ & D=$id");}
}else{
$requete=$connexion->prepare("UPDATE conge SET DATE_DEBUT=\"$N_DATE_D\" , DATE_FIN=\"$N_DATE_F\" , TYPE_CONGE=\"$N_TYPE\" , SOLDE=$N_SOLDE where ID_CONGE=$id");
$requete->execute();
$requete2=$connexion->prepare("UPDATE AGENT SET NB_J=$NN_SOLDE where MATRICULE=$mat");
$requete2->execute();
if ($requete0[0][1]==Chef) {
header("location:mesdemandeschef.php");
}else{
header("location:mesdemandes.php");}
}
}
}else{
$requete=$connexion->prepare("UPDATE conge SET DATE_DEBUT=\"$N_DATE_D\" , DATE_FIN=\"$N_DATE_F\" , TYPE_CONGE=\"$N_TYPE\" , SOLDE=$N_SOLDE where ID_CONGE=$id");
$requete->execute();
$NV_NBJ=$SOLDE-$N_SOLDE;
$requete2=$connexion->prepare("UPDATE AGENT SET NB_J=$NV_NBJ where MATRICULE=$mat");
$requete2->execute();
if ($requete0[0][1]==Chef) {
header("location:mesdemandeschef.php");
}else{
header("location:mesdemandes.php");}
}
}
catch(PDOEXEPTION $e){
echo'echec:'.$e->get_message();
}
?>