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

FEAT #11691 small adjustments

parent 1dd42174
No related branches found
No related tags found
No related merge requests found
...@@ -107,7 +107,12 @@ class AttachmentController ...@@ -107,7 +107,12 @@ class AttachmentController
return $response->withStatus(400)->withJson(['errors' => 'Attachment type out of perimeter']); return $response->withStatus(400)->withJson(['errors' => 'Attachment type out of perimeter']);
} }
$attachment['typist'] = UserModel::getLabelledUserById(['login' => $attachment['typist']]); if ($attachment['modificationDate'] == $attachment['creationDate']) {
$attachment['modificationDate'] = null;
}
$typist = UserModel::getByLogin(['login' => $attachment['typist'], 'select' => ['id', 'firstname', 'lastname']]);
$attachment['typist'] = $typist['id'];
$attachment['typistLabel'] = $typist['firstname']. ' ' .$typist['lastname'];
$attachment['modifiedBy'] = UserModel::getLabelledUserById(['id' => $attachment['modifiedBy']]); $attachment['modifiedBy'] = UserModel::getLabelledUserById(['id' => $attachment['modifiedBy']]);
$attachmentsTypes = AttachmentModel::getAttachmentsTypesByXML(); $attachmentsTypes = AttachmentModel::getAttachmentsTypesByXML();
...@@ -231,7 +236,7 @@ class AttachmentController ...@@ -231,7 +236,7 @@ class AttachmentController
return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']); return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']);
} }
if ($GLOBALS['userId'] != $attachment['typist'] && !PrivilegeController::hasPrivilege(['privilegeId' => 'manage_attachments', 'userId' => $GLOBALS['id']])) { if ($GLOBALS['userId'] != $attachment['typist'] && !PrivilegeController::hasPrivilege(['privilegeId' => 'manage_attachments', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']); return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
} }
if (empty($attachment['origin_id'])) { if (empty($attachment['origin_id'])) {
...@@ -284,7 +289,12 @@ class AttachmentController ...@@ -284,7 +289,12 @@ class AttachmentController
$attachmentsTypes = AttachmentModel::getAttachmentsTypesByXML(); $attachmentsTypes = AttachmentModel::getAttachmentsTypesByXML();
foreach ($attachments as $key => $attachment) { foreach ($attachments as $key => $attachment) {
$attachments[$key]['typist'] = UserModel::getLabelledUserById(['login' => $attachment['typist']]); if ($attachment['modificationDate'] == $attachment['creationDate']) {
$attachments[$key]['modificationDate'] = null;
}
$typist = UserModel::getByLogin(['login' => $attachment['typist'], 'select' => ['id', 'firstname', 'lastname']]);
$attachments[$key]['typist'] = $typist['id'];
$attachments[$key]['typistLabel'] = $typist['firstname']. ' ' .$typist['lastname'];
$attachments[$key]['modifiedBy'] = UserModel::getLabelledUserById(['id' => $attachment['modifiedBy']]); $attachments[$key]['modifiedBy'] = UserModel::getLabelledUserById(['id' => $attachment['modifiedBy']]);
if (!empty($attachmentsTypes[$attachment['type']]['label'])) { if (!empty($attachmentsTypes[$attachment['type']]['label'])) {
......
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