내역을 확인할 수 있도록 추가

This commit is contained in:
BJRambo 2016-02-26 13:10:25 +09:00
parent 74fcee987e
commit 9a60af1871
7 changed files with 69 additions and 2 deletions

View file

@ -1548,6 +1548,16 @@ class documentModel extends document
return $document_list;
}
function getDocumentUpdateLog($document_srl)
{
$args = new stdClass();
$args->document_srl = $document_srl;
$output = executeQueryArray('document.getDocumentUpdateLog', $args);
$update_list = $output->data;
return $update_list;
}
}
/* End of file document.model.php */
/* Location: ./modules/document/document.model.php */