You are not logged in.
Bonjour,
Pour commencer, très beau boulot. Vraiment, je trouve GLPI très bien. Je l'utilise dans ma société pour gerer notre parc informatique.
J'ai penser à une amélioration concernant les rapports. Est-t-il possible d'afficher le 'prix' du materiel dans une colone en plus du Nom du Lieu etc... Cela pourrait etre utile non ?
Qu'en pensez vous ?
Bon courage pour la suite, vous faite du très bon boulot.
Zitoirz
Offline
Bonjour,
appel aux développeurs, afin d'aider cet utilisateur, pouvez vous corriger mes erreurs, me dire ce qui manque ou ce qui ne va pas svp. Merci.
Fichier parswitch-list.php
include ("_relpos.php");
include($phproot . "/glpi/networking/_relpos.php");
include ($phproot . "/glpi/includes.php");
include ($phproot . "/glpi/includes_networking.php");
checkAuthentication("normal");
//$item_db_name[0] = "glpi_computers";
//$item_db_name[1] = "glpi_networking";
//$item_db_name[2] = "glpi_peripherals";
$item_db_name[0]="glpi_dropdow_location";
$db = new DB;
$query2="SELECT glpi_networking.name as switch
FROM glpi_networking
WHERE glpi_networking.id=".$_POST["switch"]."";
$result = $db->query($query2);
// Titre
if ($db->numrows($result)==1){
commonHeader("Reports",$_SERVER["PHP_SELF"]);
$ligne = $db->fetch_array($result);
$switch=$ligne['switch'];
echo "<div align='center'><h2>".$lang["reports"][49]." $switch </h2></div><br><br>";
$query="SELECT c.name as port,c.ifaddr as ip,c.ifmac as mac, c.ID AS IDport, glpi_networking.name as switch
FROM glpi_networking
LEFT JOIN glpi_networking_ports c ON c.device_type=".NETWORKING_TYPE." AND c.on_device=glpi_networking.ID
WHERE glpi_networking.id=".$_POST["switch"]."";
// ce que j'ai ajouté
$query3="SELECT c.value as prix
FROM glpi_infocoms
WHERE glpi_networking.value=".$_POST["switch"]."";
/*!
on envoie la requête de selection qui varie selon le choix fait dans la dropdown à la fonction report perso qui
affiche un rapport en fonction du switch choisi
*/
// et là
report_perso("glpi_networking_switch",$query,$query3);
commonFooter();
Satyan
Communiquer c'est commencer à exister.
Offline