~therp-nl/banking-addons/ba70-refactor_import_transactions

« back to all changes in this revision

Viewing changes to account_banking/res_bank.py

  • Committer: Yannick Vaucher
  • Author(s): stefan at therp
  • Date: 2014-03-17 07:38:04 UTC
  • mfrom: (216.1.18 ba70-deprecate_iban_lookup)
  • Revision ID: yannick.vaucher@camptocamp.com-20140317073804-is4i3it3wydh7gdj
Splitting off the online account number (i.e. IBAN) lookup functionality into a separate module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright 2011 - 2014 Therp BV (<http://therp.nl>).
 
5
#            
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU Affero General Public License as
 
8
#    published by the Free Software Foundation, either version 3 of the
 
9
#    License, or (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU Affero General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU Affero General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
from openerp.osv import orm
 
21
 
 
22
 
 
23
class ResBank(orm.Model):
 
24
    _inherit = 'res.bank'
 
25
 
 
26
    def online_bank_info(self, cr, uid, bic, context=None):
 
27
        """
 
28
        API hook for legacy online lookup of BICs, 
 
29
        to be removed in OpenERP 8.0.
 
30
        """
 
31
        return False, False