Ticket system filters, notiz adding, time of last action

This commit is contained in:
Xenomporio
2022-07-31 18:23:43 +02:00
parent 3c540cf48a
commit 11f9e7e24e
4 changed files with 128 additions and 18 deletions
@@ -147,7 +147,8 @@ class TicketImportHelper
$sql = "UPDATE `ticket` SET
`status` = 'neu',
`zugewiesen` = '0',
`inbearbeitung` = '0'
`inbearbeitung` = '0',
`zeit` = now()
WHERE `schluessel` LIKE '".$ticketNumber."'";
$this->db->Update($sql);
}