set initial document status

This commit is contained in:
Uwe Steinmann 2015-06-02 10:03:09 +02:00
parent d9d4d89a27
commit 944b059abe

View File

@ -56,6 +56,7 @@ class SeedDMS_Controller_AddDocument extends SeedDMS_Controller_Common {
$workflow = $this->getParam('workflow'); $workflow = $this->getParam('workflow');
$notificationgroups = $this->getParam('notificationgroups'); $notificationgroups = $this->getParam('notificationgroups');
$notificationusers = $this->getParam('notificationusers'); $notificationusers = $this->getParam('notificationusers');
$initialdocumentstatus = $this->getParam('initialdocumentstatus');
$result = $this->callHook('addDocument'); $result = $this->callHook('addDocument');
if($result === null) { if($result === null) {
@ -63,7 +64,7 @@ class SeedDMS_Controller_AddDocument extends SeedDMS_Controller_Common {
$cats, $userfiletmp, basename($userfilename), $cats, $userfiletmp, basename($userfilename),
$filetype, $userfiletype, $sequence, $filetype, $userfiletype, $sequence,
$reviewers, $approvers, $reqversion, $reviewers, $approvers, $reqversion,
$version_comment, $attributes, $attributes_version, $workflow); $version_comment, $attributes, $attributes_version, $workflow, $initialdocumentstatus);
if (is_bool($res) && !$res) { if (is_bool($res) && !$res) {
$this->errormsg = "error_occured"; $this->errormsg = "error_occured";