Skip to content
Snippets Groups Projects
Commit ed69097f authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #14565 TIME 0:10 Incorrect page count with digital signature

parent 81c77b03
No related branches found
No related tags found
No related merge requests found
...@@ -138,8 +138,8 @@ class DocumentController ...@@ -138,8 +138,8 @@ class DocumentController
$adr = AdrModel::getDocumentsAdr([ $adr = AdrModel::getDocumentsAdr([
'select' => ['count(1)'], 'select' => ['count(1)'],
'where' => ['main_document_id = ?', 'type != ?'], 'where' => ['main_document_id = ?', 'type != ?', 'type != ?'],
'data' => [$args['id'], 'DOC'] 'data' => [$args['id'], 'DOC', 'ESIGN']
]); ]);
if (empty($adr[0]['count'])) { if (empty($adr[0]['count'])) {
$configPath = CoreConfigModel::getConfigPath(); $configPath = CoreConfigModel::getConfigPath();
......
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