Swanfly Posted June 15, 2004 Share Posted June 15, 2004 (edited) Hi. I want payment module to finnish banks (nordea, sampo, s??st?pankki, Osuuspankki). And i didnt find any from contributions section. So i ask, is it hard to make it by myself ? *edit* - English only So any suggestions, advices, instructions are wellcome =) B) Thanks for advance swanfly Edited June 15, 2004 by Johnson Quote Link to comment Share on other sites More sharing options...
JennaR Posted March 17, 2005 Share Posted March 17, 2005 I want payment module to finnish banks (nordea, sampo, s??st?pankki, Osuuspankki). And i didnt find any from contributions section. So i ask, is it hard to make it by myself ?So any suggestions, advices, instructions are wellcome =) B) I have exactly the same question! I would be very happy, if we could get any answers, although I can see that Swanfly's question is very old and haven't got any answers, so I'm not very hopeful. So many Finnish shops use osCommerce that you'd think there must be some one that knows ;) ... Please help :blush: ! Thank you in advance! Jenna Quote Link to comment Share on other sites More sharing options...
Guest Posted April 7, 2005 Share Posted April 7, 2005 (edited) Here you go.. nordea solo, okopankki and sampo. Probaply contains shitloads of bugs (never have I worked with php before :) finnish_banks.tar.gz edit: I think all other banks should be very easy to make too.. I just didn't need them. Edited April 7, 2005 by PellePeloton Quote Link to comment Share on other sites More sharing options...
Arjuna Posted June 1, 2005 Share Posted June 1, 2005 Hi, Has anybody created finnish pre-payment module? The above mentioned online-payment methods do have high intial cost and thus too expensive for small-scale businesses like ours. I am looking for a solution where the customer would pay the order in advance and would be provided with account number and reference number. This could be viewed online and emailed to the customer. Arrival of money will be checked manually and goods will be shipped as the payment is received on the account. Main issue here is calculation of the bank reference number. Quote Link to comment Share on other sites More sharing options...
Velliesa Posted June 30, 2005 Share Posted June 30, 2005 Same problem, no solution. Need help. :angry: Quote Link to comment Share on other sites More sharing options...
Arjuna Posted July 1, 2005 Share Posted July 1, 2005 I found more on this issue from usenet: http://groups-beta.google.com/groups?q=viitenumero+php specially thread: http://groups-beta.google.com/group/sfnet....b6ebaee4d931352 The above mentioned URL has already expired, but the wayback machine at web.archive.org had archived the page. Here is the source for calculating bank reference number (viitenumero) in PHP (credits for Kari Lavikka). If you manage to tweak this into pre-payment module, please share your code here! <?php function viiteTarkistusNumero($sViite) { // (c) Kari Lavikka <[email protected]> // Ruutiinia saa vapaasti k?ytt?? ja kopioida kunhan t?m? // kommentti s?ilytet??n funktion m??rittelyss?. $iKerroin = 7; $iSumma = 0; if (strlen($sViite) > 19) { return "Viitenumero on liian pitk?! Maksimipituus on 19 + 1 merkki?."; } else if (strlen($sViite) == 0) { return ""; } if (!is_numeric($sViite)) { return "Viitenumerossa on virheellisi? merkkej?!"; } for ($iLaskuri = strlen($sViite); $iLaskuri > 0; $iLaskuri--) { $iSumma += substr($sViite, $iLaskuri - 1, 1) * $iKerroin; switch ($iKerroin) { case 7: $iKerroin = 3; break; case 3: $iKerroin = 1; break; case 1: $iKerroin = 7; break; } } $iSumma = substr(10 - ($iSumma % 10), -1); settype($iSumma, "integer"); return $iSumma; } ?> <html> <head> <title> Viitenumeron tarkistusnumerogeneraattori </title> <meta name="keywords" content="viitenumero, tarkistusnumero, rutiini, php, l?hdekoodi" /> <style type="text/css">BODY { margin: 1cm; font-family: sans-serif; }</style> </head> <body> <h1>Viitenumeron tarkistusnumerogeneraattori</h1> <form action="viitenumero.php" method="get"> <p>Kirjoita alla olevaan kentt??n viitenumeron alkuosa. Painettuasi "Laske!" nappulaa, tarkistusnumerolla varustettu viitenumero ilmestyy tekstikent?n alapuolelle.</p> <p> <input type="text" name="viite"> <input type="submit" value="laske!"> </p><p> <?php $numero = viiteTarkistusNumero($HTTP_GET_VARS["viite"]); if (is_numeric($numero)) { echo $HTTP_GET_VARS["viite"]."<strong>" . $numero . "</strong>"; } else { echo "<i>" . $numero . "</i>"; } ?> </p> </form> <hr /> <p>© <a href="/~tuner/">Kari Lavikka</a> - Tiedoston php l?hdekoodi: <a href="viitenumero.phps">viitenumero.phps</a> - Vastaava funktio Visual Basic muodossa: <a href="viitenumero.bas">viitenumero.bas</a></p> </body> </html> Quote Link to comment Share on other sites More sharing options...
Guest Posted February 15, 2006 Share Posted February 15, 2006 Here you go.. nordea solo, okopankki and sampo. Probaply contains shitloads of bugs (never have I worked with php before :) finnish_banks.tar.gz edit: I think all other banks should be very easy to make too.. I just didn't need them. Is this file still available somewhere? I would be interested.. Quote Link to comment Share on other sites More sharing options...
aapinen Posted February 20, 2006 Share Posted February 20, 2006 Is this file still available somewhere? I would be interested.. I have it. Do you want me to mail it to you? Quote Link to comment Share on other sites More sharing options...
aapinen Posted February 20, 2006 Share Posted February 20, 2006 I have it. Do you want me to mail it to you? http://www.zen-cart.com/modules/mydownload...ile.php?lid=120 found it. Quote Link to comment Share on other sites More sharing options...
aapinen Posted February 23, 2006 Share Posted February 23, 2006 Bump. Has anyone working finnish payment modules for osCommerce? Quote Link to comment Share on other sites More sharing options...
mhamro Posted May 10, 2006 Share Posted May 10, 2006 I was unable to open the compressed file. Does anyone have the file or a link to where you could download it? I would be most grateful for the file. Markus Quote Link to comment Share on other sites More sharing options...
gujiz Posted May 22, 2006 Share Posted May 22, 2006 Could still highly appreciate if someone would be able to provide this! *bump* Quote Link to comment Share on other sites More sharing options...
jaripetteri Posted May 26, 2006 Share Posted May 26, 2006 Could still highly appreciate if someone would be able to provide this! Me too, please mail me if you find that... Quote Link to comment Share on other sites More sharing options...
exichlo Posted June 3, 2006 Share Posted June 3, 2006 What is the situation with the finnish banking modules? Quote Link to comment Share on other sites More sharing options...
argonaut71 Posted June 3, 2006 Share Posted June 3, 2006 So what you mean when you talk about Finnish banking modules. Are you talking about prepayment (ennakkomaksu) or onlinebanking like Solo, Sampo etc. Anyway does some know at what stage system generates orderid. Is it generated after you make final order submitting or at earlier stage. If we are talking about premayment this informationg is important when we are thinking about making a reference number (viitenumero).2 Quote Link to comment Share on other sites More sharing options...
Guest Posted August 10, 2006 Share Posted August 10, 2006 (edited) Here you go.. nordea solo, okopankki and sampo. Probaply contains shitloads of bugs (never have I worked with php before finnish_banks.tar.gz edit: I think all other banks should be very easy to make too.. I just didn't need them. I cannot find this file anymore, not even from the zen-site. If someone has this file, is it possible to post it here or by email? Thanks. Edited August 10, 2006 by kimmo_ Quote Link to comment Share on other sites More sharing options...
nakki Posted November 2, 2006 Share Posted November 2, 2006 I cannot find this file anymore, not even from the zen-site.If someone has this file, is it possible to post it here or by email? Thanks. Mulle kans kiitos. I need it too. Quote Link to comment Share on other sites More sharing options...
Greaver Posted January 2, 2007 Share Posted January 2, 2007 This is an old thread but I'll reply anyway :P I believe these can be modified back to their original oscommerce form? Zen Cart Payment Gateways I dont have enough experience with oscommerce so I wont even try to mess it up, but surely there is someone capable of doing it without breaking things? If someone kindly makes them compatible with osc, kindly make them available to all :) ///Greaver Quote Link to comment Share on other sites More sharing options...
aapinen Posted November 5, 2007 Share Posted November 5, 2007 Here are some. http://www.oscommerce.com/community/contri.../search,finnish Does anyone has the new Luottokunta (Visa/mastercard) modules which would work? There has been some changes and the old doesnt work anymore. Quote Link to comment Share on other sites More sharing options...
diamondblast Posted January 4, 2009 Share Posted January 4, 2009 I ran into this forum by mistake :) as you probably know, the European banking system is in crisis. are the banks still honoring internet paying methods? Quote Link to comment Share on other sites More sharing options...
sedemik Posted March 20, 2009 Share Posted March 20, 2009 Some one has asked this before but has anyone made bank transfer payment module with reference number (viitenumero), for example order numer + checksum number (tarkistenumero). If in this step order number is not possible to use, is it possible to use previous order number + 1. Now I have the same reference number in every order. Quote Link to comment Share on other sites More sharing options...
rogerpe Posted August 19, 2009 Share Posted August 19, 2009 I created Viitenumero_Finland v.1.0 and it's avaible here http://addons.oscommerce.com/info/6953 It's a very simple working example on how the reference number can be created (pre-payment module). Further editing would be greatly appreciated as I suck in php! It just creates 5 random numbers and a tarkistenumero instead of the normal order number. Quote Link to comment Share on other sites More sharing options...
sedemik Posted September 19, 2011 Share Posted September 19, 2011 Does Osc v. 2.2 finnish payment modules works in Osc 2.3.1? I have problems with Nordea solo -module. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.