← Back to team overview

openerp-india team mailing list archive

[Bug 1024813] [NEW] base_iban module never validates BIC

 

Public bug reported:

I'm using OpenERP 6.1 and the base_iban module will never validate an
IBAN account correctly. In line 144 of base_iban.py, it says

    if partner_bank.state == 'iban' and not partner_bank.bank.bic:

when it should in fact say

    if partner_bank.state == 'iban' and not partner_bank.bank_bic:

(note that the dot has been replaced by an underscore).

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Addons.
https://bugs.launchpad.net/bugs/1024813

Title:
  base_iban module never validates BIC

Status in OpenERP Addons (modules):
  New

Bug description:
  I'm using OpenERP 6.1 and the base_iban module will never validate an
  IBAN account correctly. In line 144 of base_iban.py, it says

      if partner_bank.state == 'iban' and not partner_bank.bank.bic:

  when it should in fact say

      if partner_bank.state == 'iban' and not partner_bank.bank_bic:

  (note that the dot has been replaced by an underscore).

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/1024813/+subscriptions


Follow ups

References