Hi,
I would like to create a new order status, that should be assigned to the order after it's placed (whatever payment has been chosen). Then I need to get it this way:
$collection = mage::getModel('sales/order')->getCollection()->addFieldToFilter('status', array('in' => array('pl_order_received')));
is it possible? I tried from system->order status, I created a new order status and assigned to the state New, but when I place a new order the status is still pending.
Thanks