correctif(champs.iban): le copier/coller sur un champs iban avec le code pays en minuscule perdait les caractères alphabétiques en debut d'IBAN

This commit is contained in:
Martin 2023-07-17 16:42:37 +02:00
parent 9bd6cea38d
commit 7e28c6ba63

View file

@ -30,9 +30,10 @@ export class FormatController extends ApplicationController {
private formatIBAN(value: string) { private formatIBAN(value: string) {
return value return value
.replace(/[^\dA-Z]/g, '') .replace(/[^\dA-Z]/gi, '')
.replace(/(.{4})/g, '$1 ') .replace(/(.{4})/g, '$1 ')
.trim(); .trim()
.toUpperCase();
} }
private formatInteger(value: string) { private formatInteger(value: string) {