Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- $this->_initStore();
- $customer = null; // get customer object here
- // initialise quote object
- $quote = Mage::getModel('sales/quote');
- // set Customer
- $quote->assignCustomer($customer);
- // add product to quote object
- $request = array(
- 'qty' => 1, // qty ordered
- 'product' => $product_id,
- //'super_attribute' => array( // this is optinal
- // '631' => '13',
- // '632' => '14',
- //),
- );
- $product = Mage::getModel('catalog/product')->load($product_id);
- $quote->addProduct($product, new Varien_Object($request));
- // set billing address
- $billingAddress = array(
- 'firstname' => 'John',
- 'lastname' => 'Doe',
- 'street' => 'street',
- 'city' => 'city',
- 'country_id' => 'country'
- );
- $quoteBillingAddress = new Mage_Sales_Model_Quote_Address($billingAddress);
- $quote->setBillingAddress($quoteBillingAddress);
- $quote->setRemoteIp($customer_ip);
- $quote->setCustomerNote($boxaddress);
- # $quote->getBillingAddress();
- # $quote->getShippingAddress()->setCollectShippingRates(true);
- // collect totals and save
- $quote->collectTotals(); // calls $address->collectTotals();
- $quote->save();
- // reserver order id
- $quote->reserveOrderId();
- // set payment method
- $quotePaymentObj = $quote->getPayment(); // Mage_Sales_Model_Quote_Payment
- $pamyentData = array(
- 'method' => 'purchaseorder',
- 'po_number' => $customer_id.'_'.$quote->getReservedOrderId(),
- );
- $quotePaymentObj->importData($pamyentData);
- $quote->setPayment($quotePaymentObj);
- // initialise objetct to convert quote data to order dta
- $convertQuoteObj = Mage::getSingleton('sales/convert_quote');
- // convert adress in quote object
- $order = $convertQuoteObj->addressToOrder($quote->getBillingAddress());
- // convert payment in object
- $orderPaymentObj = $convertQuoteObj->paymentToOrderPayment($quotePaymentObj);
- // set billing adress to objectg
- $order->setBillingAddress($convertQuoteObj->addressToOrderAddress($quote->getBillingAddress()));
- // set payment to object
- $order->setPayment($convertQuoteObj->paymentToOrderPayment($quote->getPayment()));
- // get all items and convert them to order items
- $items = $quote->getAllItems();
- foreach ($items as $item) {
- $orderItem = $convertQuoteObj->itemToOrderItem($item);
- if ($item->getParentItem()) {
- $orderItem->setParentItem($order->getItemByQuoteItemId($item->getParentItem()->getId()));
- }
- $order->addItem($orderItem);
- }
- try {
- // place the order
- $order->place()->save();
- $customerEmail = $order->getCustomerEmail();
- $order->sendNewOrderEmail();
- $order->setCustomerEmail($customerEmail);
- $order->addStatusHistoryComment('Order created by API', Mage_Sales_Model_Order::STATE_PENDING_PAYMENT);
- // save the order
- $order->save();
- } catch (Exception $e) {
- }
- // exit for now
- die('thats it, no invoice yet');// create invoice for order
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement