我试图通过Prestashop API(v1.6.1.13)创建订单。我没有编写任何模块,我的目标只是使用它的API而不在prestashop上安装任何东西。
创建订单需要模块名称。如果我把它留空,我会收到错误:
验证错误:"属性订单 - >模块为空"
如果我写一个假名,它会说:
验证错误:"属性订单 - >模块无效"
我该怎么办?虽然我对付款字段存在同样的问题?
以下是我发送的内容:
<prestashop>
<order>
<id_address_delivery>1299</id_address_delivery>
<id_address_invoice>1300</id_address_invoice>
<id_cart>218</id_cart>
<id_currency>1</id_currency>
<id_lang>2</id_lang>
<id_customer>214</id_customer>
<id_carrier>2</id_carrier>
<current_state>2</current_state>
<module></module>
<invoice_number>0</invoice_number>
<delivery_number>0</delivery_number>
<valid>1</valid>
<date_add>2017-06-27 23:00:46</date_add>
<date_upd>2017-06-28 11:50:13</date_upd>
<id_shop_group>1</id_shop_group>
<id_shop>1</id_shop
<payment>MyPayment</payment>
<recyclable>0</recyclable>
<gift>0</gift>
<mobile_theme>0</mobile_theme>
<total_discounts>0</total_discounts>
<total_discounts_tax_incl>0</total_discounts_tax_incl>
<total_discounts_tax_excl>0</total_discounts_tax_excl>
<total_paid>27</total_paid>
<total_paid_tax_incl>27</total_paid_tax_incl>
<total_paid_tax_excl>27</total_paid_tax_excl>
<total_paid_real>27</total_paid_real>
<total_products>27</total_products>
<total_products_wt>27</total_products_wt>
<total_shipping>0</total_shipping>
<total_shipping_tax_incl>0</total_shipping_tax_incl>
<total_shipping_tax_excl>0</total_shipping_tax_excl>
<carrier_tax_rate>0</carrier_tax_rate>
<total_wrapping>0</total_wrapping>
<total_wrapping_tax_incl>0</total_wrapping_tax_incl>
<total_wrapping_tax_excl>0</total_wrapping_tax_excl>
<conversion_rate>1</conversion_rate>
<reference>170627369</reference>
<associations>
<order_rows>
<order_row>
<product_id>2</product_id>
<product_attribute_id>7</product_attribute_id>
<product_quantity>2</product_quantity>
<product_name>Blouse</product_name>
<product_reference>demo_2</product_reference>
<product_ean13>0</product_ean13>
<product_price>27</product_price>
<unit_price_tax_incl>27</unit_price_tax_incl>
<unit_price_tax_excl>27</unit_price_tax_excl>
</order_row>
</order_rows>
</associations>
</order>
</prestashop>
非常感谢任何帮助/想法,谢谢!
答案 0 :(得分:2)
在支付模块中的一些调试步骤之后,我找到了解决方案。
module
应该是有效的模块名称(我使用&#34; bankwire&#34;)并且payment
可以是您想要的(例如外部源的名称)。
我正在测试某个国家/地区被禁用的地址...启用该国家可以解决问题。
可惜Prestashop没有回复API调用的原因......即使激活了prestashop的DEV模式和PaymentModule的DEBUG。
感谢您的帮助sarcom!
答案 1 :(得分:0)
您需要在prestashop管理员端启用付款选项(例如支票付款),然后需要添加前缀为ps_moduleName且没有任何空格的模块。 我喜欢这个, $ xml-&gt; order-&gt; module =“ps _”。strtolower(str_replace('','',$ order_data ['payment_method'])); 如果有任何错误,您可以尝试这个。如果您有任何更好的解决方案,那么我知道。 感谢。