This repository has been archived by the owner on Oct 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
detailsannonce.php
198 lines (156 loc) · 5.28 KB
/
detailsannonce.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
require_once 'autoload.include.php';
$web=new WebPage();
$web->appendCssUrl("bootstrap/css/bootstrap.min.css");
$web->appendCssUrl("bootstrap/css/style.css");
$web->setTitle("Page avec le detail de l'annonce");
$id_annonce;
if (isset($_GET['id'])){
$id_annonce=$_GET['id'];
}
$annonce = Annonce::CreateFromID($id_annonce);
$titre = $annonce->getTitre();
$descri = $annonce->getDescription();
$date = $annonce->getDate();
$remu = $annonce->getRemuneration();
$note= $annonce->getNote();
$com = $annonce ->getCommentaire();
$id_annonceur = $annonce ->getIdAnnonceur();
$id_travailleur = $annonce ->getIdTravailleur();
if($id_travailleur != null){
$travailleur = Particulier::createParticulierById($id_travailleur);
$nom_travailleur = $travailleur ->getNom();
$prenom_travailleur = $travailleur ->getPrenom();
}
else{
$nom_travailleur = "";
$prenom_travailleur = "";
}
$particulier= Particulier::createParticulierById($id_annonceur);
$nom_particulier = $particulier->getNom();
$prenom_particulier = $particulier->getPrenom();
$html =<<<HTML
<table class="table table-striped">
<tr height=50>
<th colspan=2 >Detail de l'annonce</th>
</tr>
<tr>
<tr height=50 width=0.5>
<th width=0.5>Titre de l'annonce</th><td>{$titre}</td>
</tr>
<tr height=50 width=0.5 onclick="window.open('carteVisite.php?ida={$id_annonceur}')">
<th width=0.5>Personne deposant l'annonce</th><td>{$prenom_particulier} {$nom_particulier}</td>
</tr>
<tr height=50 width=0.5 onclick="window.open('carteVisite.php?idt={$id_travailleur}')">
<th width=0.5>Personne executant l'annonce</th><td >{$prenom_travailleur} {$nom_travailleur}</td>
</tr>
<tr height=50 width=0.5>
<th width=0.5>Description de l'annonce</th><td>{$descri}</td>
</tr>
<tr height=50 width=0.5>
<th width=0.5>date de l'annonce</th><td>{$date}</td>
</tr>
<tr height=50 width=0.5>
<th width=0.5>Remuneration de l'annonce</th><td>{$remu} €</td>
</tr>
HTML;
if($note != null && $note != 0){
$html .=<<<HTML
<tr height=50 width=0.5>
<th width=0.5>Note de l'annonce</th><td>{$note}</td>
</tr>
HTML;
}
if($com != null && $com != ""){
$html .=<<<HTML
<tr height=50 width=0.5>
<th width=0.5>Commentaire de l'annonce</th><td>{$com}</td>
</tr>
HTML;
}
$html .=<<<HTML
</table>
HTML;
try {
// Tentative de connexion
$user = Utilisateur::createFromSession() ;
$postulant= Annonce::getPostulantByIdAnnonce($id_annonce);
// var_dump($antoine);
if($user->getId()!=$id_annonceur){
$html.=<<<HTML
<input type="button" name="postuler" id="bouton" value="Postuler a cette annonce" style="width:200px" onclick="cacher()">
<div id="form" style="display:none">
<form name="accepterAnnonce" method="post" action="recupFormPostuAnno.php" >
<input type="hidden" value = "{$user->getId()}" name="id_postulant">
<input type="hidden" value = "{$id_annonce}" name="id_annonce">
<label for="pourquoi">Dites a l'annonceur pourquoi il devrait vous choisir :</label> <textarea name="pourquoi"></textarea> <br/>
<label for="remuneration"> Proposez une remuneration :</label> <input type="intval" name="remuneration"/> <br/>
<input type="submit" name="valider" value="Envoyer"/>
</form>
</div>
<script>
function cacher(){
$("div#form").css("display","block");
$("#bouton").css("display","none");
}
</script>
HTML;
}
else {
$html .=<<<HTML
<table class="table table-striped">
<tr>
<th colspan=4>Postulation Disponible</th>
</tr>
<tr>
<th>Nom du postulant</th>
<th>Son texte pour vous convaincre</th>
<th>Remuneration propose</th>
<th></th>
</tr>
HTML;
foreach($postulant as $postulants){
//var_dump($postulants);
$id_postulant = $postulants['id_Utilisateur'];
$postulant = Particulier::createParticulierById($id_postulant);
$nom_postulant = $postulant ->getNom();
$prenom_postulant = $postulant ->getPrenom();
$mail_postulant= $postulant->getMail();
$descri = $postulants['pourquoi'];
$remu = $postulants['remuneration_Souhaite'];
$html.="<tr>
<td width=100 align='left' >{$prenom_postulant} {$nom_postulant}</td>
<td width=100 align='left'>{$descri}</td>
<td width=100 align='left'>{$remu}</td>
<td width=100 align='left'> <input type='button' name='lien1' value='Accepter' onclick='valid()'></td>
</tr>";
}
$html .= <<<HTML
<script>
function valid(){
$.ajax({
type:"POST",
url: "accepterPostulation.php",
data: {"id_postulant":$id_postulant,"id_annonce":$id_annonce},
dataType : "text",
succes: function(){
}
});
}
</script>
</table>
HTML;
}
}
catch (AuthenticationException $e) {
// Récuperation de l'exception si connexion échouée
$web->appendContent("Échec d'authentification : {$e->getMessage()} Mauvais login/mot de passe") ;
echo('<meta http-equiv="refresh" content="0; URL=connexion.php">');
}
catch (Exception $e) {
$web->appendContent("Un problème est survenu : {$e->getMessage()} Veuillez vous connecter ! ");
echo('<meta http-equiv="refresh" content="0; URL=connexion.php">');
}
//include('FormPostuleAnnonce.html');
$web ->appendContent($html);
echo $web->toHTML();