I am looking at some code to add MassAction in Magento and ship and complete multiple orders from sales_order/index

Somehow the orders are not being shipped.

It looks like (a perfectly normal order) is not passing the canship() test. Should it be passsed $order of $orderid?

Here's my code

//Get orderids
$orderIds = $this->getRequest()->getPost('order_ids');

//verify if the array is not empty
if (!empty($orderIds)) {
//loop through orders
foreach ($orderIds as $orderId) {

// Dont know what this does
$order = Mage::getModel('sales/order')->loadByIncrementId($orderId);

// Is the order shipable?
if($order->canShip())
{
$itemQty =  $order->getItemsCollection()->count();
// This first definition and 2nd look overlapping, our one is obsolete?
$shipment = Mage::getModel('sales/service_order', $order)->prepareShipment($itemQty);
$shipment = new Mage_Sales_Model_Order_Shipment_Api();

// But still, no shipment, why?
$shipmentId = $shipment->create($orderId, array(), 'Shipment created through ShipMailInvoice', true, true);
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You need to load by ID, if you get orderID, or load by IncrementOrderId if, you actually get the Order incrementId.

Use this:

$order = Mage::getModel('sales/order')->load($orderId);

let us know if it worked.

And then :

$shipmentId = $shipment->create($order->getorderIncrementID, $itemQty, 'Shipment created through ShipMailInvoice', true, true);

Try that.

link|improve this answer
Many thanks @ShaunOReilly. It does pass the canship() ... but a next error occurs: order_not_exists code Trace:Order/Shipment/Api.php(142): Mage_Api_Model_Resource_Abstract->_fault('order_not_exist...') Sales/OrderController.php(45): Mage_Sales_Model_Order_Shipment_Api->create('121', Array, 'Shipment create...', true, true) code – snh_nl Jan 30 at 19:50
So now it crashes on $shipment->create. I tried both $order and orderId. Both not working. $order results in access violation $shipmentId = $shipment->create($order, array(), – snh_nl Jan 30 at 19:57
look at the last edit of my answer. – ShaunOReilly Jan 30 at 23:52
Still error: order_not_exists. Strange, how can it be that we cannot find the right reference – snh_nl Feb 1 at 21:23
What was the error? the same as before? – ShaunOReilly Feb 1 at 22:18
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.