i just got this i put it in the actions drop down it sorta works. first goto the SCP Folder and click on the tickets file
goto line 301 where you will see
case 'overdue':
//Mark the ticket as overdue
if(!$thisuser->isadmin() && !$thisuser->isManager()){
$errors='Perm. Denied. You are not allowed to flag tickets overdue';
}else{
if($ticket->markOverdue()){
$msg='Ticket flagged as overdue';
$note=$msg;
if($_POST) {
$ticket->setPriority($_POST);
$ticket->reload();
$note.=' and status set to '.$ticket->getPriority();
}
$note.=' by '.$thisuser->getName();
$ticket->logActivity('Ticket Marked Overdue',$note);
}else{
$errors='Problems marking the the ticket overdue. Try again';
}
}
break;
right below that add this will move the ticket to answered
case 'answered':
//Mark the ticket as answered
if(!$thisuser->isadmin() && !$thisuser->isManager()){
$errors='Perm. Denied. You are not allowed to move tickets';
}else{
$msg='Ticket moved to billed';
if($ticket->markanswered()){
}
}
break;
if you want to have a move to open option add the follow below
case 'schedule':
//Mark the ticket as Ticket updated successfully
if(!$thisuser->isadmin() && !$thisuser->isManager()){
$errors='Perm. Denied. You are not allowed to move tickets';
}else{
$msg='Ticket moved to scheduled';
if($ticket->markunanswered()){
}
}
break;
now open your viewticket file in the staf folder
goto like 294 where you have the code
<?if(!$ticket->isoverdue()){ ?>
<option value="overdue" <?=$info=='overdue'?'selected':''?> >Mark Overdue</option>
<?}?>
add this below that
<option value="answered" <?=$info=='answered'?'selected':''?> >Billing</option>
<option value="schedule" <?=$info=='schedule'?'selected':''?> >Schedule</option>
this code will add both options sorry not to detailed just a quick post