我正在使用shipworks从购物商店运送和提取订单数据。现在我想提取shipworks xml不支持的新订单字段。从购物商店中提取不支持的订单字段并显示的可能方法是什么它在造船厂订单网格上。任何帮助
问问题
1762 次
2 回答
1
我们需要添加一些自定义信息,而造船厂非常有帮助,我们完成了。如果您打开 shipworks3.php 文件,您将在第 760 行看到以下内容
// Uncomment the following lines to include a custom product attribute in the downloaded data.
// These will appear as Order Item Attributes in ShipWorks.
//$product = Mage::getModel('catalog/product');
//$productId = $product->getIdBySku($sku);
//$product->load($productId);
//$value = $product->getAttributeText("attribute_code_here");
//if ($value)
//{
// // write the gift message as an attribute
// writeStartTag("Attribute");
// writeElement("Name", "Attribute_title_here");
// writeelement("Value", $value);
// writeCloseTag("Attribute");
//}
您可以使用一个属性,也可以将其调整为一个订单属性。如果您具体让我知道您尝试导入哪些订单详细信息,我可以提供更多指导。
于 2013-01-10T04:13:31.587 回答
0
http://www.interapptive.com/ShipWorksIntegrationGuide.pdf
此页面底部还有一些详细信息,http://www.shipworks.com/shipworks/help
于 2012-11-30T10:19:03.217 回答