Shipworks を使用して、ショッピング ストアから注文データを発送およびプルしています。shipworks xml でサポートされていない新しい注文フィールドをプルしたいと考えています。サポートされていない注文フィールドをショッピング ストアからプルし、表示する方法は何でしょうか。造船所の注文グリッドに表示されます。どんな助けでも
質問する
1762 次
2 に答える
1
いくつかのカスタム情報を追加する必要がありましたが、shipworks は非常に役に立ち、完了しました。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 に答える