* Add project creation method.

This commit is contained in:
leiyong
2020-09-18 14:26:27 +08:00
parent ebc593c1c6
commit a8103fd03e
14 changed files with 308 additions and 63 deletions
+8
View File
@@ -9,6 +9,9 @@ $config->program->editor->pgmactivate = array('id' => 'comment', 'tools' => 'sim
$config->program->editor->pgmfinish = array('id' => 'comment', 'tools' => 'simpleTools');
$config->program->editor->pgmsuspend = array('id' => 'comment', 'tools' => 'simpleTools');
$config->program->editor->prjcreate = array('id' => 'desc', 'tools' => 'simpleTools');
$config->program->editor->prjedit = array('id' => 'desc', 'tools' => 'simpleTools');
$config->program->list = new stdclass();
$config->program->list->exportFields = 'id,name,code,template,category,status,begin,end,budget,PM,end,desc';
@@ -16,3 +19,8 @@ $config->program->PGMCreate = new stdclass();
$config->program->PGMEdit = new stdclass();
$config->program->PGMCreate->requiredFields = 'name,code,begin,end';
$config->program->PGMEdit->requiredFields = 'name,code,begin,end';
$config->program->PRJCreate = new stdclass();
$config->program->PRJEdit = new stdclass();
$config->program->PRJCreate->requiredFields = 'name,code,begin,end';
$config->program->PRJEdit->requiredFields = 'name,code,begin,end';