我目前正在使用一种名为“catalogProductList”(http://www.magentocommerce.com/api/soap/catalog/catalogProduct/catalog_product.list.html)的SOAP 方法来检索catalogProductEntity 数组。
问题是它catalogProductEntity
没有像“价格”和“描述”这样的属性。问题是:是否有任何(已经实现的)SOAP 方法可以通过一次调用为我提供这些信息?
如果没有,我如何/在哪里可以将此字段添加到返回值?我的意思是,更改服务器端的 php 代码以在一次调用中获取此“产品详细列表”。
我试图避免对每种产品进行多次查询以获取此信息。
PS:我使用的是 Magento 1.7。
已编辑
按照@Mat 提示,我编辑了 \app\code\core\Mage\Catalog\Model\Product\Api.php 文件,我的方法items
是这样的:
public function items($filters = null, $store = null)
{
$collection = Mage::getModel('catalog/product')->getCollection()
->addStoreFilter($this->_getStoreId($store))
->addAttributeToSelect('price')
->addAttributeToSelect('description')
->addAttributeToSelect('name');
/** @var $apiHelper Mage_Api_Helper_Data */
$apiHelper = Mage::helper('api');
$filters = $apiHelper->parseFilters($filters, $this->_filtersMap);
try {
foreach ($filters as $field => $value) {
$collection->addFieldToFilter($field, $value);
}
} catch (Mage_Core_Exception $e) {
$this->_fault('filters_invalid', $e->getMessage());
}
$result = array();
foreach ($collection as $product) {
$result[] = array(
'product_id' => $product->getId(),
'sku' => $product->getSku(),
'price' => $product->getData('price'),
'description'=> $product->getData('description'),
'name' => $product->getName(),
'set' => $product->getAttributeSetId(),
'type' => $product->getTypeId(),
'category_ids' => $product->getCategoryIds(),
'website_ids' => $product->getWebsiteIds()
);
}
error_log(print_r($result, true) . "\n", 3, "c:\log.txt");
return $result;
}
日志文件输出以下结果:
Array
(
[0] => Array
(
[product_id] => 3
[sku] => sim12ple1235
[price] => 99.9500
[description] => Simple Description
[name] => Simple Product
[set] => 4
[type] => simple
[category_ids] => Array
(
)
[website_ids] => Array
(
[0] => 1
)
)
)
请注意,价格和描述在 $result 变量中,但我在客户端应用程序中得到的 xml 响应是:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:catalogProductListResponse>
<storeView SOAP-ENC:arrayType="ns1:catalogProductEntity[1]" xsi:type="ns1:catalogProductEntityArray">
<item xsi:type="ns1:catalogProductEntity">
<product_id xsi:type="xsd:string">3</product_id>
<sku xsi:type="xsd:string">sim12ple1235</sku>
<name xsi:type="xsd:string">Simple Product</name>
<set xsi:type="xsd:string">4</set>
<type xsi:type="xsd:string">simple</type>
<category_ids SOAP-ENC:arrayType="xsd:string[0]" xsi:type="ns1:ArrayOfString"/>
<website_ids SOAP-ENC:arrayType="xsd:string[1]" xsi:type="ns1:ArrayOfString">
<item xsi:type="xsd:string">1</item>
</website_ids>
</item>
</storeView>
</ns1:catalogProductListResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
我的问题是:是否有任何 xml 架构或其他指定输出的配置文件?我在服务器端还有什么需要编辑的吗?