X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/098a79f0819ebb89b7d48df4a6b154af4560f68e..9a23a8c0a51b7ec38a96f525484134f3cb85dc7e:/mobile/time_delete.php diff --git a/mobile/time_delete.php b/mobile/time_delete.php new file mode 100644 index 00000000..eb4ac2bf --- /dev/null +++ b/mobile/time_delete.php @@ -0,0 +1,104 @@ +team_id); +// } + +$cl_id = $request->getParameter('id'); +$time_rec = ttTimeHelper::getRecord($cl_id, $user->getActiveUser()); + +// Prohibit deleting invoiced records. +if ($time_rec['invoice_id']) die($i18n->getKey('error.sys')); + +// Escape comment for presentation. +$time_rec['comment'] = htmlspecialchars($time_rec['comment']); + +if ($request->getMethod() == 'POST') { + if ($request->getParameter('delete_button')) { // Delete button pressed. + + // Determine if it's okay to delete the record. + $item_date = new DateAndTime(DB_DATEFORMAT, $time_rec['date']); + + // Determine lock date. + $lock_interval = $user->lock_interval; + $lockdate = 0; + if ($lock_interval > 0) { + $lockdate = new DateAndTime(); + $lockdate->decDay($lock_interval); + } + // Determine if the record is uncompleted. + $uncompleted = ($time_rec['duration'] == '0:00'); + + if($lockdate && $item_date->before($lockdate) && !$uncompleted) { + $errors->add($i18n->getKey('error.period_locked')); + } + + if ($errors->isEmpty()) { + + // Delete the record. + $result = ttTimeHelper::delete($cl_id, $user->getActiveUser()); + + if ($result) { + header('Location: time.php'); + exit(); + } else { + $errors->add($i18n->getKey('error.db')); + } + } + } + if ($request->getParameter('cancel_button')) { // Cancel button pressed. + header('Location: time.php'); + exit(); + } +} + +$form = new Form('timeRecordForm'); +$form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id)); +$form->addInput(array('type'=>'submit','name'=>'delete_button','value'=>$i18n->getKey('label.delete'))); +$form->addInput(array('type'=>'submit','name'=>'cancel_button','value'=>$i18n->getKey('button.cancel'))); +$smarty->assign('time_rec', $time_rec); +$smarty->assign('forms', array($form->getName() => $form->toArray())); +$smarty->assign('title', $i18n->getKey('title.delete_time_record')); +$smarty->assign('content_page_name', 'mobile/time_delete.tpl'); +$smarty->display('mobile/index.tpl'); +?> \ No newline at end of file