X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/8fd871c1242b3309b8a374a97969ab74d5375069..e5486346ac0574517a4fd118f03616ec455df9a9:/timesheet_view.php diff --git a/timesheet_view.php b/timesheet_view.php index 0e9a7ea9..70ab3357 100644 --- a/timesheet_view.php +++ b/timesheet_view.php @@ -48,6 +48,10 @@ if (!$timesheet) { // TODO: if this is a timeheet submit, validate approver id, too. // End of access checks. +if ($request->isPost()) { + $cl_comment = trim($request->getParameter('comment')); +} + $options = ttTimesheetHelper::getReportOptions($timesheet); $subtotals = ttReportHelper::getSubtotals($options); $totals = ttReportHelper::getTotals($options); @@ -57,7 +61,7 @@ $notClient = !$user->isClient(); $showSubmit = $notClient && !$timesheet['submit_status']; if ($showSubmit) $approvers = ttTimesheetHelper::getApprovers($timesheet['user_id']); $canApprove = $user->can('approve_timesheets') || $user_>can('approve_all_timesheets'); -$showApprove = $notClient && $timesheet['submit_status'] && !$timesheet['approval_status']; +$showApprove = $notClient && $timesheet['submit_status'] && $timesheet['approval_status'] == null; // Add a form with controls. $form = new Form('timesheetForm'); @@ -75,6 +79,7 @@ if ($showSubmit) { } if ($showApprove) { + $form->addInput(array('type'=>'textarea','name'=>'comment','maxlength'=>'250','style'=>'width: 300px; height: 60px;')); $form->addInput(array('type'=>'submit','name'=>'btn_approve','value'=>$i18n->get('button.approve'))); $form->addInput(array('type'=>'submit','name'=>'btn_disapprove','value'=>$i18n->get('button.disapprove'))); } @@ -91,6 +96,28 @@ if ($request->isPost()) { } else $err->add($i18n->get('error.db')); } + + if ($request->getParameter('btn_approve')) { + $fields = array('timesheet_id' => $timesheet['id'], + 'comment' => $cl_comment); + if (ttTimesheetHelper::approveTimesheet($fields)) { + // Redirect to self. + header('Location: timesheet_view.php?id='.$timesheet['id']); + exit(); + } else + $err->add($i18n->get('error.db')); + } + + if ($request->getParameter('btn_disapprove')) { + $fields = array('timesheet_id' => $timesheet['id'], + 'comment' => $cl_comment); + if (ttTimesheetHelper::disapproveTimesheet($fields)) { + // Redirect to self. + header('Location: timesheet_view.php?id='.$timesheet['id']); + exit(); + } else + $err->add($i18n->get('error.db')); + } } $smarty->assign('not_client', $notClient);