Skip to content

Commit

Permalink
changed encodeOrderId to use order id
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbramich committed Apr 5, 2023
1 parent 0aa2eda commit 1f4495a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public function getPaymentRequestByOrderId(mixed $nofrixionOrderId): array

public function encodeOrderId(Order $order): string
{
$r = $order->getIncrementId() . self::ORDER_ID_SEPARATOR . time();
$r = $order->getId() . self::ORDER_ID_SEPARATOR . time();
return $r;
}

Expand Down

0 comments on commit 1f4495a

Please sign in to comment.