Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Suomi - Finland payment modules


22 replies to this topic

#1 Swanfly

  • Community Member
  • 37 posts
  • Real Name:Jantero Laakso

Posted 15 June 2004, 07:30

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 by Johnson, 15 June 2004, 07:40.


#2 JennaR

  • Community Member
  • 27 posts
  • Real Name:Jenni R

Posted 17 March 2005, 10:08

Swanfly, on Jun 15 2004, 10:30 AM, said:

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

#3 PellePeloton

  • Community Member
  • 1 posts
  • Real Name:Pelle Peloton

Posted 07 April 2005, 11:01

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 by PellePeloton, 07 April 2005, 11:02.


#4 Arjuna

  • Community Member
  • 12 posts
  • Real Name:Arjuna

Posted 01 June 2005, 13:22

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.

#5 Velliesa

  • Community Member
  • 1 posts
  • Real Name:Esa

Posted 30 June 2005, 20:43

Same problem, no solution. Need help. :angry:

#6 Arjuna

  • Community Member
  • 12 posts
  • Real Name:Arjuna

Posted 01 July 2005, 07:39

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 <tuner@bdb.fi>
    // 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 &quot;Laske!&quot; 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>&copy; <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>


#7 kickus

  • Community Member
  • 2 posts
  • Real Name:Kristian Bäckström

Posted 15 February 2006, 17:26

View PostPellePeloton, on Apr 7 2005, 11:01 AM, said:

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..

#8 aapinen

  • Community Member
  • 184 posts
  • Real Name:markus rung
  • Location:Finland

Posted 20 February 2006, 18:56

View Postkickus, on Feb 15 2006, 07:26 PM, said:

Is this file still available somewhere? I would be interested..

I have it. Do you want me to mail it to you?

#9 aapinen

  • Community Member
  • 184 posts
  • Real Name:markus rung
  • Location:Finland

Posted 20 February 2006, 19:15

View Postaapinen, on Feb 20 2006, 08:56 PM, said:

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.

#10 aapinen

  • Community Member
  • 184 posts
  • Real Name:markus rung
  • Location:Finland

Posted 23 February 2006, 23:20

Bump.

Has anyone working finnish payment modules for osCommerce?

#11 mhamro

  • Community Member
  • 1 posts
  • Real Name:Markus Hamro-Drotz

Posted 10 May 2006, 06:17

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

#12 gujiz

  • Community Member
  • 1 posts
  • Real Name:antti kujamäki

Posted 22 May 2006, 23:55

Could still highly appreciate if someone would be able to provide this!

*bump*

#13 jaripetteri

  • Community Member
  • 1 posts
  • Real Name:Jari Heikkilä

Posted 26 May 2006, 20:43

Quote

Could still highly appreciate if someone would be able to provide this!

Me too, please mail me if you find that...

#14 exichlo

  • Community Member
  • 2 posts
  • Real Name:Brent

Posted 03 June 2006, 15:47

What is the situation with the finnish banking modules?

#15 argonaut71

  • Community Member
  • 3 posts
  • Real Name:Mikko

Posted 03 June 2006, 21:13

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

#16 kimmo_

  • Community Member
  • 1 posts
  • Real Name:Kimmo Kakko

Posted 10 August 2006, 07:15

View Postkickus, on Feb 15 2006, 08:26 PM, said:

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 by kimmo_, 10 August 2006, 07:17.


#17 nakki

  • Community Member
  • 1 posts
  • Real Name:deeq

Posted 02 November 2006, 19:32

View Postkimmo_, on Aug 10 2006, 07:15 AM, said:

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.

#18 Greaver

  • Community Member
  • 1 posts
  • Real Name:Zen

Posted 02 January 2007, 12:13

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

#19 aapinen

  • Community Member
  • 184 posts
  • Real Name:markus rung
  • Location:Finland

Posted 05 November 2007, 14:03

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.

#20 diamondblast

  • Community Member
  • 5 posts
  • Real Name:mooki

Posted 04 January 2009, 19:18

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?