add config of attribute for document type, start version 1.0.1

This commit is contained in:
Uwe Steinmann 2023-02-18 15:41:00 +01:00
parent 68c706b6e6
commit 26df6830c0

View File

@ -3,8 +3,8 @@ $EXT_CONF['paperless'] = array(
'title' => 'Paperless RestAPI', 'title' => 'Paperless RestAPI',
'description' => 'This extension adds additional rest api routes to make it behave like a paperless server. Just use the regular paperless apps, .e.g paperless mobile to access SeedDMS.', 'description' => 'This extension adds additional rest api routes to make it behave like a paperless server. Just use the regular paperless apps, .e.g paperless mobile to access SeedDMS.',
'disable' => false, 'disable' => false,
'version' => '1.0.0', 'version' => '1.0.1',
'releasedate' => '2023-02-05', 'releasedate' => '2023-02-08',
'author' => array('name'=>'Uwe Steinmann', 'email'=>'uwe@steinmann.cx', 'company'=>'MMK GmbH'), 'author' => array('name'=>'Uwe Steinmann', 'email'=>'uwe@steinmann.cx', 'company'=>'MMK GmbH'),
'config' => array( 'config' => array(
'rootfolder' => array( 'rootfolder' => array(
@ -51,8 +51,16 @@ $EXT_CONF['paperless'] = array(
'allow_empty'=>true, 'allow_empty'=>true,
), ),
'correspondentsattr' => array( 'correspondentsattr' => array(
'title'=>'Attribute for storing the correspondence', 'title'=>'Attribute for storing the correspondent',
'help'=>'This attribute stores the correspondence of a document and must have a list of correspondents.', 'help'=>'This attribute stores the correspondent of a document and must have a list of correspondents.',
'type'=>'select',
'internal'=>'attributedefinitions',
'objtype'=>'2',
'allow_empty'=>true,
),
'documenttypeattr' => array(
'title'=>'Attribute for storing the document type',
'help'=>'This attribute stores the document type of a document and must have a list of types.',
'type'=>'select', 'type'=>'select',
'internal'=>'attributedefinitions', 'internal'=>'attributedefinitions',
'objtype'=>'2', 'objtype'=>'2',