Skip to content
Snippets Groups Projects
Verified Commit c8fecde8 authored by Damien's avatar Damien
Browse files

FEAT #9011 Autocomplete serial id

parent db801019
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ class AutoCompleteController ...@@ -92,7 +92,7 @@ class AutoCompleteController
]); ]);
$users = UserModel::get([ $users = UserModel::get([
'select' => ['user_id', 'firstname', 'lastname'], 'select' => ['id', 'user_id', 'firstname', 'lastname'],
'where' => $requestData['where'], 'where' => $requestData['where'],
'data' => $requestData['data'], 'data' => $requestData['data'],
'orderBy' => ['lastname'], 'orderBy' => ['lastname'],
...@@ -104,6 +104,7 @@ class AutoCompleteController ...@@ -104,6 +104,7 @@ class AutoCompleteController
$data[] = [ $data[] = [
'type' => 'user', 'type' => 'user',
'id' => $value['user_id'], 'id' => $value['user_id'],
'serialId' => $value['id'],
'idToDisplay' => "{$value['firstname']} {$value['lastname']}", 'idToDisplay' => "{$value['firstname']} {$value['lastname']}",
'otherInfo' => '' 'otherInfo' => ''
]; ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment