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 2025-03-14 10:47:06

rt5504
Member
Registered: 2023-12-16
Posts: 37

I am looking for database fields

Hi everyone, I'm looking for tables and fields in the database where I can determine whether a comment exists for a ticket. The background is that I need the fields for a script that changes the status from 1 to 2 as soon as a comment exists.

Maybe you can help me.

Offline

#2 2025-03-14 11:05:37

LaDenrée
HELPER
Registered: 2012-11-19
Posts: 6,363

Re: I am looking for database fields

there are no "comments" for tickets : do you mean

* task=> see glpi_tickettasks table,
* followup,=>see glpi_itilfollowups 
* solution => see glpi_itilsolutions
*satisfaction comment => see glpi_ticketsatisfactions


Trouver la panne avant de réparer...
GLPI10.0.16 (ubuntu 22.04 PHP8.1  Mariadb10.6 ) plugins : comportements 2.7.3 reports 1.16.0 formcreator 2.13.9, datainjection 2.13.5 fields 1.21.9

Offline

#3 2025-03-14 11:07:47

ITPM
Member
Registered: 2022-06-20
Posts: 16

Re: I am looking for database fields

Hello, try "<prefix>_itilfollowups" and search by itemtype = "Ticket" and items_id = <id>

Offline

#4 2025-03-14 11:17:58

rt5504
Member
Registered: 2023-12-16
Posts: 37

Re: I am looking for database fields

Thank you for the information. I have implemented it this way now.

<?php
// GLPI Konfiguration und Includes laden
define('GLPI_ROOT', __DIR__);
include(GLPI_ROOT . "/inc/includes.php");

// Überprüfen, ob die DB-Klasse existiert
if (!class_exists('DB')) {
    die('Datenbank-Klasse nicht gefunden. Überprüfe den Include-Pfad.');
}

// Erstelle eine Instanz von DB
$db = new DB();

// SQL-Abfrage zur Auswahl von Tickets mit Status 1 (Neu)
$sql = "SELECT t.id AS Ticket_ID, t.status AS Ticket_Status
        FROM glpi_tickets t
        WHERE t.status = 1"; // Nur Tickets mit Status 1 (Neu)

// Führe die SQL-Abfrage aus
$result = $db->query($sql);
if (!$result) {
    die('Datenbankfehler: ' . $db->error());
}

// Statusänderung durchführen
while ($row = $db->fetchArray($result)) {
    $ticketId = $row['Ticket_ID'];
    $ticketStatus = $row['Ticket_Status'];

    // Prüfen, ob das Ticket eine Anmerkung oder Änderung hat
    $checkUpdateSql = "SELECT COUNT(*) AS updates
                       FROM glpi_itilfollowups
                       WHERE items_id = $ticketId"; // Überprüft, ob es Einträge in der Followup-Tabelle gibt
    
    $updateResult = $db->query($checkUpdateSql);
    if (!$updateResult) {
        echo "Fehler bei der Überprüfung des Tickets #$ticketId.\n";
        continue;
    }

    $updateRow = $db->fetchArray($updateResult);
    if ($updateRow['updates'] > 0) {
        // Wenn es Anmerkungen oder Änderungen gab und der Status des Tickets noch "Neu" ist, setze den Status auf 2 (In Bearbeitung)
        if ($ticketStatus == 1) {
            $updateSql = "UPDATE glpi_tickets 
                          SET status = 2 
                          WHERE id = $ticketId";

            // Status aktualisieren
            if ($db->query($updateSql)) {
                echo "Ticket #$ticketId wurde auf Status 2 (In Bearbeitung) geändert.\n";
            } else {
                echo "Fehler bei der Aktualisierung des Tickets #$ticketId.\n";
            }
        } else {
            echo "Ticket #$ticketId hat den Status $ticketStatus, kein Statuswechsel erforderlich.\n";
        }
    } else {
        echo "Ticket #$ticketId wurde nicht aktualisiert. Kein Statuswechsel.\n";
    }
}
?>

Offline

Board footer

Powered by FluxBB