I'm using "Worldpay" as my checkout payment method.

I installed and enabled the module, configured to skip checkout review.

When I click "submit order", I am taken to an "Your order was completed" page, without going through worldpay at all!

So the whole payment process was skipped! How to fix this??

Comments

mrfelton’s picture

Assigned: Unassigned » mrfelton
Category: support » bug
Status: Active » Needs work
StatusFileSize
new1.3 KB

Please give it a try with this patch.

mrfelton’s picture

Status: Needs work » Needs review
cyberschorsch’s picture

Status: Needs review » Needs work

Since the issue is about payment gateways in general we should find a patch which works on each payment method. This issue is also valid for "sofortüberweisung.de" (http://drupal.org/project/uc_pnag).

ledom’s picture

Subscribe
Same problem with CMCIC payment module: http://drupal.org/project/uc_cmcic

marcin dębicki’s picture

Same problem with platnosci.pl http://drupal.org/project/platnosci_pl

WoozyDuck’s picture

Same problem with sagepay module!

WoozyDuck’s picture

Priority: Normal » Critical
bgm’s picture

Title: Optional Check out Review not working with payment gateway » Optional Check out Review not working with Worldpay payment gateway
Category: bug » feature
Priority: Critical » Normal

Please keep 1 issue per payment gateway. At the moment, there is no easy way to generalize this.
Would be neat if someone could comment on the actual patch for Worldpay in #1.

Thanks

bgm’s picture

Also note: I updated the description of this module to reflect the fact that it is minimally maintained only.

toemaz’s picture

For Adyen, I took the patch from #1 and added

    elseif ($order->payment_method == 'adyen') {
      $payment_form = uc_adyen_form($form_state, $order);
    }

This did the job.

Thx mrfelton.