diff --git a/src/app/document/controllers/DocumentController.php b/src/app/document/controllers/DocumentController.php
index d214d9d9c77bdec09c0e578b76f8f78e35b4685c..ccb6814216d7188dd351964c0bce38994192c44a 100755
--- a/src/app/document/controllers/DocumentController.php
+++ b/src/app/document/controllers/DocumentController.php
@@ -348,6 +348,11 @@ class DocumentController
             return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']);
         }
 
+        $currentUser = UserModel::getById(['id' => $GLOBALS['id'], 'select' => ['substitute']]);
+        if (!empty($currentUser['substitute'])) {
+            return $response->withStatus(403)->withJson(['errors' => 'User can not make action with substituted account']);
+        }
+
         if (empty(DocumentController::ACTIONS[$args['actionId']])) {
             return $response->withStatus(400)->withJson(['errors' => 'Action does not exist']);
         }