ANNEXES
Annexe 1 : Planning de déroulement du projet
;
Annexe 2 : coût estimatif du projet ;
Annexe 3 : quelques codes HTML, PHP et quelques script
JAVA .
|
Mémoire de Fin de formation du cycle des
Ingénieurs des travaux de
télécommunications
|
ANNEXES
|
Annexe 1 : Planning de déroulement du
projet
|
Mémoire de Fin de formation du cycle des
Ingénieurs des travaux de télécommunications
ANNEXES
|
Annexe 2 : coût estimatif du projet
finalisé d'implémentation d'un « Planning Tool »
Nom de la tâche
|
Durée (en semaine)
|
Nombre de ressources ( Personne)
|
coût unitaire (Fr./jr/personne)
|
Coût Net (Franc CFA)
|
|
|
|
|
|
Etude de faisabilité
|
5
|
2
|
25 000
|
250 000
|
Analyse des bésoins
|
8
|
|
35 000
|
440 000
|
definition du cahier de charges
|
8
|
2
|
25 000
|
400 000
|
définition des logiciels à utiliser
|
2
|
2
|
10 000
|
40 000
|
Développement
|
10
|
|
42 500
|
1 012 500
|
modélisation des diagrammes UML
|
10
|
3
|
25 000
|
750 000
|
conception de la BD
|
5
|
3
|
7 500
|
112 500
|
developpement WEB
|
5
|
3
|
10 000
|
150 000
|
Tests
|
10
|
|
25 000
|
225 000
|
test en localhost
|
5
|
3
|
10 000
|
150 000
|
test dans SI de l'entreprise
|
5
|
1
|
15 000
|
75 000
|
Installation
|
10
|
|
15 000
|
450 000
|
mise en oeuvre dans l'entreprise
|
10
|
3
|
15 000
|
450 000
|
Formation du personnel
|
6
|
|
45 000
|
180 000
|
personnel R&D et DG
|
2
|
2
|
15 000
|
60 000
|
personnel DT
|
2
|
2
|
15 000
|
60 000
|
personnel service client et Compta
|
2
|
2
|
15 000
|
60 000
|
Suivi et Observation du projet
|
11
|
|
15 000
|
322 500
|
verifications
|
10
|
1
|
7 500
|
75 000
|
amélioration
|
11
|
3
|
7 500
|
247 500
|
Imprévus (5%)
|
|
121
|
500
|
Gestion du Projet
|
|
275
|
000
|
Coût total du projet
|
3
|
016
|
500
|
|
Mémoire de Fin de formation du cycle des
Ingénieurs des travaux de télécommunications
ANNEXES
|
Annexe 3 : quelques codes HTML, PHP et quelques
script JAVA
- Script permettant l'affichage dans un tableau des
enregistrements de la table employé :
<?php
$host="localhost"; $user="makemta"; $password="makemta";
mysql_connect($host,$user,$password);
$sql = mysql_db_query ("satcom", "select * from
enregistrement");
$sql1 = mysql_db_query ("satcom", "select count(*) as dat from
enregistrement"); //dat correspond à la valeur de la fonction
count(*)
// la fonction count(*) donne le nombre d'enregistrement dans une
table de la BD
while ($data1 = mysql_fetch_object ($sql1)){
$dat=$data1->dat;
}
$row = 0;
//('$code_enregistr','$nom_client','$date','$tel_client','$ville','$quartier','$type_prestation','$cout_di
agnostiq''$manifestation_panne')
for($i= 0; $i<$dat; $i++){
while ($data = mysql_fetch_object($sql)): //$data =
mysql_fetch_object ($sql) $code_enregistr[$row]= $data->code_enregistr;
$nom_client[$row]= $data->nom_client."<BR>" ;
$date[$row]=$data->date."<BR>";
$tel_client[$row]=$data->tel_client."<BR>";
$ville[$row]=$data->ville."<BR>";
$quartier[$row]=$data->quartier."<BR>";
$type_prestation[$row]=$data->type_prestation."<BR>";
$cout_diagnostiq[$row]=$data->cout_diagnostiq."<BR>";
$manifestation_panne[$row]=$data->manifestation_panne."<BR>";
$row++;
endwhile;}
?>
<?php
//$_nom=explode("|",$nom); //mysql_freeresult ($sql);
//mysql_close ($db_conn); ?>
<html>
<style type="text/css"> <!--
.Style10 {color: #0000FF} .Style11 {color: #0000CC} .Style12
{color: #0033CC}
|
Mémoire de Fin de formation du cycle des
Ingénieurs des travaux de télécommunications
ANNEXES
|
.Style13 {color: #000099}
-->
</style>
<body><h1> SATCOM PLANNING TOOL </h1>
<table border="1" align="center" cellspacing="0" >
<tr><td align="center" bgcolor="#00FF66"><span
class="Style10">Code enregistrement</span></td>
<td align="center" bgcolor="#00FF66"><span
class="Style11">Nom Client</span></td> <td align="center"
bgcolor="#00FF66"><span
class="Style11">Date</span></td>
<td align="center" bgcolor="#00FF66"><span
class="Style12">Tel. Client</span></td> <td align="center"
bgcolor="#00FF66"><span
class="Style13">Ville</span></td>
<td align="center" bgcolor="#00FF66"><span
class="Style11">Quartier</span></td>
<td align="center" bgcolor="#00FF66"><span
class="Style12">Type prestation</span></td> <td
align="center" bgcolor="#00FF66"><span
class="Style13">Coutdiagnostique</span></td> <td
align="center" bgcolor="#00FF66"><span class="Style13">Manifestation
panne</span></td>
</tr>
<?php for($i=0; $i<$dat; $i++)
{?>
<trbgcolor="#0099FF">
<td><?php echo
$code_enregistr[$i];?></td><td><?php echo $nom_client[$i];
?></td><td><?php echo $date[$i];?></td><td>
<?php echo $tel_client[$i];?></td><td><?php
echo $ville[$i]; ?></td><td><?php echo
$quartier[$i]; ?></td><td><?php echo
$type_prestation[$i]; ?></td><td><?php echo
$cout_diagnostiq[$i]; ?></td><td><?php echo
$manifestation_panne[$i]; ?></td>
</tr>
<?php } ?>
</table> </body> </html>
- Script permettant l'identification des employés
:
<html> <head>
<title>espaceemployé</title>
</head> <body>
<?php
if(isset($_POST['login'])) $login = $_POST['login'];
else $login="";
if(isset($_POST['password'])) $password =$_POST['password']; else
$password="";
if(empty($login))
{
echo'Remplir le champs login SVP';include("index.html");
}
else if(empty($password))
{
echo'Remplir le champs Password SVP';include("index.html");
}
|
Mémoire de Fin de formation du cycle des
Ingénieurs des travaux de télécommunications
ANNEXES
|
else
{
$db = mysql_connect('localhost','makemta','makemta') or
die('Erreur'.mysql_error()); mysql_select_db('satcom',$db) or
die('Erreur'.mysql_error());
$rep='SELECT * FROM employe';
$sql=mysql_query($rep) or die('ErreurSQL'.mysql_error());
$n=1;
while($data =mysql_fetch_assoc($sql))
{
if($data['login']== $login )
{
if($data['password']== $password)
{
$n=0;
include ("peenregistrement.html");
}
}
}
if($n==1)
{
include ("index.html");
}
mysql_close();
}
?>
</body> </html> </body> </html>
|