+ project: add configuration item of the days column in batch edit page.

This commit is contained in:
liugang
2023-11-16 17:18:29 +08:00
parent 03e29c398a
commit 42102a015c
+1
View File
@@ -49,6 +49,7 @@ $config->project->form->batchedit['name'] = array('type' => 'string', 'requir
$config->project->form->batchedit['PM'] = array('type' => 'string', 'required' => false);
$config->project->form->batchedit['begin'] = array('type' => 'date', 'required' => true);
$config->project->form->batchedit['end'] = array('type' => 'date', 'required' => true);
$config->project->form->batchedit['day'] = array('type' => 'int', 'required' => false);
$config->project->form->batchedit['acl'] = array('type' => 'string', 'required' => false);
if(isset($config->setCode) and $config->setCode == 1) $config->project->form->batchedit['code'] = array('type' => 'string', 'required' => true, 'filter' => 'trim');