fix: Reset save button after error handling

feat: Clear review mode and revert to edit mode when navigating to next item
feat: Implement close button functionality
fix: Handle edge case with zero delivery notes
feat: Add new type field with free text option
fix: Enable cancellation reversal in WarehouseAdmin
improve: Enhance article search autocomplete functionality
This commit is contained in:
Luca Haid
2025-04-07 16:21:27 +02:00
parent fb0d7b7f1c
commit 037f1600f1
10 changed files with 74 additions and 24 deletions

View File

@@ -371,7 +371,7 @@ class mfBaseController
}
public static function sendError(string $message): void {
http_response_code(422); // More appropriate status for validation errors
http_response_code(500);
self::returnJson(['success' => false, 'message' => $message]);
exit;
}