Browse Source

Some changes for odoo 9.0

pull/142/head
Ilyas 9 years ago
committed by Nicolas JEUDY
parent
commit
5bec5d20e0
  1. 2
      account_bank_statement_import_ofx/__manifest__.py
  2. 2
      account_bank_statement_import_ofx/account_bank_statement_import_ofx.py

2
account_bank_statement_import_ofx/__manifest__.py

@ -16,5 +16,5 @@
'python': ['ofxparse'],
},
'auto_install': False,
'installable': False,
'installable': True,
}

2
account_bank_statement_import_ofx/account_bank_statement_import_ofx.py

@ -46,7 +46,7 @@ class AccountBankStatementImport(models.TransientModel):
# generic module uses to find partner/bank)
bank_account_id = partner_id = False
banks = self.env['res.partner.bank'].search(
[('owner_name', '=', transaction.payee)], limit=1)
[('bank_name', '=', transaction.payee)], limit=1)
if banks:
bank_account = banks[0]
bank_account_id = bank_account.id

Loading…
Cancel
Save