Magento以编程方式创建具有“日期”类型的自定义选项的订单

时间:2014-01-22 18:02:25

标签: php magento date

我正在尝试根据来自某个地方的文本文件给出的数据自动创建magento中的新订单。这是我正在使用的基本代码:

$product = Mage::getModel('catalog/product')->load($productId);
$request = new Varien_Object();
$request->setData(array(
    'product' => $product->getId(),
    'qty' => 1,
    'options' => array(
        30 => 'some text...',
        8 => 'some other text...',
        7 => date('Y-m-d H:i:s')
    )
));
$quote = Mage::getModel('sales/quote')
    ->setStoreId($storeId)
    ->setIsMultiShipping(false)
    ->setCheckoutMethod('guest')
    ->setCustomerId(null)
    ->setCustomerEmail($customerEmail)
    ->setCustomerIsGuest(true)
    ->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID);

$quote->addProduct($product, $request);
// ...the interesting part ends here

ID为“7”的自定义选项属于“日期”类型(由Magento的Web后端配置),这肯定是导致问题的原因:当自定义选项7更改为键入“文本字段”时,此代码段效果很好。 / p>

如果我在调用$quote后检查addProduct()对象的内容,我看到自定义选项7的值不是预期的日期字符串,而是一个数字(看起来像正好是格式为Y-m-d H:i:s的日期的第一个数字,因此是一年中的第一个数字,因为我尝试了不同的年份。)

如果我将选项7的类型更改为文本,则整个日期字符串将正确保存在$quote对象中。

作为附加信息,如果我让脚本继续完成所有订单创建过程,我得到的是一个例外:

Unsupported ISO8601 format (2)

其中数字2是我之前谈话的日期的第一个数字。所以我尝试使用iso8601格式:

7 => date('c')

完全没有效果。

该异常的堆栈跟踪是:

#0 app/code/core/Zend/Date.php(1091): Zend_Date->_calculate('set', '2', 'c', 'it_IT')
#1 app/code/core/Zend/Date.php(210): Zend_Date->set('2', 'c', 'it_IT')
#2 app/code/core/Mage/Core/Model/Locale.php(494): Zend_Date->__construct('2', 'c', Object(Zend_Locale))
#3 app/code/core/Mage/Catalog/Model/Product/Option/Type/Date.php(167): Mage_Core_Model_Locale->date('2', 'c', NULL, false)
#4 app/code/core/Mage/Catalog/Model/Product/Type/Abstract.php(620): Mage_Catalog_Model_Product_Option_Type_Date->getFormattedOptionValue('2')
#5 app/code/core/Mage/Sales/Model/Convert/Quote.php(141): Mage_Catalog_Model_Product_Type_Abstract->getOrderOptions(Object(Mage_Catalog_Model_Product)) 
#6 app/code/core/Mage/Sales/Model/Service/Quote.php(170): Mage_Sales_Model_Convert_Quote->itemToOrderItem(Object(Mage_Sales_Model_Quote_Item))
#7 app/code/core/Mage/Sales/Model/Service/Quote.php(249): Mage_Sales_Model_Service_Quote->submitOrder()
#8 wbs-import-orders.php(309): Mage_Sales_Model_Service_Quote->submitAll()
#9 {main}

那么,如何使这个类型为“date”的自定义选项接受日期字符串?以这种方式传递日期字符串是否正确?

谢谢大家!

1 个答案:

答案 0 :(得分:1)

我猜对了,我猜对了!耶!

$request->setData(array(
    'product' => $product->getId(),
    'qty' => 1,
    'options' => array(
         30 => 'some text...',
         8 => 'some other text...',
         7 => array(
             'year' => 2014,
             'month' => 1,
             'day' => 23
         )
    )
));

这被正确保存为“日期”类型的选项。