如何将自定义参数拉到船厂并在订单网格中显示

时间:2012-05-11 16:58:29

标签: magento oscommerce

我正在使用shipworks运送货物并从购物商店中提取订单数据。现在我想提取一个不受shipworks xml支持的新订单字段。这可能是从购物商店中提取不受支持的订单字段的可能方法并在船舶订单网格上显示。 任何帮助

2 个答案:

答案 0 :(得分: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");
        //}

您可以使用属性或将其调整为订单属性。 如果您具体告诉我您要导入的订单详情,我可以提供更多指导。

答案 1 :(得分:0)