Skip to content

Commit

Permalink
Merge pull request #28 from paynl/feature/PLUG-1071
Browse files Browse the repository at this point in the history
PLUG-1071 : Surcharging fix
  • Loading branch information
woutse authored Aug 8, 2022
2 parents 129f29a + 13ae9d0 commit 2e7ca39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paynlpaymentmethods/paynlpaymentmethods.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function __construct()
{
$this->name = 'paynlpaymentmethods';
$this->tab = 'payments_gateways';
$this->version = '4.6.0';
$this->version = '4.6.1';

$this->payLogEnabled = null;
$this->ps_versions_compliancy = array('min' => '1.7', 'max' => _PS_VERSION_);
Expand Down Expand Up @@ -886,7 +886,7 @@ public function startPayment(Cart $cart, $payment_option_id, $extra_data = array
}

$startData = array(
'amount' => $cartTotal,
'amount' => $cart->getOrderTotal(),
'currency' => $currency->iso_code,
'returnUrl' => $this->context->link->getModuleLink($this->name, 'finish', array(), true),
'exchangeUrl' => $this->context->link->getModuleLink($this->name, 'exchange', array(), true),
Expand Down

0 comments on commit 2e7ca39

Please sign in to comment.