Magento:在后端代码中以编程方式创建订单
我尝试在 Magento (1.5.1.0) 的后端创建订单。
这是一些代码:
// Get the product id stored in the optionValue of the widget
$productId = $order['customIdNumber'];
// Load the product
$product = Mage::getModel('catalog/product')->load($productId);
// Check whether the product could be loaded
if($product->getId())
{
// Get the customer model
$customer = Mage::getModel('customer/customer');
// Set the website id associated with the customer
$customer->setWebsiteId(Mage::app()->getWebsite()->getId());
// Try to load the customer by email
$customer->loadByEmail($order['personAddresses'][0]['email']);
// Check whether the customer not exists
if(!$customer->getId())
{
// Create the customer
$customer->setEmail($order['personAddresses'][0]['email']);
$customer->setFirstname($order['personAddresses'][0]['firstName']);
$customer->setLastname($order['personAddresses'][0]['lastName']);
$customer->save();
}
// Set the esstial order data
$orderData = array(
'currency' => $order['currencyCode'],
'account' => array(
'group_id' => Mage_Customer_Model_Group::NOT_LOGGED_IN_ID,
'email' => $order['personAddresses'][0]['email']
),
'billing_address' =>
'firstname' => $order['personAddresses'][0]['firstName'],
'lastname' => $order['personAddresses'][0]['lastName'],
'street' => $order['personAddresses'][0]['street'],
'city' => $order['personAddresses'][0]['city'],
'country_id' => $order['personAddresses'][0]['country'],
'region_id' => 'BW',
'postcode' => $order['personAddresses'][0]['postalCode'],
'telephone' => '0123456789',
),
'comment' => array(
'customer_note' => "[Order has been created by the sellaround widget module]\nCustomer message:\n".
$order['personAddresses'][0]['message']
),
'send_confirmation' => false // does that something?
);
// Set the shipping address to the billing address
$orderData['shipping_address'] = $orderData['billing_address'];
// Set the payment method
$paymentMethod = 'checkmo';
// Set the shipping method
$shippingMethod = 'flatrate_flatrate';
// Get the backend quote session
$quoteSession = Mage::getSingleton('adminhtml/session_quote');
// Set the session store id
$quoteSession->setStoreId(Mage::app()->getStore('default')->getId());
// Set the session customer id
$quoteSession->setCustomerId($customer->getId());
// Get the backend order create model
$orderCreate = Mage::getSingleton('adminhtml/sales_order_create');
// Import the data
$orderCreate->importPostData($orderData);
// Calculate the shipping rates
$orderCreate->collectShippingRates();
// Set the shipping method
$orderCreate->setPaymentMethod($paymentMethod);
// Set the payment method to the payment instance
$orderCreate->getQuote()->getPayment()->addData(array('method' => $paymentMethod));
// Set the shipping method
$orderCreate->setShippingMethod($shippingMethod);
// Set the quote shipping address shipping method
$orderCreate->getQuote()->getShippingAddress()->setShippingMethod($shippingMethod);
// Add the product
$orderCreate->addProducts(array($product->getId() => array('qty' => 0)));
// Initialize data for price rules
$orderCreate->initRuleData();
// Save the quote
$orderCreate->saveQuote(); // neccessary?
// Create the order
$order = $orderCreate->createOrder();
}
我总是收到异常“请指定运输方式”。在第 293 行的 Mage_Sales_Model_Service_Quote::_validate
中。
异常周围的行代码:
$method= $address->getShippingMethod();
$rate = $address->getShippingRateByCode($method);
if (!$this->getQuote()->isVirtual() && (!$method || !$rate)) {
Mage::throwException($helper->__('Please specify a shipping method.'));
}
有人知道为什么我会收到此错误吗?是因为无法加载费率吗? (该产品不是虚拟的)
I try to create an order in the backend in Magento (1.5.1.0).
Here is some code:
// Get the product id stored in the optionValue of the widget
$productId = $order['customIdNumber'];
// Load the product
$product = Mage::getModel('catalog/product')->load($productId);
// Check whether the product could be loaded
if($product->getId())
{
// Get the customer model
$customer = Mage::getModel('customer/customer');
// Set the website id associated with the customer
$customer->setWebsiteId(Mage::app()->getWebsite()->getId());
// Try to load the customer by email
$customer->loadByEmail($order['personAddresses'][0]['email']);
// Check whether the customer not exists
if(!$customer->getId())
{
// Create the customer
$customer->setEmail($order['personAddresses'][0]['email']);
$customer->setFirstname($order['personAddresses'][0]['firstName']);
$customer->setLastname($order['personAddresses'][0]['lastName']);
$customer->save();
}
// Set the esstial order data
$orderData = array(
'currency' => $order['currencyCode'],
'account' => array(
'group_id' => Mage_Customer_Model_Group::NOT_LOGGED_IN_ID,
'email' => $order['personAddresses'][0]['email']
),
'billing_address' =>
'firstname' => $order['personAddresses'][0]['firstName'],
'lastname' => $order['personAddresses'][0]['lastName'],
'street' => $order['personAddresses'][0]['street'],
'city' => $order['personAddresses'][0]['city'],
'country_id' => $order['personAddresses'][0]['country'],
'region_id' => 'BW',
'postcode' => $order['personAddresses'][0]['postalCode'],
'telephone' => '0123456789',
),
'comment' => array(
'customer_note' => "[Order has been created by the sellaround widget module]\nCustomer message:\n".
$order['personAddresses'][0]['message']
),
'send_confirmation' => false // does that something?
);
// Set the shipping address to the billing address
$orderData['shipping_address'] = $orderData['billing_address'];
// Set the payment method
$paymentMethod = 'checkmo';
// Set the shipping method
$shippingMethod = 'flatrate_flatrate';
// Get the backend quote session
$quoteSession = Mage::getSingleton('adminhtml/session_quote');
// Set the session store id
$quoteSession->setStoreId(Mage::app()->getStore('default')->getId());
// Set the session customer id
$quoteSession->setCustomerId($customer->getId());
// Get the backend order create model
$orderCreate = Mage::getSingleton('adminhtml/sales_order_create');
// Import the data
$orderCreate->importPostData($orderData);
// Calculate the shipping rates
$orderCreate->collectShippingRates();
// Set the shipping method
$orderCreate->setPaymentMethod($paymentMethod);
// Set the payment method to the payment instance
$orderCreate->getQuote()->getPayment()->addData(array('method' => $paymentMethod));
// Set the shipping method
$orderCreate->setShippingMethod($shippingMethod);
// Set the quote shipping address shipping method
$orderCreate->getQuote()->getShippingAddress()->setShippingMethod($shippingMethod);
// Add the product
$orderCreate->addProducts(array($product->getId() => array('qty' => 0)));
// Initialize data for price rules
$orderCreate->initRuleData();
// Save the quote
$orderCreate->saveQuote(); // neccessary?
// Create the order
$order = $orderCreate->createOrder();
}
I always get the exception 'Please specify a shipping method.' in Mage_Sales_Model_Service_Quote::_validate
in line 293.
Code of the lines around the exception:
$method= $address->getShippingMethod();
$rate = $address->getShippingRateByCode($method);
if (!$this->getQuote()->isVirtual() && (!$method || !$rate)) {
Mage::throwException($helper->__('Please specify a shipping method.'));
}
Does anybody know why I get this error? Is it because the rate could not be loaded?
(The product is not virtual)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我之前通过使用我自己创建的运输方法解决了这个问题。
创建订单的代码也从后端单例更改为“前端方法”,如下所示:
I solves this times ago by using a shipping method i created myself.
The code to create the order also changed from the backend singleton a 'frontend method' like this:
我一直在为这个问题绞尽脑汁。通过多种方式,以编程方式创建订单会导致这种情况。我已经通过重写 Mage_Sales_Model_Service_Quote 类的方法 _validate 来绕过这个问题。
I've been cracking my head around this problem. In a number of ways, programmatically creating the order results in that. I've achieved to bypass that problem with an override of method _validate of the class Mage_Sales_Model_Service_Quote.
您好,尝试像这样设置运输方式,看看是否可以解决您的问题
Hello try setting the shipping method like this and see if it solve your problem