From 2b299eb32b4db2527e16f21d76c753e96d14c281 Mon Sep 17 00:00:00 2001 From: carlossa Date: Tue, 5 Mar 2024 09:48:53 +0100 Subject: [PATCH] refs #6980 fix iban --- loopback/util/validateIban.js | 1 - modules/client/front/billing-data/index.html | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/loopback/util/validateIban.js b/loopback/util/validateIban.js index ed3e00426..2386538b5 100644 --- a/loopback/util/validateIban.js +++ b/loopback/util/validateIban.js @@ -3,7 +3,6 @@ module.exports = function(iban, countryCode) { if (typeof iban != 'string') return false; if (countryCode?.toLowerCase() != 'es') return true; - iban = iban.toUpperCase(); iban = trim(iban); iban = iban.replace(/\s/g, ''); diff --git a/modules/client/front/billing-data/index.html b/modules/client/front/billing-data/index.html index bd4f86d1c..39c0fc428 100644 --- a/modules/client/front/billing-data/index.html +++ b/modules/client/front/billing-data/index.html @@ -33,6 +33,7 @@