nop 1.9 Payflow Pro Capture issue.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
We are using Nop 1.9 with Paypal Payflow Pro and would like to set it up for "Authorize" only.  When we are ready to ship we would like to "capture" the money and then ship.  

Nop Manual says we can do that, Paypal PayFlow site says we can do that, but the PayFlowProPaymentProcessor.cs file says that the capture is not supported.  

Are we missing something?  Is there a new file we need to get?

Thanks for the help.



public bool CanCapture
        {
            get
            {                
                return false;
            }
        }

public void Capture(Order order, ref ProcessPaymentResult processPaymentResult)
        {
            throw new NopException("Capture method not supported");
        }
12 years ago
I noticed that the Capture methods had not been implemented in the Pay PayFlo Pro.  But, the methods were avaliable in the API, So I implemented them.  

If anyone is interested in this u can contact me.
[email protected]

This issue is resolved for me.

Manoj
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.