我正在使用Magento APIv1获取销售订单信息。
但是现在我想要在DB表sales_flat_order中添加一些额外的字段。
搜索网页给我提供了一些可以修改API的提示,但我没有取得一些真正的成功
我可以在文件app / code / core / Mage / Sales / etc / api.xml
...
<info translate="title" module="sales">
<title>Retrieve order information</title>
<acl>sales/order/info</acl>
</info>
...
但我找不到收集此订单信息并将其捆绑在一起的php文件
也许对Magento更有经验的人可以告诉我要编辑哪个文件来添加我的自定义字段。
提前感谢您的帮助。
答案 0 :(得分:0)
建议将属性添加到wsdl.xml:
<definitions...>
<types>
<schema ...>
<complexType name="catalogProductEntity">
<all>
<element name="custom_attribute" type="xsd:string"/>
</all>
</complexType>
</schema>
</types>
</definitions>