X-Git-Url: https://jasonwoof.com/gitweb/?p=contractor-progress.git;a=blobdiff_plain;f=tasks.php;h=79669871288de7ec17916382ecac09ebaebbfc9b;hp=dd4ad15460119282d004c97f363c5eaa289705cb;hb=a1ccfed8fdc36f4fcef9ec5fa05b108c71c79554;hpb=e5f77e537873002e9ee3a730e99c5f55a5aa0535 diff --git a/tasks.php b/tasks.php index dd4ad15..7966987 100644 --- a/tasks.php +++ b/tasks.php @@ -31,14 +31,6 @@ function description_has_fixmes($description) { return (strpos($description, 'FIXME') !== false); } -# encode as html, make it display newlines and leading spaces -function enc_htmlbrtab($str) { - $str = enc_htmlbr($str); - $space_to_nbsp = create_function('$matches', 'return str_repeat(\' \', strlen($matches[0]) * 2);'); - $str = preg_replace_callback("|^ *|m", $space_to_nbsp, $str); - return $str; -} - function tasks_get_fields() { $title = format_oneline($_REQUEST['title']); $url = format_oneline($_REQUEST['url']); @@ -84,18 +76,26 @@ function tasks_display_main() { $task_id = format_int($_REQUEST['tasks_id']);; $client_id = logged_in(); if(logged_in_as_contractor()) { - $row = db_get_row('tasks', 'title,url,description,state,price,client_id,paid', 'where id=%i', $task_id); + $row = db_get_row('tasks', 'title,url,description,state,price,client_id,paid,finished_at,tested_at', 'where id=%i', $task_id); } else { - $row = db_get_row('tasks', 'title,url,description,state,price,client_id,paid', 'where id=%i && client_id=%i', $task_id, $client_id); + $row = db_get_row('tasks', 'title,url,description,state,price,client_id,paid,finished_at,tested_at', 'where id=%i && client_id=%i', $task_id, $client_id); } if($row) { - list($title, $url, $description, $state, $price, $owner_id, $paid) = $row; + list($title, $url, $description, $state, $price, $owner_id, $paid, $finished_at, $tested_at) = $row; tem_set('task_id', $task_id); tem_set('title', $title); tem_set('url', $url); tem_set('description', $description); tem_set('state', task_state_pretty($state)); tem_set('price', $price); + if($finished_at) { + tem_set('finished_at', $finished_at); + tem_show('finished_at_section'); + } + if($tested_at) { + tem_set('tested_at', $tested_at); + tem_show('tested_at_section'); + } if($state == TASK_BUG) { tem_show('bug_title'); } else { @@ -381,7 +381,7 @@ function tasks_edit_main() { message("Error: can't test a task entered by/for another client."); return './'; } - db_update('tasks', 'state', TASK_FINISHED, 'where id=%i', $id); + db_update('tasks', 'state,tested_at', TASK_FINISHED, date('Y-m-d'), 'where id=%i', $id); message('Task marked as finished.'); # FIXME also mark it as paid if client's balance can cover it return './';