Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sales_order.infoメソッドを使用すると、product-skuやcostumer-idなどの必要な注文情報を取得できます。
しかし、API SOAPを介してこれらを取得できるように、自分で作成した属性をこのメソッドに追加するにはどうすればよいですか?
助けてくれてありがとう!
sales_order.infoを呼び出すときに別の属性を取得する場合は、編集/書き換えする必要があります
Mage/Sales/Model/Order/Api.php
私の知る限りでは。APIは、「販売/注文」モデルのすべての属性を取得します。
属性を$resultに追加します例:
$result['your attribute'] = $this->_getAttributes($yourattribute, 'attribute_name');
^^