Comment 5 for bug 523428

Revision history for this message
JMA(Open ERP) (jma-openerp) wrote :

Hello Ferdinand,

I need to clarify as you have talked about:

Replace the letters in the string with digits, expanding the string as necessary, such that A=10, B=11 and Z=35. Each alphabetic character is therefore replaced by 2 digits.

This is what has been stated over here also: http://en.wikipedia.org/wiki/International_Bank_Account_Number

So when we enter the IBAN number:
Behaviour 1:
                    IBAN(entered): GB82 WEST 1234 5698 7654 32
                    IBAN(saved): 3214282912345698765432161182 mod 97 = 1
Behaviour 2:
                    IBAN(entered): gb82 west 1234 5698 7654 32
                    IBAN(saved): GB82 WEST 1234 5698 7654 32

Do you want the IBAN to be replaced by the numbers respectively starting from A=10, B=11, ..., Z=35?
Or you want the lower case letters to be converted into uppercase?

Can you please specify with an example, what should be the actual behaviour?

Thank you for guiding us.