Dutch ideal Lite payment module.
This module is created with ideal Lite from Rabobank, but probaly can be used with other dutch banks also.
Via this module customers are redirected to there bank where the can pay for the products they ordered. After the transfer is completed the customer is redirected back to the Oscommerce Shop
This package includes a install.txt file on how to instal Ideal Lite. Also it includes a pdf file that has some workarounds for the error status that can be returned by Ideal Lite.
Instalation instructions are in Dutch only, maybe someone can translate it to english.
Legend: 
Download

Report
Added minimum amount functionality: administrators can now specify the minimal required order total for iDEAL payments.
If u use seperate pricing per customer with ideal you can get a error:
[ServletException in:/pagelayout.jsp] null
Problem:
The total is not rounded by 2 decimals
Here is the fix:
ideal_lite.php
replace:
$totaal = $order->info['total'];
$bedrag = ereg_replace(',', '', $totaal);
$ideal_lite_amount= $bedrag * 100;
with:
$totaal = $order->info['total'];
$bedrag = ereg_replace(',', '', $totaal);
$bedrag = round($bedrag,2);
$ideal_lite_amount= $bedrag * 100;
Dutch ideal Lite payment module.
This module is created with ideal Lite from Rabobank, but probaly can be used with other dutch banks also.
Via this module customers are redirected to there bank where the can pay for the products they ordered. After the transfer is completed the customer is redirected back to the Oscommerce Shop
This package includes a install.txt file on how to instal Ideal Lite. Also it includes a pdf file that has some workarounds for the error status that can be returned by Ideal Lite.
Instalation instructions are in Dutch only, maybe someone can translate it to english.