X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/d40f3b7898583d430d651cc5210994cf55dd5b13..f3fe1f260bbb449253c86a6e08dae62957df468a:/timesheet_view.php diff --git a/timesheet_view.php b/timesheet_view.php index e6368a39..3dc80253 100644 --- a/timesheet_view.php +++ b/timesheet_view.php @@ -51,6 +51,7 @@ if (!$timesheet) { if ($request->isPost()) { $cl_comment = trim($request->getParameter('comment')); + $approver_id = $request->getParameter('approver'); } $options = ttTimesheetHelper::getReportOptions($timesheet); @@ -60,7 +61,7 @@ $totals = ttReportHelper::getTotals($options); // Determine which controls to show and obtain date for them. $showSubmit = !$timesheet['submit_status']; if ($showSubmit) { - $approvers = ttTimesheetHelper::getApprovers($timesheet['user_id']); + $approvers = ttTimesheetHelper::getApprovers(); $showApprovers = count($approvers) >= 1; } $canApprove = $user->can('approve_timesheets') || $user->can('approve_own_timesheets'); @@ -76,7 +77,7 @@ if ($showSubmit) { 'name'=>'approver', 'style'=>'width: 200px;', 'data'=>$approvers, - 'datakeys'=>array('id','name'))); + 'datakeys'=>array('id','name','email'))); } $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.submit'))); } @@ -92,12 +93,16 @@ if ($request->isPost()) { if ($request->getParameter('btn_submit')) { $fields = array('timesheet_id' => $timesheet['id'], 'approver_id' => $approver_id); // TODO: obtain (and check) approver id above during access checks. - if (ttTimesheetHelper::submitTimesheet($fields)) { + if (!ttTimesheetHelper::markSubmitted($fields)) + $err->add($i18n->get('error.db')); + if ($err->no() && !ttTimesheetHelper::sendSubmitEmail($fields)) { + $err->add($i18n->get('error.mail_send')); + } + if ($err->no()) { // Redirect to self. header('Location: timesheet_view.php?id='.$timesheet['id']); exit(); - } else - $err->add($i18n->get('error.db')); + } } if ($request->getParameter('btn_approve')) {