1
我需要知道如何按訂單檢索每個產品的自定義選項(名稱/值)。Magento API .Net:從訂單中檢索產品選項名稱值
例如,在我的訂單中,我有1x產品可以說「彩色蠟筆」。 該產品具有客戶在將產品添加到購物籃時選擇的「顏色」自定義選項。
當我處理客戶的訂單時,我希望能夠檢索選項名稱和選項值。
注1 使用Magento 1.7社區版,使用帶Magento API v2的SOAP開發.Net。
我發現名爲product_options的salesOrderEntity Items屬性包含看起來像產品選項VALUES ONLY的JSON編碼列表。此列表不包含任何屬性名稱,而是具有看起來像ID的地方,我認爲它可以查看選項名稱。
salesOrderEntity theOrder = apiService.salesOrderInfo(sSessionId, "100000001");
string sProductOptions = theOrder.items[0].product_options; // returns JSON like string syntax
我甚至無法通過.NET調用Magento API。如果你取得進展,你可以看看這個問題嗎? http://stackoverflow.com/questions/12088459/how-to-call-the-magento-api-from-vb-net –