18 lines
380 B
Python
18 lines
380 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
{
|
||
|
'name': "Account SEPA QR Code",
|
||
|
|
||
|
'description': """
|
||
|
This module adds support for SEPA Credit Transfer QR-code generation.
|
||
|
""",
|
||
|
|
||
|
'category': 'Accounting/Payment',
|
||
|
'version': '0.1',
|
||
|
|
||
|
# any module necessary for this one to work correctly
|
||
|
'depends': ['account', 'base_iban'],
|
||
|
|
||
|
'auto_install': True,
|
||
|
'license': 'LGPL-3',
|
||
|
}
|