Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cvzi/qr-code-generator-fuer-ueberweisungen
Creates QR code to initiate a SEPA credit transfer (SCT). Similar to Girocode or BezahlCode in Germany. Javascript implementation
https://github.com/cvzi/qr-code-generator-fuer-ueberweisungen
bezahlcode qrcode sepa sepa-credit-transfer
Last synced: 3 months ago
JSON representation
Creates QR code to initiate a SEPA credit transfer (SCT). Similar to Girocode or BezahlCode in Germany. Javascript implementation
- Host: GitHub
- URL: https://github.com/cvzi/qr-code-generator-fuer-ueberweisungen
- Owner: cvzi
- License: gpl-3.0
- Created: 2016-02-27T16:07:44.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-12-09T23:56:20.000Z (about 4 years ago)
- Last Synced: 2024-10-09T13:45:19.945Z (3 months ago)
- Topics: bezahlcode, qrcode, sepa, sepa-credit-transfer
- Language: JavaScript
- Homepage: https://cvzi.github.io/QR-Code-Generator-fuer-Ueberweisungen/
- Size: 44.9 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quick Response Code Generator für Überweisungen
Released under GPLv3```
Copyright (C) 2020 cuzi ([email protected])This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see .
```## Install
```
$ npm install --save iban-qr-code
```## Examples
```
const { girocode, bezahlcode } = require('iban-qr-code')girocode({
name: '',
iban: '',
bic: '',
currency: 'EUR',
amount: '0.00',
char: '', // Purpose of the Credit Transfer (AT-44)
ref: '', // ISO 11649 RF Creditor Reference may be used here
reason: '',
hint: '' // note to user,
version: '001' // Version of Quick Response Code 001 or 002
})
```[Live preview](http://cvzi.github.io/QR-Code-Generator-fuer-Ueberweisungen/)
The images are created with [qrious](https://github.com/neocotic/qrious)The guidelines for the images can be found here [Quick Response Code: Guidelines to Enable Data Capture for the Initiation of a SEPA Credit Transfer ](http://www.europeanpaymentscouncil.eu/index.cfm/knowledge-bank/epc-documents/quick-response-code-guidelines-to-enable-data-capture-for-the-initiation-of-a-sepa-credit-transfer/)
and here [bezahlcode.de - Technische Dokumentation „BezahlCode“](https://web.archive.org/web/20160528013657/http://www.bezahlcode.de/wp-content/uploads/BezahlCode_TechDok.pdf)This program uses version 1.4 of the Quick Response Code guidelines, but it's also compatible with version 2.0, and version „05. Dezember 2013“ of BezahlCode.
**At the moment, most phone apps support neither version fully.** A list of supported applications can be found [here](http://www.bezahlcode.de/anwendungen/).