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

« back to all changes in this revision

Viewing changes to base_iban_bic_not_required/model/res_partner_bank.py

  • Committer: Guewen Baconnier
  • Author(s): Stefan Rijnhart
  • Date: 2013-08-12 07:08:19 UTC
  • mfrom: (175.1.5 ba70-bic_not_required)
  • Revision ID: guewen.baconnier@camptocamp.com-20130812070819-3gq9n2r85a0dwtqz
[ADD] Module base_iban_bic_not_required

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2013 Therp BV (<http://therp.nl>).
 
5
#    All Rights Reserved
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
from openerp.osv import orm
 
22
 
 
23
 
 
24
class res_partner_bank(orm.Model):
 
25
    _inherit = 'res.partner.bank'
 
26
 
 
27
    def _check_bank(self, cr, uid, ids, context=None):
 
28
        #suppress base_iban's constraint to enforce BICs for IBANs
 
29
        #workaround for lp:933472
 
30
        return True
 
31
 
 
32
    # Redefine constraint to update its function reference
 
33
    _constraints = [
 
34
        (_check_bank, 
 
35
         '\nPlease define BIC/Swift code on bank for bank '
 
36
         'type IBAN Account to make valid payments',
 
37
         ['bic'])
 
38
    ]