lfs_sofortueberweisung

What is it?

lfs_sofortueberweisung is the integration of the payment processor sofortüberweisung for LFS.

Installation

  1. Register at https://www.payment-network.com/sue_de to get a user and project id.

  2. Within buildout.cfg add lfs_sofortuebweisung to eggs within the django section:

    eggs =
        django-lfs == 0.7.0b1
        gunicorn
        lfs_sofortueberweisung
    
  3. Run the installer:

    $ bin/buildout -Nv
    
  4. Within settings.py add lfs_sofortuebweisung to LFS_PAYMENT_METHOD_PROCESSORS:

    LFS_PAYMENT_METHOD_PROCESSORS = [
        ["lfs_sofortueberweisung.models.SofortUeberweisungPaymentMethodProcessor", "sofortueberweisung.de"],
    ]
    
  5. Within settings.py add lfs_sofortuebweisung specific settings:

    SOFORTUEBERWEISUNG_USERID = your_user_id
    SOFORTUEBERWEISUNG_PROJECT_ID = your_project_id
    
  6. Restart your instance

  7. Within the LFS Management go to Shop/Payment Methods and add a new payment processor.

  8. Select sofortueberweisung.de for the Module field.

See also