Hi, this is one of very critical issue for me. I found one forum this solution.
That fourm url is below :
http://www.magentocommerce.com/boards/viewthread/20813/P75/
And I mentioned that code also. If they deleted that thread this is useful.
1. You this path : /app/code/core/Mage/Adminhtml/Block/Sales/Order/View/History.php
// For All Status View Purpose Below
public function getAllStatuses()
{
$statuses = $this->getOrder()->getConfig()->getStatuses();
return $statuses;
}
// For All Status View Purpose Above
I added this code after “public function getStatuses()” this function inside.
2. Next you go Here : /app/design/adminhtml/default/default/template/sales/order/view/history.phtml”
Find below Code :
<?php foreach ($this->getStatuses() as $_code=>$_label): ?>
<option value=”<?php echo $_code ?>”<?php if($_code==$this->getOrder()->getStatus()): ?> selected=”selected”<?php endif; ?> <?php echo $_label ?></option>
<?php endforeach; ?>
You feel Backup Above code take or Comment line.
And change Below Code :
<!– Write Below for Order Status –>
<?php foreach ($this->getAllStatuses() as $_code=>$_label): ?>
<option value=”<?php echo $_code ?>”<?php if($_code==$this->getOrder()->getStatus()): ?> selected=”selected”<?php endif; ?>><?php echo $_label ?></option>
<?php endforeach; ?>
<!– Write Above for Order Status –>
This is working for me. And check your side. And thanks this option giving that forum “thekanyon” also.