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

FEAT #8760 status refactoring

parent 21fc39ec
No related branches found
No related tags found
No related merge requests found
...@@ -335,11 +335,9 @@ class DocumentController ...@@ -335,11 +335,9 @@ class DocumentController
return $response->withStatus(400)->withJson(['errors' => 'Document does not exist']); return $response->withStatus(400)->withJson(['errors' => 'Document does not exist']);
} }
$status = StatusModel::getById(['select' => ['reference', 'label'], 'id' => $document['status']]); $status = StatusModel::getById(['select' => ['id', 'reference', 'label'], 'id' => $document['status']]);
$document['statusReference'] = $status['reference'];
$document['statusLabel'] = $status['label'];
return $response->withJson(['status' => $document]); return $response->withJson(['status' => $status]);
} }
public static function hasRightById(array $args) public static function hasRightById(array $args)
......
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