X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=reports.php;h=c191de9aae189f623d77c672d45a9f5a62c4306e;hb=e7d32433a6be7d06b742203ed36a4c93905a9813;hp=fb74e16cc5c812fd680182f5de12adc6532a01c3;hpb=5897ea0d3efe16a50706bcf1bde8d33044b5cf5f;p=timetracker.git diff --git a/reports.php b/reports.php index fb74e16c..c191de9a 100644 --- a/reports.php +++ b/reports.php @@ -89,6 +89,7 @@ if ($showClient) { } if ($showClient) { $form->addInput(array('type'=>'combobox', + 'onchange'=>'fillProjectDropdown(this.value);', 'name'=>'client', 'style'=>'width: 250px;', 'data'=>$client_list, @@ -290,6 +291,9 @@ if ($showTimesheetCheckbox) $form->addInput(array('type'=>'checkbox','name'=>'chtimesheet')); if ($showApproved) $form->addInput(array('type'=>'checkbox','name'=>'chapproved')); +$showFiles = $user->isPluginEnabled('at'); +if ($showFiles) + $form->addInput(array('type'=>'checkbox','name'=>'chfiles')); // Add a hidden control for timesheet_user_id (who to generate a timesheet for). if ($showTimesheetCheckbox) @@ -351,6 +355,7 @@ if ($request->isGet() && !$bean->isSaved()) { $form->setValueByElement('chcf_1', '0'); $form->setValueByElement('chunits', '0'); $form->setValueByElement('chinvoice', '0'); + $form->setValueByElement('chfiles', '1'); $form->setValueByElement('chtotalsonly', '0'); } @@ -439,6 +444,7 @@ if ($request->isPost()) { } } // isPost +$smarty->assign('client_list', $client_list); $smarty->assign('show_client', $showClient); $smarty->assign('show_cf_1_dropdown', $showCustomFieldDropdown); $smarty->assign('show_cf_1_checkbox', $showCustomFieldCheckbox); @@ -456,6 +462,7 @@ $smarty->assign('show_start', $showStart); $smarty->assign('show_finish', $showFinish); $smarty->assign('show_work_units', $showWorkUnits); $smarty->assign('show_ip', $showIP); +$smarty->assign('show_files', $showFiles); $smarty->assign('project_list', $project_list); $smarty->assign('task_list', $task_list); $smarty->assign('assigned_projects', $assigned_projects);