mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
[FIX] account_banking_nl_clieop: typo in last commit caused endless loop
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
##############################################################################
|
||||
{
|
||||
'name': 'Account Banking',
|
||||
'version': '0.1.51',
|
||||
'version': '0.1.52',
|
||||
'license': 'GPL-3',
|
||||
'author': 'EduSense BV',
|
||||
'website': 'http://www.edusense.nl',
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
##############################################################################
|
||||
{
|
||||
'name': 'Account Banking PATU module',
|
||||
'version': '0.51',
|
||||
'version': '0.52',
|
||||
'license': 'GPL-3',
|
||||
'author': 'Sami Haahtinen',
|
||||
'website': 'http://ressukka.net',
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
##############################################################################
|
||||
{
|
||||
'name': 'Account Banking NL ClieOp',
|
||||
'version': '0.51',
|
||||
'version': '0.52',
|
||||
'license': 'GPL-3',
|
||||
'author': 'EduSense BV',
|
||||
'website': 'http://www.edusense.nl',
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
##############################################################################
|
||||
{
|
||||
'name': 'Account Banking - Girotel',
|
||||
'version': '0.51',
|
||||
'version': '0.52',
|
||||
'license': 'GPL-3',
|
||||
'author': 'EduSense BV',
|
||||
'website': 'http://www.edusense.nl',
|
||||
|
||||
@@ -71,7 +71,7 @@ class transaction_message(object):
|
||||
'''
|
||||
Convert values for string content to SWIFT-allowable content
|
||||
'''
|
||||
if attr != 'attrnames' and attr in self.strattrs:
|
||||
if attr != 'strattrs' and attr in self.strattrs:
|
||||
value = to_swift(value)
|
||||
super(transaction_message, self).__setattribute__(attr, value)
|
||||
|
||||
@@ -80,7 +80,7 @@ class transaction_message(object):
|
||||
Convert values from string content to SWIFT-allowable content
|
||||
'''
|
||||
retval = super(transaction_message, self).__getattribute__(attr)
|
||||
return attr != 'attrnames' and attr in self.strattrs and to_swift(retval) or retval
|
||||
return attr != 'strattrs' and attr in self.strattrs and to_swift(retval) or retval
|
||||
|
||||
def genid(self):
|
||||
'''
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
##############################################################################
|
||||
{
|
||||
'name': 'Account Banking',
|
||||
'version': '0.51',
|
||||
'version': '0.52',
|
||||
'license': 'GPL-3',
|
||||
'author': 'EduSense BV',
|
||||
'website': 'http://www.edusense.nl',
|
||||
|
||||
Reference in New Issue
Block a user