Payment insufficient to cover order total for OrderGuid
The log says:
Payment insufficient to cover order total for OrderGuid 17966b03-cdf3-4147-8d11-86184c1ae5a9. Please ensure that payments cover the entire value of the order before checking out.
Ideally, the CheckOut should be the only ting to do on the payment accepted page, and I don't understand why it throws the exception, so until now I uncommented the ValidatePaymentsMadeAgainstOrderTotal from the standard checkout pipeline and now it works.
Of what status are your payment? It should be either authorized or acquired. Have you implemented or overriden any of the methods in your payment method ?
Payment insufficient to cover order total for OrderGuid
The log says:
Payment insufficient to cover order total for OrderGuid 17966b03-cdf3-4147-8d11-86184c1ae5a9. Please ensure that payments cover the entire value of the order before checking out.
UCommerce.Pipelines.PipelineExecutionResult Execute(UCommerce.EntitiesV2.PurchaseOrder)
at UCommerce.Pipelines.Checkout.ValidatePaymentsMadeAgainstOrderTotalTask.Execute(PurchaseOrder subject)
at UCommerce.Pipelines.Pipeline`1.Execute(T subject)
On my confirmation.aspx the only thing I have on that page is a call to TransactionLibrary.Checkout();
it received the Form from DIBS containing this :
merchant=xxxxxxxxxx
test=1
decorator=default
callbackurl=http://www.razorstore10113032.dev:80/8/39/PaymentProcessor.axd
lang=da
currency=DKK
amount=29900
submitBasket=yes
orderGuid=17966b03-cdf3-4147-8d11-86184c1ae5a9
paytype=DK
flexwin_cardlogosize=1
orderid=Reference-18
accepturl=http://www.razorstore10113032.dev/cart/confirmation.aspx
cancelurl=http://www.razorstore10113032.dk/Cancel.aspx
transact=691555866
approvalcode=123456
In the table purchaseorder the OrderTotal value is 299,0000
In the table Payment the Amount value is 299,0000
Is there anyone who know what I am doing wrong?
I think this might help you:
http://our.umbraco.org/projects/website-utilities/ucommerce/ucommerce-support/34239-Payment-insufficient-to-cover-order-total-(When-using-no-payment)
no unfortunately there is no help in that.
Ideally, the CheckOut should be the only ting to do on the payment accepted page, and I don't understand why it throws the exception, so until now I uncommented the ValidatePaymentsMadeAgainstOrderTotal from the standard checkout pipeline and now it works.
Of what status are your payment? It should be either authorized or acquired. Have you implemented or overriden any of the methods in your payment method ?
is working on a reply...