delete magento order directly which order status is pending_payment
问题 here i need to delete pending payment status orders delete using cron job. but i am unable to get pending_payment orders using below code. i think this is not working in my code $orderCollection = Mage::getResourceModel('sales/order_collection'); $orderCollection ->addFieldToFilter('state', 'pending') ->getSelect() ->order('e.entity_id'); here is my full code <?php $mageFilename = 'app/Mage.php'; require_once $mageFilename; Varien_Profiler::enable(); Mage::setIsDeveloperMode(true); ini_set(