Community
    • Categories
    • Recent
    • Popular
    • Users
    • Search
    • Register
    • Login

    Raumzuordnung auch für Clients und Drucker ?

    Scheduled Pinned Locked Moved Allgemein
    3 Posts 3 Posters 2.9k Views 1 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D Offline
      Dietmar
      last edited by

      Hallo,

      ich bin gerade dabei mit I-DOIT "herumzuspielen" und muss sagen, das System gefällt mir sehr gut. Allerdings vermisse ich die Möglichkeit, auch Druckern, Clients oder sonstigen Geräten einen Raum (=Standort) zuzuordnen. Ist dies irgendwann geplant oder kann mir jemand einen Tipp geben wie man das selbst realisieren kann ?

      Vielen Dank !
      Dietmar

      1 Reply Last reply Reply Quote 0
      • ? This user is from outside of this forum
        Guest
        last edited by

        Guten Morgen,

        falls du Erfahrung mit mySQL haben solltest, kannst du die fehlenden Felder selber hinzufügen. Die Datenbank 'mod_docman' beinhaltet die Daten für die 'IT-Elemente' (auch CMDB genannt), als Beispiel kannst du die Tabelle 'clients' einfach um das Feld 'raumID' erweitern (vom Datentyp Integer). Diese Verknüpfungsfelder (raumID, serverID etc.) sind in der Tabelle _assignments definiert.

        Mal ein kleines Beispiel:

        mysql> DESCRIBE clients;
        
        +--------------------+-------------------------------------------------+------+-----+------------+----------------+
        
        | Field              | Type                                            | Null | Key | Default    | Extra          |
        
        +--------------------+-------------------------------------------------+------+-----+------------+----------------+
        
        | ID                 | int(11)                                         |      | PRI | NULL       | auto_increment |
        
        | wartungsID         | int(11)                                         |      |     | 0          |                |
        
        | Name               | varchar(255)                                    |      |     |            |                |
        
        | Hersteller         | varchar(255)                                    |      |     |            |                |
        
        | Modell             | varchar(255)                                    |      |     |            |                |
        
        | Geraeteart         | enum('Desktop','Notebook','PDA','Mobiltelefon') |      |     | Desktop    |                |
        
        | Prozessortyp       | varchar(255)                                    |      |     |            |                |
        
        | Anzahl Prozessoren | int(11)                                         |      |     | 0          |                |
        
        | Systemtyp          | enum('Produktion','QS','Test')                  |      |     | Produktion |                |
        
        | Gruppierung        | enum('1','2','3')                               |      |     | 1          |                |
        
        | Seriennummer       | varchar(255)                                    |      |     |            |                |
        
        | BIOS-Bezeichnung   | varchar(255)                                    |      |     |            |                |
        
        | BIOS-Release       | varchar(255)                                    |      |     |            |                |
        
        | RAM                | int(11)                                         |      |     | 0          |                |
        
        | Dokumentation      | varchar(255)                                    |      |     | 0          |                |
        
        +--------------------+-------------------------------------------------+------+-----+------------+----------------+
        
        15 rows in set (0.00 sec)
        
        mysql> ALTER TABLE clients ADD COLUMN raumID INTEGER(11) AFTER wartungsID;
        
        Query OK, 1 row affected (0.12 sec)
        
        Records: 1  Duplicates: 0  Warnings: 0
        
        
        1 Reply Last reply Reply Quote 0
        • N Offline
          npotthast
          last edited by

          @Dietmar:

          (…) Ist dies irgendwann geplant oder kann mir jemand einen Tipp geben wie man das selbst realisieren kann ?

          In der neuen Version wird es aber auch die Möglichkeit geben allen (sinnvollen) Objekten einen Standort zuzuordnen.

          MfG,
          Niclas Potthast

          1 Reply Last reply Reply Quote 0

          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

          With your input, this post could be even better 💗

          Register Login
          • First post
            Last post