/**
  * Check if order item can be shiped. Dummy item can be shiped or with his childrens or
  * with parent item which is included to shipment
  *
  * @param Mage_Sales_Model_Order_Item $item
  * @param array $qtys
  * @return bool
  */
 protected function _canShipItem($item, $qtys = array())
 {
     $result = parent::_canShipItem($item, $qtys);
     if ($vendorOrder = Mage::registry('vendor_order')) {
         return $result && $vendorOrder->getVendorId() == $item->getVendorId();
     } else {
         return $result;
     }
 }