~akretion-team/banking-addons/70-fully-handle-payment-types

« back to all changes in this revision

Viewing changes to account_banking/sepa/iban.py

  • Committer: Raphaël Valyi
  • Date: 2014-03-21 19:12:47 UTC
  • mfrom: (225.1.11 7.0)
  • Revision ID: rvalyi@gmail.com-20140321191247-zqytcf091nlbxboo
[MERGE] merged HEAD into current feature branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
408
408
        Localized format of local or Basic Bank Account Number, aka BBAN
409
409
        '''
410
410
        if self.countrycode == 'TR':
411
 
            raise NotImplementedError, (
412
 
                'The Turkish BBAN requires information that is not in the '
413
 
                'IBAN number.'
414
 
            )
 
411
            # The Turkish BBAN requires information that is not in the
 
412
            # IBAN number.
 
413
            return False
415
414
        return self.BBAN_format.BBAN(self)
416
415
 
417
416
    @property