From 42102a015c3bb1a88f2eda7b69f2e9171d72e0ef Mon Sep 17 00:00:00 2001 From: liugang Date: Thu, 16 Nov 2023 17:18:29 +0800 Subject: [PATCH] + project: add configuration item of the days column in batch edit page. --- module/project/config/form.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/project/config/form.php b/module/project/config/form.php index 07934d736f..d3e0715ffd 100644 --- a/module/project/config/form.php +++ b/module/project/config/form.php @@ -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');