我正在使用SOAP实现Magento客户端,我正在对Magento进行一些更改,以便提高应用程序的整体性能。为此,我正在尝试减少对Magento服务的调用次数。
例如,我想为购物车创建新报价,并通过一次调用为其设置客户。为此,我改变了app\code\core\Mage\Checkout\etc\wsdl.xml
:
<message name="shoppingCartCreateRequest">
<part name="sessionId" type="xsd:string"/>
<part name="storeId" type="xsd:string"/>
<part name="customer" type="typens:shoppingCartCustomerEntity"/> <!--added this line -->
</message>
并在文件/optiMage/app/code/core/Mage/Checkout/Model/Cart/Api.php
中,我已将方法create更改为:
public function create($store = null, $customer = null)
{
$storeId = $this->_getStoreId($store);
try {
/*@var $quote Mage_Sales_Model_Quote*/
$quote = Mage::getModel('sales/quote');
$quote->setStoreId($storeId)
->setIsActive(false)
->setIsMultiShipping(false)
->save();
} catch (Mage_Core_Exception $e) {
$this->_fault('create_quote_fault', $e->getMessage());
}
$quoteId = (int) $quote->getId();
try{
$service = new Mage_Checkout_Model_Cart_Customer_Api_V2();
$res = $service->set($quoteId, $customer);
} catch (Mage_Core_Exception $e) {
$this->_fault('customer_not_set', $e->getMessage());
}
return $quoteId;
}
问题似乎是我添加的参数($ customer)无法以某种方式访问。当我尝试转储它时,服务器停止运行并且不向我的应用程序返回任何内容。
你能帮帮我吗?如果不够清楚,请告诉我。谢谢!PS:$ quoteId仍在生成中。当我尝试与较新的变量进行交互时会出现问题。
============编辑============ 我发现了问题:我的客户端应用程序发送了一个不同类型的对象,这就是为什么Magento无法投射我的参数。现在它有效!
非常感谢:)
答案 0 :(得分:1)
问题在于声明,因为整个实体无法通过soap请求传递:
<part name="customer" type="typens:shoppingCartCustomerEntity"/>
将其更改为键入:
<part name="customer" type="xsd:int"/>
或xsd:string
然后只将customer_id传递给您的方法。然后在自定义api方法中加载整个权利数据:
$customer = Mage::getModel('customer/customer')->load($customer_id);