[FIX] The destination account address was set incorrectly.

This commit is contained in:
James Jesudason
2012-03-27 15:55:03 +01:00
parent 0f5a5e058c
commit bef796d920
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@
##############################################################################
{
'name': 'HSBC Account Banking',
'version': '0.4',
'version': '0.5',
'license': 'AGPL-3',
'author': 'credativ Ltd',
'website': 'http://www.credativ.co.uk',
@@ -45,7 +45,7 @@
This module adds above import/export filter to the account_banking module.
All business logic is in account_banking module.
Initial release of this module was co-sponsored by canonical.
Initial release of this module was co-sponsored by Canonical.
''',
'active': False,
'installable': True,

View File

@@ -106,7 +106,7 @@ class payment_line(osv.osv):
info = ''
for line in self.browse(cr, uid, ids, context=context):
partner = line.order_id.mode.bank_id
partner = line.bank_id
name = partner.owner_name or partner.partner_id.name
st = partner.street and partner.street or ''