add_material.php aktualisiert
This commit is contained in:
parent
1028785807
commit
2459749d58
|
@ -47,6 +47,10 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|||
if ($conn->query($sql) === TRUE) {
|
||||
$response['success'] = true;
|
||||
$response['message'] = 'Neuer Artikel wurde erfolgreich hinzugefügt.';
|
||||
// Lognachricht zusammenstellen
|
||||
$log_message = date("Y-m-d H:i:s") . " - Artikel hinzugefügt: Artikel: \"$item_name\", Hersteller: \"$manufacturer\", Soll: $amount_should, Ist: $amount_is, MDH: $expiration_date, EAN: \"$barcode\"";
|
||||
// Lognachricht in die Datei schreiben
|
||||
file_put_contents('log.txt', $log_message . PHP_EOL, FILE_APPEND);
|
||||
} else {
|
||||
$response['success'] = false;
|
||||
$response['message'] = 'Fehler beim Hinzufügen des Artikels: ' . $conn->error;
|
||||
|
|
Loading…
Reference in New Issue