Updated WarehouseOrder and WarehouseOrderRequest

This commit is contained in:
Luca Haid
2025-03-06 10:29:48 +01:00
parent 9ce1c2a4fe
commit a4df764a49
21 changed files with 1236 additions and 721 deletions

View File

@@ -442,4 +442,10 @@ class UserController extends mfBaseController
return ["valid_to" => null];
}
protected function getByIdAction() {
$id = $this->request->id;
$user = new User($id);
$this->returnJson($user->toArray());
}
}