Integrating the iDeal payment method for Computop
Edit on GitHubExample State Machine:
Front-end Integration
To adjust the frontend appearance, provide the following templates in your theme directory:
src/<project_name>/Yves/Computop/Theme/<custom_theme_name>/ideal.twig
State Machine Integration
The Computop provides a demo state machine for iDeal payment method which implements Capture flow.
To enable the demo state machine, extend the configuration with the following values:
<?php
$config[SalesConstants::PAYMENT_METHOD_STATEMACHINE_MAPPING] = [
...
ComputopConfig::PAYMENT_METHOD_IDEAL => 'ComputopIdeal',
];
$config[OmsConstants::ACTIVE_PROCESSES] = [
...
'ComputopIdeal',
];
iDeal Payment Flow:
- There is a radio button on “Payment” step. After submitting the order the customer will be redirected to the Computop (Paygate form implementation). The GET consists of 3 parameters:
- Data (encrypted parameters, f.e. currency, amount, description)
- Length (length of
data
parameter) - Merchant id (assigned by Computop) Customer sets up all data just after the redirect to Computop. Init action: “Capture”. There are no Order and Authorization calls provided for this payment method.
- By default, on success the customer will be redirected to “Success” step. The response contains
payId
. On error, the customer will be redirected to “Payment” step with the error message by default. Response data is stored in the DB. - Refund action is implemented in the admin panel (on manage order). On requests, Spryker will use
payId
parameter stored in the DB to identify a payment.
Thank you!
For submitting the form