0
我加入的20.00的項目,訂單總額設置爲22.00如何設置貝寶SOAP API快速結帳運費
paymentDetails.OrderTotal = new PayPalSandboxWS.BasicAmountType()
{
currencyID = ConvertProgramCurrencyToPayPalSandbox(currency),
Value = "22.00"
};
和航運總設置爲2.00
paymentDetails.ShippingTotal = new PayPalSandboxWS.BasicAmountType()
{
currencyID = ConvertProgramCurrencyToPayPalSandbox(currency),
Value = "2.00"
};
但我收到此錯誤:The totals of the cart item amounts do not match order amounts.
請協助
我有完全相同的,想知道如果你找到了解決方案?在文檔中找不到關於它的任何內容:https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_SetExpressCheckout – 2012-08-17 12:22:23
您是否還擁有:SetExpressCheckoutRequestDetailsType sdt = new SetExpressCheckoutRequestDetailsType() ; sdt.ShippingMethod = ShippingServiceCodeType.CustomCode; sdt.ShippingMethodSpecified = true; – 2012-08-17 12:29:23