You are not logged in.

Announcement

 Téléchargez la dernière version stable de GLPI      -     Et vous, que pouvez vous faire pour le projet GLPI ? :  Contribuer
 Download last stable version of GLPI                      -     What can you do for GLPI ? :  Contribute

#1 2005-01-20 13:44:50

Jm0u
Member
Registered: 2005-01-05
Posts: 910

Besoin d'aide

Bonjour,

Mon but est de rajouté une collone lorsque que l'on a la liste de tout les ordinateurs.

J'ai ajouter les lignes de commande dans /glpi/glpi/computers/functions.php

voici les lignes rajoutées aprés ligne 280:

##

echo "<th>";
if ($sort=="comp.otherserial") {echo "<img src=\"".$HTMLRel."pics/puce-down.gif\" alt='' title=''>";
            }
echo "<a href=\"$target?field=$field&phrasetype=$phrasetype&contains=$contains&sort=comp.otherserial&order=ASC&start=$start\">";
echo $lang["computers"][18]."</a></th>";
echo "</tr>";

##

ainsi que  celle la :

##
for ($i=0; $i < $numrows_limit; $i++) {
                $ID = $db->result($result_limit, $i, "ID");
                $comp = new Computer;
                $comp->getfromDB($ID,0);
                echo "<tr class='tab_bg_2'>";
                echo "<td><b>";
                echo "<a href=\"".$cfg_install["root"]."/computers/computers-info-form.php?ID=$ID\">";
                echo $comp->fields["name"]." (".$comp->fields["ID"].")";
                echo "</a></b></td>";
                echo "<td>".$comp->fields["serial"]."</td>";
                                echo "<td>". getDropdownName("glpi_type_computers",$comp->fields["type"]) ."</td>";
                echo "<td>". getDropdownName("glpi_dropdown_os",$comp->fields["os"]) ."</td>";
                echo "<td>". getDropdownName("glpi_dropdown_locations", $comp->fields["location"]) ."</td>";
                echo "<td>".$comp->fields["date_mod"]."</td>";
                echo "<td>".$comp->fields["contact"]."</td>";
                                                                echo "<td>".$comp->fields["comp.otherserial"]."</td>";   celle ci             
                                echo "</tr>";
            }

##

La collonne s'affiche bien mais le probléme est que rien n'y figure, alors que dans la basse SQL dans otherserial il y a un numéros.

Est ce que j'ai oublié quelque chose ?

Merci d'avance.

Jm0u.

Last edited by Jm0u (2005-01-20 13:47:49)


Navigateurs : Chrome
Installation : Package GLPI 0.84.2
Serveur  : Apache 2 / Base : 5.0.15 / Langage : PHP 4.4.1 pl1 / PhpMyAdmin 2.6.4-pl3

Offline

#2 2005-01-20 15:25:48

Jm0u
Member
Registered: 2005-01-05
Posts: 910

Re: Besoin d'aide

Probléme résolu.

Merci quand même.

Jm0u


Navigateurs : Chrome
Installation : Package GLPI 0.84.2
Serveur  : Apache 2 / Base : 5.0.15 / Langage : PHP 4.4.1 pl1 / PhpMyAdmin 2.6.4-pl3

Offline

Board footer

Powered by FluxBB